H (Hybrid) Language - v0.03, by Dr. Herong Yang
"boolean" "not" Operation
This section describes 'boolean' 'not' operation
The "boolean" "not" operation is provided through the boolean.not() function, which has the following syntax:
boolean.not(a) Parameter: a - A "boolean" data object Return: Returns a new "boolean" data object representing $true, if "a" and "b" represent $false. Otherwise, returns a new "boolean" data object representing $true.
The "boolean" "not" operation can be expressed with the "!" operator format:
! a; # alias of the following function call boolean.not(a);
Table of Contents
Constructor Function: boolean()
Inheritance - Object Attachments