class Gammo::XPath::AST::Function::Not

@!visibility private

Public Instance Methods

evaluate(context) click to toggle source
# File lib/gammo/xpath/ast/function.rb, line 57
def evaluate(context)
  bool !arguments[0].evaluate(context)
end