XLISP >
XLISP 2.0  - 
Contents  - 
Reference  - 
Previous |
Next
24  Bitwise Logical Functions
- logand - the bitwise AND of a list of numbers
- logior - the bitwise INCLUSIVE OR of a list of numbers
- logxor - the bitwise EXCLUSIVE OR of a list of numbers
- lognot - the bitwise NOT of a number
- (logand expr...)
- the bitwise AND of a list of numbers
- expr - the numbers
 returns - the result of the AND operation
- (logior expr...)
- the bitwise INCLUSIVE OR of a list of numbers
- expr - the numbers
 returns - the result of the INCLUSIVE OR operation
- (logxor expr...)
- the bitwise EXCLUSIVE OR of a list of numbers
- expr - the numbers
 returns - the result of the EXCLUSIVE OR operation
- (lognot expr)
- the bitwise NOT of a number
- expr - the number
 returns -  the bitwise inversion of number
XLISP >
XLISP 2.0  - 
Contents  - 
Reference  - 
Previous |
Next