module Axiom::Function::Predicate::GreaterThan::Methods
Public Instance Methods
gt(other)
click to toggle source
Compare the left to see if it is greater than the right
@example
greater_than = expression.gt(other)
@param [Function] other
@return [GreaterThan]
@api public
# File lib/axiom/function/predicate/greater_than.rb, line 59 def gt(other) GreaterThan.new(self, other) end