Class: Nokogiri::XML::NodeSet
- Inherits:
-
Object
- Object
- Nokogiri::XML::NodeSet
- Includes:
- Enumerable, Searchable
- Defined in:
- lib/nokogiri/xml/node_set.rb,
ext/nokogiri/xml_node_set.c
Overview
A NodeSet contains a list of Nokogiri::XML::Node objects. Typically a NodeSet is return as a result of searching a Document via Nokogiri::XML::Searchable#css or Nokogiri::XML::Searchable#xpath
Constant Summary
Constants included from Searchable
Instance Attribute Summary collapse
-
#document ⇒ Object
The Document this NodeSet is associated with.
Instance Method Summary collapse
-
#&(node_set) ⇒ Object
Set Intersection — Returns a new NodeSet containing nodes common to the two NodeSets.
-
#-(node_set) ⇒ Object
Difference - returns a new NodeSet that is a copy of this NodeSet, removing each item that also appears in
node_set
. -
#==(other) ⇒ Object
Equality – Two NodeSets are equal if the contain the same number of elements and if each element is equal to the corresponding element in the other NodeSet.
-
#>(selector) ⇒ Object
Search this NodeSet’s nodes’ immediate children using CSS selector
selector
. -
#[](*args) ⇒ Object
- start, length
-
-> NodeSet or nil [range] -> NodeSet or nil slice(index) -> Node or nil slice(start, length) -> NodeSet or nil slice(range) -> NodeSet or nil.
-
#add_class(name) ⇒ Object
Append the class attribute
name
to all Node objects in the NodeSet. -
#after(datum) ⇒ Object
Insert
datum
after the last Node in this NodeSet. -
#at(*args) ⇒ Object
(also: #%)
call-seq: search *paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class].
-
#attr(key, value = nil, &blk) ⇒ Object
(also: #set, #attribute)
Set the attribute
key
tovalue
or the return value ofblk
on all Node objects in the NodeSet. -
#before(datum) ⇒ Object
Insert
datum
before the first Node in this NodeSet. -
#children ⇒ Object
Returns a new NodeSet containing all the children of all the nodes in the NodeSet.
-
#css(*args) ⇒ Object
call-seq: css *rules, [namespace-bindings, custom-pseudo-class].
-
#delete(node) ⇒ Object
Delete
node
from the Nodeset, if it is a member. -
#dup ⇒ Object
Duplicate this node set.
-
#each(&block) ⇒ Object
Iterate over each node, yielding to
block
. -
#empty? ⇒ Boolean
Is this NodeSet empty?.
-
#filter(expr) ⇒ Object
Filter this list for nodes that match
expr
. -
#first(n = nil) ⇒ Object
Get the first element of the NodeSet.
-
#include?(node) ⇒ Boolean
Returns true if any member of node set equals
node
. -
#index(node) ⇒ Object
Returns the index of the first node in self that is == to
node
. -
#initialize(document, list = []) {|_self| ... } ⇒ NodeSet
constructor
Create a NodeSet with
document
defaulting tolist
. -
#inner_html(*args) ⇒ Object
Get the inner html of all contained Node objects.
-
#inner_text ⇒ Object
(also: #text)
Get the inner text of all contained Node objects.
-
#inspect ⇒ Object
Return a nicely formated string representation.
-
#last ⇒ Object
Get the last element of the NodeSet.
-
#length ⇒ Object
(also: #size)
Get the length of the node set.
-
#pop ⇒ Object
Removes the last element from set and returns it, or
nil
if the set is empty. -
#push(node) ⇒ Object
(also: #<<)
Append
node
to the NodeSet. -
#remove_attr(name) ⇒ Object
Remove the attributed named
name
from all Node objects in the NodeSet. -
#remove_class(name = nil) ⇒ Object
Remove the class attribute
name
from all Node objects in the NodeSet. -
#reverse ⇒ Object
Returns a new NodeSet containing all the nodes in the NodeSet in reverse order.
-
#shift ⇒ Object
Returns the first element of the NodeSet and removes it.
-
#slice(*args) ⇒ Object
- start, length
-
-> NodeSet or nil [range] -> NodeSet or nil slice(index) -> Node or nil slice(start, length) -> NodeSet or nil slice(range) -> NodeSet or nil.
-
#to_a ⇒ Object
(also: #to_ary)
Return this list as an Array.
-
#to_html(*args) ⇒ Object
Convert this NodeSet to HTML.
-
#to_s ⇒ Object
Convert this NodeSet to a string.
-
#to_xhtml(*args) ⇒ Object
Convert this NodeSet to XHTML.
-
#to_xml(*args) ⇒ Object
Convert this NodeSet to XML.
-
#unlink ⇒ Object
(also: #remove)
Unlink this NodeSet and all Node objects it contains from their current context.
-
#wrap(html, &blk) ⇒ Object
Wrap this NodeSet with
html
or the results of the builder inblk
. -
#xpath(*args) ⇒ Object
call-seq: xpath *paths, [namespace-bindings, variable-bindings, custom-handler-class].
-
#|(node_set) ⇒ Object
(also: #+)
Returns a new set built by merging the set and the elements of the given set.
Methods included from Searchable
Constructor Details
#initialize(document, list = []) {|_self| ... } ⇒ NodeSet
Create a NodeSet with document
defaulting to list
15 16 17 18 19 20 |
# File 'lib/nokogiri/xml/node_set.rb', line 15 def initialize document, list = [] @document = document document.decorate(self) list.each { |x| self << x } yield self if block_given? end |
Instance Attribute Details
#document ⇒ Object
The Document this NodeSet is associated with
12 13 14 |
# File 'lib/nokogiri/xml/node_set.rb', line 12 def document @document end |
Instance Method Details
#&(node_set) ⇒ Object
Set Intersection — Returns a new NodeSet containing nodes common to the two NodeSets.
135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'ext/nokogiri/xml_node_set.c', line 135
static VALUE intersection(VALUE self, VALUE rb_other)
{
xmlNodeSetPtr node_set, other ;
xmlNodeSetPtr intersection;
if(!rb_obj_is_kind_of(rb_other, cNokogiriXmlNodeSet))
rb_raise(rb_eArgError, "node_set must be a Nokogiri::XML::NodeSet");
Data_Get_Struct(self, xmlNodeSet, node_set);
Data_Get_Struct(rb_other, xmlNodeSet, other);
intersection = xmlXPathIntersection(node_set, other);
return Nokogiri_wrap_xml_node_set(intersection, rb_iv_get(self, "@document"));
}
|
#-(node_set) ⇒ Object
Difference - returns a new NodeSet that is a copy of this NodeSet, removing
each item that also appears in +node_set+
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'ext/nokogiri/xml_node_set.c', line 202
static VALUE minus(VALUE self, VALUE rb_other)
{
xmlNodeSetPtr node_set, other;
xmlNodeSetPtr new;
int j ;
if(!rb_obj_is_kind_of(rb_other, cNokogiriXmlNodeSet))
rb_raise(rb_eArgError, "node_set must be a Nokogiri::XML::NodeSet");
Data_Get_Struct(self, xmlNodeSet, node_set);
Data_Get_Struct(rb_other, xmlNodeSet, other);
new = xmlXPathNodeSetMerge(NULL, node_set);
for (j = 0 ; j < other->nodeNr ; ++j) {
xpath_node_set_del(new, other->nodeTab[j]);
}
return Nokogiri_wrap_xml_node_set(new, rb_iv_get(self, "@document"));
}
|
#==(other) ⇒ Object
Equality – Two NodeSets are equal if the contain the same number of elements and if each element is equal to the corresponding element in the other NodeSet
269 270 271 272 273 274 275 276 |
# File 'lib/nokogiri/xml/node_set.rb', line 269 def == other return false unless other.is_a?(Nokogiri::XML::NodeSet) return false unless length == other.length each_with_index do |node, i| return false unless node == other[i] end true end |
#>(selector) ⇒ Object
Search this NodeSet’s nodes’ immediate children using CSS selector selector
97 98 99 100 |
# File 'lib/nokogiri/xml/node_set.rb', line 97 def > selector ns = document.root.namespaces xpath CSS.xpath_for(selector, :prefix => "./", :ns => ns).first end |
#[](*args) ⇒ Object
- start, length
-
-> NodeSet or nil
- range
-
-> NodeSet or nil
slice(index) -> Node or nil
slice(start, length) -> NodeSet or nil
slice(range) -> NodeSet or nil
Element reference - returns the node at index
, or returns a NodeSet containing nodes starting at start
and continuing for length
elements, or returns a NodeSet containing nodes specified by range
. Negative indices
count backward from the end of the node_set
(-1 is the last node). Returns nil if the index
(or start
) are out of range.
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
# File 'ext/nokogiri/xml_node_set.c', line 275
static VALUE slice(int argc, VALUE *argv, VALUE self)
{
VALUE arg ;
long beg, len ;
xmlNodeSetPtr node_set;
Data_Get_Struct(self, xmlNodeSet, node_set);
if (argc == 2) {
beg = NUM2LONG(argv[0]);
len = NUM2LONG(argv[1]);
if (beg < 0) {
beg += node_set->nodeNr ;
}
return subseq(self, beg, len);
}
if (argc != 1) {
rb_scan_args(argc, argv, "11", NULL, NULL);
}
arg = argv[0];
if (FIXNUM_P(arg)) {
return index_at(self, FIX2LONG(arg));
}
/* if arg is Range */
switch (rb_range_beg_len(arg, &beg, &len, (long)node_set->nodeNr, 0)) {
case Qfalse:
break;
case Qnil:
return Qnil;
default:
return subseq(self, beg, len);
}
return index_at(self, NUM2LONG(arg));
}
|
#add_class(name) ⇒ Object
Append the class attribute name
to all Node objects in the NodeSet.
131 132 133 134 135 136 137 |
# File 'lib/nokogiri/xml/node_set.rb', line 131 def add_class name each do |el| classes = el['class'].to_s.split(/\s+/) el['class'] = classes.push(name).uniq.join " " end self end |
#after(datum) ⇒ Object
Insert datum
after the last Node in this NodeSet
58 59 60 |
# File 'lib/nokogiri/xml/node_set.rb', line 58 def after datum last.after datum end |
#at(*args) ⇒ Object Also known as: %
call-seq: search *paths, [namespace-bindings, xpath-variable-bindings, custom-handler-class]
Search this object for paths
, and return only the first result. paths
must be one or more XPath or CSS queries.
See Searchable#search for more information.
Or, if passed an integer, index into the NodeSet:
node_set.at(3) # same as node_set[3]
114 115 116 117 118 119 120 |
# File 'lib/nokogiri/xml/node_set.rb', line 114 def at *args if args.length == 1 && args.first.is_a?(Numeric) return self[args.first] end super(*args) end |
#attr(key, value = nil, &blk) ⇒ Object Also known as: set, attribute
Set the attribute key
to value
or the return value of blk
on all Node objects in the NodeSet.
162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/nokogiri/xml/node_set.rb', line 162 def attr key, value = nil, &blk unless Hash === key || key && (value || blk) return first.attribute(key) end hash = key.is_a?(Hash) ? key : { key => value } hash.each { |k,v| each { |el| el[k] = v || blk[el] } } self end |
#before(datum) ⇒ Object
Insert datum
before the first Node in this NodeSet
52 53 54 |
# File 'lib/nokogiri/xml/node_set.rb', line 52 def before datum first.before datum end |
#children ⇒ Object
Returns a new NodeSet containing all the children of all the nodes in the NodeSet
281 282 283 |
# File 'lib/nokogiri/xml/node_set.rb', line 281 def children inject(NodeSet.new(document)) { |set, node| set += node.children } end |
#css(*args) ⇒ Object
call-seq: css *rules, [namespace-bindings, custom-pseudo-class]
Search this node set for CSS rules
. rules
must be one or more CSS selectors. For example:
For more information see Nokogiri::XML::Searchable#css
72 73 74 75 76 77 78 |
# File 'lib/nokogiri/xml/node_set.rb', line 72 def css *args rules, handler, ns, _ = extract_params(args) inject(NodeSet.new(document)) do |set, node| set += css_internal node, rules, handler, ns end end |
#delete(node) ⇒ Object
Delete node
from the Nodeset, if it is a member. Returns the deleted node if found, otherwise returns nil.
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'ext/nokogiri/xml_node_set.c', line 110
static VALUE
delete(VALUE self, VALUE rb_node)
{
xmlNodeSetPtr node_set;
xmlNodePtr node;
Check_Node_Set_Node_Type(rb_node);
Data_Get_Struct(self, xmlNodeSet, node_set);
Data_Get_Struct(rb_node, xmlNode, node);
if (xmlXPathNodeSetContains(node_set, node)) {
xpath_node_set_del(node_set, node);
return rb_node;
}
return Qnil ;
}
|
#dup ⇒ Object
Duplicate this node set
55 56 57 58 59 60 61 62 63 64 65 |
# File 'ext/nokogiri/xml_node_set.c', line 55
static VALUE duplicate(VALUE self)
{
xmlNodeSetPtr node_set;
xmlNodeSetPtr dupl;
Data_Get_Struct(self, xmlNodeSet, node_set);
dupl = xmlXPathNodeSetMerge(NULL, node_set);
return Nokogiri_wrap_xml_node_set(dupl, rb_iv_get(self, "@document"));
}
|
#each(&block) ⇒ Object
Iterate over each node, yielding to block
185 186 187 188 189 |
# File 'lib/nokogiri/xml/node_set.rb', line 185 def each(&block) 0.upto(length - 1) do |x| yield self[x] end end |
#empty? ⇒ Boolean
Is this NodeSet empty?
39 40 41 |
# File 'lib/nokogiri/xml/node_set.rb', line 39 def empty? length == 0 end |
#filter(expr) ⇒ Object
Filter this list for nodes that match expr
125 126 127 |
# File 'lib/nokogiri/xml/node_set.rb', line 125 def filter expr find_all { |node| node.matches?(expr) } end |
#first(n = nil) ⇒ Object
Get the first element of the NodeSet.
24 25 26 27 28 29 |
# File 'lib/nokogiri/xml/node_set.rb', line 24 def first n = nil return self[0] unless n list = [] n.times { |i| list << self[i] } list end |
#include?(node) ⇒ Boolean
Returns true if any member of node set equals node
.
157 158 159 160 161 162 163 164 165 166 167 168 |
# File 'ext/nokogiri/xml_node_set.c', line 157
static VALUE include_eh(VALUE self, VALUE rb_node)
{
xmlNodeSetPtr node_set;
xmlNodePtr node;
Check_Node_Set_Node_Type(rb_node);
Data_Get_Struct(self, xmlNodeSet, node_set);
Data_Get_Struct(rb_node, xmlNode, node);
return (xmlXPathNodeSetContains(node_set, node) ? Qtrue : Qfalse);
}
|
#index(node) ⇒ Object
Returns the index of the first node in self that is == to node
. Returns nil if no match is found.
45 46 47 48 |
# File 'lib/nokogiri/xml/node_set.rb', line 45 def index(node) each_with_index { |member, j| return j if member == node } nil end |
#inner_html(*args) ⇒ Object
Get the inner html of all contained Node objects
200 201 202 |
# File 'lib/nokogiri/xml/node_set.rb', line 200 def inner_html *args collect{|j| j.inner_html(*args) }.join('') end |
#inner_text ⇒ Object Also known as: text
Get the inner text of all contained Node objects
193 194 195 |
# File 'lib/nokogiri/xml/node_set.rb', line 193 def inner_text collect(&:inner_text).join('') end |
#inspect ⇒ Object
Return a nicely formated string representation
298 299 300 |
# File 'lib/nokogiri/xml/node_set.rb', line 298 def inspect "[#{map(&:inspect).join ', '}]" end |
#last ⇒ Object
Get the last element of the NodeSet.
33 34 35 |
# File 'lib/nokogiri/xml/node_set.rb', line 33 def last self[-1] end |
#length ⇒ Object Also known as: size
Get the length of the node set
73 74 75 76 77 78 79 80 |
# File 'ext/nokogiri/xml_node_set.c', line 73
static VALUE length(VALUE self)
{
xmlNodeSetPtr node_set;
Data_Get_Struct(self, xmlNodeSet, node_set);
return node_set ? INT2NUM(node_set->nodeNr) : INT2NUM(0);
}
|
#pop ⇒ Object
Removes the last element from set and returns it, or nil
if the set is empty
252 253 254 255 |
# File 'lib/nokogiri/xml/node_set.rb', line 252 def pop return nil if length == 0 delete last end |
#push(node) ⇒ Object Also known as: <<
Append node
to the NodeSet.
88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'ext/nokogiri/xml_node_set.c', line 88
static VALUE push(VALUE self, VALUE rb_node)
{
xmlNodeSetPtr node_set;
xmlNodePtr node;
Check_Node_Set_Node_Type(rb_node);
Data_Get_Struct(self, xmlNodeSet, node_set);
Data_Get_Struct(rb_node, xmlNode, node);
xmlXPathNodeSetAdd(node_set, node);
return self;
}
|
#remove_attr(name) ⇒ Object
Remove the attributed named name
from all Node objects in the NodeSet
178 179 180 181 |
# File 'lib/nokogiri/xml/node_set.rb', line 178 def remove_attr name each { |el| el.delete name } self end |
#remove_class(name = nil) ⇒ Object
Remove the class attribute name
from all Node objects in the NodeSet. If name
is nil, remove the class attribute from all Nodes in the NodeSet.
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/nokogiri/xml/node_set.rb', line 143 def remove_class name = nil each do |el| if name classes = el['class'].to_s.split(/\s+/) if classes.empty? el.delete 'class' else el['class'] = (classes - [name]).uniq.join " " end else el.delete "class" end end self end |
#reverse ⇒ Object
Returns a new NodeSet containing all the nodes in the NodeSet in reverse order
288 289 290 291 292 293 294 |
# File 'lib/nokogiri/xml/node_set.rb', line 288 def reverse node_set = NodeSet.new(document) (length - 1).downto(0) do |x| node_set.push self[x] end node_set end |
#shift ⇒ Object
Returns the first element of the NodeSet and removes it. Returns nil
if the set is empty.
260 261 262 263 |
# File 'lib/nokogiri/xml/node_set.rb', line 260 def shift return nil if length == 0 delete first end |
#slice(*args) ⇒ Object
- start, length
-
-> NodeSet or nil
- range
-
-> NodeSet or nil
slice(index) -> Node or nil
slice(start, length) -> NodeSet or nil
slice(range) -> NodeSet or nil
Element reference - returns the node at index
, or returns a NodeSet containing nodes starting at start
and continuing for length
elements, or returns a NodeSet containing nodes specified by range
. Negative indices
count backward from the end of the node_set
(-1 is the last node). Returns nil if the index
(or start
) are out of range.
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
# File 'ext/nokogiri/xml_node_set.c', line 275
static VALUE slice(int argc, VALUE *argv, VALUE self)
{
VALUE arg ;
long beg, len ;
xmlNodeSetPtr node_set;
Data_Get_Struct(self, xmlNodeSet, node_set);
if (argc == 2) {
beg = NUM2LONG(argv[0]);
len = NUM2LONG(argv[1]);
if (beg < 0) {
beg += node_set->nodeNr ;
}
return subseq(self, beg, len);
}
if (argc != 1) {
rb_scan_args(argc, argv, "11", NULL, NULL);
}
arg = argv[0];
if (FIXNUM_P(arg)) {
return index_at(self, FIX2LONG(arg));
}
/* if arg is Range */
switch (rb_range_beg_len(arg, &beg, &len, (long)node_set->nodeNr, 0)) {
case Qfalse:
break;
case Qnil:
return Qnil;
default:
return subseq(self, beg, len);
}
return index_at(self, NUM2LONG(arg));
}
|
#to_a ⇒ Object Also known as: to_ary
Return this list as an Array
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'ext/nokogiri/xml_node_set.c', line 321
static VALUE to_array(VALUE self, VALUE rb_node)
{
xmlNodeSetPtr node_set ;
VALUE list;
int i;
Data_Get_Struct(self, xmlNodeSet, node_set);
list = rb_ary_new2(node_set->nodeNr);
for(i = 0; i < node_set->nodeNr; i++) {
VALUE elt = Nokogiri_wrap_xml_node_set_node(node_set->nodeTab[i], self);
rb_ary_push( list, elt );
}
return list;
}
|
#to_html(*args) ⇒ Object
Convert this NodeSet to HTML
223 224 225 226 227 228 229 230 231 232 |
# File 'lib/nokogiri/xml/node_set.rb', line 223 def to_html *args if Nokogiri.jruby? = args.first.is_a?(Hash) ? args.shift : {} if ![:save_with] [:save_with] = Node::SaveOptions::NO_DECLARATION | Node::SaveOptions::NO_EMPTY_TAGS | Node::SaveOptions::AS_HTML end args.insert(0, ) end map { |x| x.to_html(*args) }.join end |
#to_s ⇒ Object
Convert this NodeSet to a string.
217 218 219 |
# File 'lib/nokogiri/xml/node_set.rb', line 217 def to_s map(&:to_s).join end |
#to_xhtml(*args) ⇒ Object
Convert this NodeSet to XHTML
236 237 238 |
# File 'lib/nokogiri/xml/node_set.rb', line 236 def to_xhtml *args map { |x| x.to_xhtml(*args) }.join end |
#to_xml(*args) ⇒ Object
Convert this NodeSet to XML
242 243 244 |
# File 'lib/nokogiri/xml/node_set.rb', line 242 def to_xml *args map { |x| x.to_xml(*args) }.join end |
#unlink ⇒ Object Also known as: remove
Unlink this NodeSet and all Node objects it contains from their current context.
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
# File 'ext/nokogiri/xml_node_set.c', line 344
static VALUE unlink_nodeset(VALUE self)
{
xmlNodeSetPtr node_set;
int j, nodeNr ;
Data_Get_Struct(self, xmlNodeSet, node_set);
nodeNr = node_set->nodeNr ;
for (j = 0 ; j < nodeNr ; j++) {
if (! Nokogiri_namespace_eh(node_set->nodeTab[j])) {
VALUE node ;
xmlNodePtr node_ptr;
node = Nokogiri_wrap_xml_node(Qnil, node_set->nodeTab[j]);
rb_funcall(node, rb_intern("unlink"), 0); /* modifies the C struct out from under the object */
Data_Get_Struct(node, xmlNode, node_ptr);
node_set->nodeTab[j] = node_ptr ;
}
}
return self ;
}
|
#wrap(html, &blk) ⇒ Object
Wrap this NodeSet with html
or the results of the builder in blk
206 207 208 209 210 211 212 213 |
# File 'lib/nokogiri/xml/node_set.rb', line 206 def wrap(html, &blk) each do |j| new_parent = document.parse(html).first j.add_next_sibling(new_parent) new_parent.add_child(j) end self end |
#xpath(*args) ⇒ Object
call-seq: xpath *paths, [namespace-bindings, variable-bindings, custom-handler-class]
Search this node set for XPath paths
. paths
must be one or more XPath queries.
For more information see Nokogiri::XML::Searchable#xpath
87 88 89 90 91 92 93 |
# File 'lib/nokogiri/xml/node_set.rb', line 87 def xpath *args paths, handler, ns, binds = extract_params(args) inject(NodeSet.new(document)) do |set, node| set += node.xpath(*(paths + [ns, handler, binds].compact)) end end |
#|(node_set) ⇒ Object Also known as: +
Returns a new set built by merging the set and the elements of the given set.
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'ext/nokogiri/xml_node_set.c', line 178
static VALUE set_union(VALUE self, VALUE rb_other)
{
xmlNodeSetPtr node_set, other;
xmlNodeSetPtr new;
if(!rb_obj_is_kind_of(rb_other, cNokogiriXmlNodeSet))
rb_raise(rb_eArgError, "node_set must be a Nokogiri::XML::NodeSet");
Data_Get_Struct(self, xmlNodeSet, node_set);
Data_Get_Struct(rb_other, xmlNodeSet, other);
new = xmlXPathNodeSetMerge(NULL, node_set);
new = xmlXPathNodeSetMerge(new, other);
return Nokogiri_wrap_xml_node_set(new, rb_iv_get(self, "@document"));
}
|