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