notEquals method

Condition notEquals (
  1. bool p
)

Implementation

Condition notEquals(bool p) {
  return IntegerCondition(ConditionOp.notEq, this, (p ? 1 : 0));
}