Module: Axiom::Function::Predicate::Inequality::Methods

Included in:
Attribute::Object
Defined in:
lib/axiom/function/predicate/inequality.rb

Instance Method Summary collapse

Instance Method Details

#ne(other) ⇒ Inequality

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

Examples:

inequality = expression.ne(other)

Parameters:

Returns:



74
75
76
# File 'lib/axiom/function/predicate/inequality.rb', line 74

def ne(other)
  Inequality.new(self, other)
end