boolean.not
This function returns the reverse value of a boolean.
Syntax
boolean.not(bool)
Arguments
|
Argument |
Type |
Description |
|---|---|---|
|
Bool |
boolean |
Boolean for which the reverse value needs to be returned. |
Returns
|
Type |
Description |
|---|---|
|
boolean |
Returns the reverse value of a boolean. |
Examples
The function boolean.not(boolean.true()) returns false.