Class: XPath::Expression::Binary

Inherits:
XPath::Expression show all
Defined in:
lib/xpath/expression.rb

Direct Known Subclasses

And, Attribute, Contains, Equality, Is, Or, Where

Constant Summary

Constants included from XPath

VERSION

Instance Method Summary collapse

Methods inherited from XPath::Expression

#and, #apply, #current, #equals, #inverse, #is, #next_sibling, #normalize, #one_of, #or, #string, #string_literal, #to_s, #to_xpath, #to_xpaths, #union, #where, #wrap_xpath

Methods included from XPath

#anywhere, #attr, #child, #contains, #current, #descendant, generate, #name, #text, #var, #varstring

Constructor Details

#initialize(left, right) ⇒ Binary

Returns a new instance of Binary.



18
19
20
21
# File 'lib/xpath/expression.rb', line 18

def initialize(left, right)
  @left = wrap_xpath(left)
  @right = wrap_xpath(right)
end