1.4.1 Booleans
The boolean truth value.
The boolean falsehood value.
(and bool ...) |
Returns nil if and only if one or more of its arguments is nil. Otherwise, returns the last argument given. If given no arguments, returns t.
Examples: |
> (iff t t) |
't |
> (iff nil nil) |
't |
> (iff t nil) |
'() |
> (iff nil t) |
'() |
> (iff 5 6) |
't |
> (iff 5 nil) |
'() |
(or x ...) |