| A |
Index: A B I L N O U Symbol Code |
| AND | Boolean AND. |
| ASSIGNED | Determines if a variable has been assigned. |
| B |
Index: A B I L N O U Symbol Code |
| BITAND | Performs a logical AND at the bit level on two values. |
| BITNOT | Performs a logical NOT at the bit level on two values. |
| BITOR | Performs a logical OR at the bit level on two values. |
| BITRESET | Sets the specified bit to zero. |
| BITSET | Sets the specified bit to one. |
| BITTEST | Tests the specified bit, returning a zero or one. |
| BITXOR | Performs a logical Exclusive OR at the bit level on two values. |
| I |
Index: A B I L N O U Symbol Code |
| ISNULL | |
| ISNULLS | |
| L |
Index: A B I L N O U Symbol Code |
| LET | DEPRECIATED. Assignment command. |
| N |
Index: A B I L N O U Symbol Code |
| NOT | NOT reverses the logic of a boolean test. True is false. False is true. |
| NOTS | Used to do a NOT (reverse logic) test on each element of a synamic array. |
| NUM | Returns true if the value is numeric. |
| O |
Index: A B I L N O U Symbol Code |
| OR | Boolean OR. |
| U |
Index: A B I L N O U Symbol Code |
| UNASSIGNED | Determines if a variable has been assigned. |
| Symbol |
Index: A B I L N O U Symbol Code |
| # | Symbol for not equals (boolean test). |
| < | Symbol for boolean Less-Than compare. Also used as close angle bracket. |
| <> | Symbol for not equals (boolean test). Also used as Angle brackets. |
| = | Symbol for equals (boolean test) or assignment. |
| > | Symbol for boolean Greater-Than compare. Also used as open angle bracket. |
| Code |
Index: A B I L N O U Symbol Code |
| BOOLEAN | Example of Boolean logic |
| | |