module Axiom::Function::Predicate::GreaterThanOrEqualTo::Methods

Public Instance Methods

gte(other) click to toggle source

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

@example

greater_than_or_equal_to = expression.gte(other)

@param [Function] other

@return [GreaterThanOrEqualTo]

@api public

# File lib/axiom/function/predicate/greater_than_or_equal_to.rb, line 59
def gte(other)
  GreaterThanOrEqualTo.new(self, other)
end