On this page
8.208 NOT — Logical negation
- Description:
- 
    NOTreturns the bitwise Boolean inverse of I.
- Standard:
- 
    Fortran 90 and later, has overloads that are GNU extensions 
- Class:
- 
    Elemental function 
- Syntax:
- 
    RESULT = NOT(I)
- Arguments:
- 
    I The type shall be INTEGER.
- Return value:
- 
    The return type is INTEGER, of the same kind as the argument.
- Specific names:
- 
    Name Argument Return type Standard NOT(A)INTEGER AINTEGERFortran 95 and later BNOT(A)INTEGER(1) AINTEGER(1)GNU extension INOT(A)INTEGER(2) AINTEGER(2)GNU extension JNOT(A)INTEGER(4) AINTEGER(4)GNU extension KNOT(A)INTEGER(8) AINTEGER(8)GNU extension 
- See also:
© Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
 https://gcc.gnu.org/onlinedocs/gcc-12.1.0/gfortran/NOT.html