Created
December 8, 2016 08:15
-
-
Save zhouqiang-cl/81a69a7b0f64a00322cb939dd2ee6d69 to your computer and use it in GitHub Desktop.
common lisp 的函数 LOGAND
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
logand &rest integers => result-integer | |
参数和值 | |
integers --- integers | |
描述 | |
按位逻辑与 | |
代码 | |
* (logand 1 4) | |
0 | |
* (logand 1 3) | |
1 | |
* (logand 3 4) | |
0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment