module Axiom::Function::Predicate::Inequality::Methods

Public Instance Methods

ne(other) click to toggle source

Compare the left to see if it is not equal to the right

@example

inequality = expression.ne(other)

@param [Function] other

@return [Inequality]

@api public

# File lib/axiom/function/predicate/inequality.rb, line 74
def ne(other)
  Inequality.new(self, other)
end