The implementation of the not operator
Constructor //-------------------------------------
//-------------------------------------
Applies the operator to the given value // Coerce the value to a boolean boolean val = Coercions.coerceToBoolean (pValue, pLogger).booleanValue (); return PrimitiveObjects.getBoolean (!val);
// Coerce the value to a boolean boolean val = Coercions.coerceToBoolean (pValue, pLogger).booleanValue (); return PrimitiveObjects.getBoolean (!val);
Returns the symbol representing the operator return "not";
return "not";