You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add checks and validators for checking or ensuring that a numeric value is not equal to a given base value. The checkers should be preferably named notEqual and the validators should be preferably named requireNotEqual.
Example usage of notEqual
publicintsomeMethod(intvalue) {
if (notEqual(this.someBaseValue, value))
returnvalue;
elsereturn0;
}
Add checks and validators for checking or ensuring that a numeric value is not equal to a given base value. The checkers should be preferably named
notEqual
and the validators should be preferably namedrequireNotEqual
.Example usage of
notEqual
Example usage of
requireNotEqual
The text was updated successfully, but these errors were encountered: