class XPath::XPathBoolean

Attributes

instance[R]

Public Instance Methods

==(other) click to toggle source
# File lib/xml/xpath.rb, line 638
def ==(other)
  true? == other.true?
end
to_boolean(context) click to toggle source
# File lib/xml/xpath.rb, line 634
def to_boolean(context)
  self
end
to_ruby() click to toggle source

def to_f def true?

# File lib/xml/xpath.rb, line 630
def to_ruby
  true?
end
to_str() click to toggle source
# File lib/xml/xpath.rb, line 623
def to_str
  true?.to_s
end