Skip to content
Chung Leong edited this page Jan 10, 2022 · 4 revisions

not - Logical not

bool[] not( bool[] $list )

not() returns the logical complement of list. If an element in list is true, the corresponding element in the return value is false and vice versa.

Parameters:

list - The array to process.

Return Value:

An array of booleans. The size of the return value will match that of list.

Version

1.0 and above.

Clone this wiki locally