Class LibXML::XML::XPointer
In: ext/libxml/libxml.c
Parent: Object

Please see the LICENSE file for copyright and distribution information

Methods

range  

Classes and Modules

Class LibXML::XML::XPointer::Context
Class LibXML::XML::XPointer::InvalidExpression

Public Class methods

Create an xpath representing the range between the supplied start and end node.

[Source]

/*
 * call-seq:
 *    XML::XPointer.range(start_node, end_node) -> xpath
 * 
 * Create an xpath representing the range between the supplied
 * start and end node.
 */
VALUE
ruby_xml_xpointer_range(VALUE class, VALUE rstart, VALUE rend) {

[Validate]