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