Module: Axiom::Function::Predicate::GreaterThanOrEqualTo::Methods

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

Instance Method Summary collapse

Instance Method Details

#gte(other) ⇒ GreaterThanOrEqualTo

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

Examples:

greater_than_or_equal_to = expression.gte(other)

Parameters:

Returns:



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

def gte(other)
  GreaterThanOrEqualTo.new(self, other)
end