lispdoc - results for bit |
(bit bit-array &rest subscripts) | Function: Return the bit from the BIT-ARRAY at the specified SUBSCRIPTS.
|
| Mentioned in: CLtL2 - 17. Arrays CLtL2 - 17.2. Array Access CLtL2 - 17.4. Functions on Arrays of Bits CLtL2 - 2.15. Overlap, Inclusion, and Disjointness of Types CLtL2 - 2.5.1. Vectors CLtL2 - 23.2. Opening and Closing Files CLtL2 - 4.5. Type Specifiers That Specialize CLtL2 - 4.6. Type Specifiers That Abbreviate CLtL2 - 4.7. Defining New Type Specifiers CLtL2 - 7.2. Generalized Variables HyperSpec - 18.1.2.2.2 Visible Modification of Bit Vectors and Strings with respect to EQUAL HyperSpec - 22.1.3.6 Printing Bit Vectors HyperSpec - Accessor BIT, SBIT HyperSpec - Type BIT PCL - subtypes of vector Successful Lisp - chapter18 Successful Lisp - chapter19 | |
bits | |
| Mentioned in: HyperSpec - 12.1.1.3 Viewing Integers as Bits and Bytes | |
(bit-not bit-array &optional result-bit-array) | Function: Performs a bit-wise logical NOT on the elements of BIT-ARRAY, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. Both arrays must have the same rank and dimensions.
|
| Mentioned in: CLtL2 - 17.4. Functions on Arrays of Bits HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-and bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGAND on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: CLtL2 - 17.4. Functions on Arrays of Bits HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-nor bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGNOR on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-ior bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGIOR on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-eqv bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGEQV on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-xor bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGXOR on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-orc1 bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGORC1 on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-orc2 bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGORC2 on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-nand bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGNAND on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-andc2 bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGANDC2 on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
(bit-andc1 bit-array-1 bit-array-2 &optional result-bit-array) | Function: Perform a bit-wise LOGANDC1 on the elements of BIT-ARRAY-1 and BIT-ARRAY-2, putting the results in RESULT-BIT-ARRAY. If RESULT-BIT-ARRAY is T, BIT-ARRAY-1 is used. If RESULT-BIT-ARRAY is NIL or omitted, a new array is created. All the arrays must have the same rank and dimensions.
|
| Mentioned in: HyperSpec - Function BIT-AND, BIT-ANDC1, BIT-ANDC2, BIT-EQV, BIT-IOR, BIT-NAND, BIT-NOR, BIT-NOT, BIT-ORC1, BIT-ORC2, BIT-XOR Successful Lisp - chapter18 | |
bit-vector | Undocumented
|
| Mentioned in: CLtL2 - 2.15. Overlap, Inclusion, and Disjointness of Types CLtL2 - 4.5. Type Specifiers That Specialize HyperSpec - System Class BIT-VECTOR | |
(bit-vector-p object) | Function: Return true if OBJECT is a BIT-VECTOR, and NIL otherwise.
|
Example:(defun self-evaluating? (x) (or (null x) (numberp x) (characterp x) (stringp x) (bit-vector-p x) (keywordp x))) | Mentioned in: CLtL2 - 6.2.2. Specific Data Type Predicates HyperSpec - Function BIT-VECTOR-P |
simple-bit-vector | Undocumented
|
| Mentioned in: CLtL2 - 2.15. Overlap, Inclusion, and Disjointness of Types HyperSpec - Type SIMPLE-BIT-VECTOR | |
(simple-bit-vector-p object) | Function: Return true if OBJECT is a SIMPLE-BIT-VECTOR, and NIL otherwise.
|
| Mentioned in: CLtL2 - 6.2.2. Specific Data Type Predicates HyperSpec - Function SIMPLE-BIT-VECTOR-P | |
about | |
| Mentioned in: HyperSpec - 11.1.2.3.2 Notes about The KEYWORD Package HyperSpec - 17.2 Rules about Test Functions HyperSpec - 19.2.2.4.7 Notes about the Pathname Version Component HyperSpec - 19.3.1.1 Additional Information about Parsing Logical Pathname Namestrings HyperSpec - 2.4.4.2 Notes about Style for Semicolon HyperSpec - 2.4.6.1 Notes about Backquote HyperSpec - 2.4.8.19.2 Notes about Style for Sharpsign Vertical-Bar HyperSpec - 22.1.3.1.5 Note about Printing Numbers HyperSpec - 22.2.3 Notes about the Pretty Printer's Background HyperSpec - 22.3.10 Additional Information about FORMAT Operations HyperSpec - 22.3.12 Notes about FORMAT HyperSpec - 3.2.2.1.3.1 Notes about the Implementation of Compiler Macros HyperSpec - 6.1.9 Notes about Loop HyperSpec - 9.1.3.1.4 Note about Tabs in Condition Reports HyperSpec - 9.1.6 Notes about the Condition System's Background | |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |