Strict
Strict[ cond ]
Strict[ cond ] returns the Boolean value whether the condition cond strictly holds. Evaluates to True when a condition evaluates to True, and evaluates to False otherwise.
| Example | in | out |
|---|---|---|
Check whether 2==2 is strictly True. |
Strict[ 2==2 ] |
True |
Check whether x>>2 is strictly True, where x is undefined in the script. |
Strict[ x>>2 ] |
False |