Functions Index :: N :: Not

[<< up one level]

Module:

bool :: core

Definition:

Not(val x)

Description:

Returns the result of the NOT of its argument. [1]

Examples:

b = true

c = Not(b) # c == false

 

[<< top]

 


[1]: The function is provided as a building block of more complex functions, particularly for operations on arrays. See the documentation of the array package and the ArrayOpFunc, ArrayOpArrayFunc and ArraySum functions.