not - chung-leong/qb GitHub Wiki
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.