Neq
Not equal to
Signature
neq(left: Alpha|AttrName, right: Alpha|AttrName) -> Predicate
Examples
neq(:city, 'London')
neq(:supplier_city, :part_city)
Description
This predicates checks whether two values are different.
Implementation notes
This predicate is equivalent to ->(t){ _left_ != _right_ }
.