NOT intrinsic function
Standard: F77 F90 F95 F2003
  Example Program
<Syntax>
NOT ( I )

I : Integer;
Result : same type and shape as I.
<Semantics>
Returns the bitwise logical negation of I, with each zero bit replaced by a one bit, and vice versa. This is an elemental function; if I is an array the result is an array of the same shape, with the NOT operation applied to each element of I.
<Related>
IAND intrinsic function, IEOR intrinsic function, IOR intrinsic function, ISHFT intrinsic function, ISHFTC intrinsic function, LEADZ intrinsic function, MASKL intrinsic function, MASKR intrinsic function, POPCNT intrinsic function, POPPAR intrinsic function, SHIFTA intrinsic function, SHIFTL intrinsic function, SHIFTR intrinsic function, TRAILZ intrinsic function