Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何减少 Common Lisp 中的布尔值列表?
我有一个列表如下:'(T Nil TT)
我想在该列表上应用 and-operator。这样它只在列表中的所有条目都是 T 时才给出 T
我试图应用#',但它会引发错误。
你不能申请and,因为它不是一个函数:它是一个宏。
and
你要
(every #'identity list)
或者
(loop for x in list always x)