Not

Name

Not — bitwise not

Syntax

Not( expression )

Domain

Nor : Z -> Z

Example

Not( 1 ) = 2

Description

Logical not, inverts each bit. Nor yields the following bitwise combinations: Not(0) = 1, Not(1) = 0. If the expressions are not in Z, they are truncated before the bitwise Not is performed.