Re: (apply #'and '(t t nil)) not work
- From: Brian <quickbasicguru@xxxxxxxxx>
- Date: Mon, 31 Mar 2008 08:28:50 -0700 (PDT)
At the risk of confusing you, if you absolutely need short circuiting
with apply, this will work:
CL-USER(3): (defvar *foo* (list (lambda () t) (lambda () t) (lambda ()
nil) (lambda () (write-line "Death") t)))
*FOO*
CL-USER(4): (every #'funcall *foo*)
NIL
But there is a strong likelyhood that you don't need to do something
that drastic.
.
- References:
- (apply #'and '(t t nil)) not work
- From: fishmacs
- Re: (apply #'and '(t t nil)) not work
- From: Alex Mizrahi
- Re: (apply #'and '(t t nil)) not work
- From: fishmacs
- Re: (apply #'and '(t t nil)) not work
- From: Brian
- (apply #'and '(t t nil)) not work
- Prev by Date: Re: indent for CL
- Next by Date: Re: (apply #'and '(t t nil)) not work
- Previous by thread: Re: (apply #'and '(t t nil)) not work
- Next by thread: Re: (apply #'and '(t t nil)) not work
- Index(es):
Relevant Pages
|