module Axiom::Function::Predicate::LessThan::Methods

Public Instance Methods

lt(other) click to toggle source

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

@example

less_than = expression.lt(other)

@param [Function] other

@return [LessThan]

@api public

# File lib/axiom/function/predicate/less_than.rb, line 59
def lt(other)
  LessThan.new(self, other)
end