Skip to content

Instantly share code, notes, and snippets.

@zhouqiang-cl
Created December 8, 2016 08:15
Show Gist options
  • Save zhouqiang-cl/81a69a7b0f64a00322cb939dd2ee6d69 to your computer and use it in GitHub Desktop.
Save zhouqiang-cl/81a69a7b0f64a00322cb939dd2ee6d69 to your computer and use it in GitHub Desktop.
common lisp 的函数 LOGAND
语法
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