Does libxml2 support XPath 2.0 or not?

debugging, interface-implementation, libxml2, objective-c, xpath-2.0

Solution

As far as I know -- not. The prevailing majority of XPath 2.0 implementations are part of XSLT 2.0 processors or XQuery processors.

Problem

I've tried to use the `XPath 2.0` exp `//span/string(.)` in `libxml2`, but it doesn't work. So, my question is: does `libxml2` support `XPath 2.0` or not?

Original source