neq method

LogicValue neq(
  1. dynamic other
)

Not equal-to operation.

This is different from != operator because it returns a LogicValue instead of a bool. It does a logical comparison of the two values, rather than exact inequality. For example, if one of the two values is invalid, neq will return x.

Implementation

LogicValue neq(dynamic other) => _doCompare(other, (a, b) => a != b);