Questions tagged [cltl2]

Common Lisp the Language, 2nd edition

Common Lisp the Language, 2nd edition was published before the ANSI Common Lisp standard was finalized. Beware of various differences. When in doubt, the ANSI CL standard is the guiding document. For a web version see the Common Lisp HyperSpec.

1 questions
10
votes
1 answer

Using `satisfies` with `and` in Common Lisp

I read in Google Common Lisp Style Guide (see the very last section) that there is a mistake in the Common Lisp standard regarding and as a type specifier. Namely, that it does not "short circuit", or equivalently that order of evaluation is not…
user1220978