Sha256: 8ccdf76734e6fde15e9e027940dad6a355b1c2986284479d775422685a7a95d7
Contents?: true
Size: 595 Bytes
Versions: 16
Compression:
Stored size: 595 Bytes
Contents
/* $Id $ */ #ifndef __RUBY_XML_XPATH_OBJECT__ #define __RUBY_XML_XPATH_OBJECT__ extern VALUE cXMLXPathObject; typedef struct ruby_xml_xpath_object_s { xmlXPathObjectPtr xpop; } ruby_xml_xpath_object; void ruby_init_xml_xpath_object(void); VALUE ruby_xml_xpath_object_wrap(xmlXPathObjectPtr xpop); VALUE ruby_xml_xpath_object_first(VALUE self); VALUE ruby_xml_xpath_object_to_a(VALUE self); VALUE ruby_xml_xpath_object_each(VALUE self); VALUE ruby_xml_xpath_object_empty_q(VALUE self); VALUE ruby_xml_xpath_object_first(VALUE self); VALUE ruby_xml_xpath_object_length(VALUE self); #endif
Version data entries
16 entries across 16 versions & 1 rubygems