Module: Axiom::Function::Predicate::GreaterThan::Methods

Included in:
Attribute::Comparable
Defined in:
lib/axiom/function/predicate/greater_than.rb

Instance Method Summary collapse

Instance Method Details

#gt(other) ⇒ GreaterThan

Compare the left to see if it is greater than the right

Examples:

greater_than = expression.gt(other)

Parameters:

Returns:



59
60
61
# File 'lib/axiom/function/predicate/greater_than.rb', line 59

def gt(other)
  GreaterThan.new(self, other)
end