From: Borislav I. <bor...@ko...> - 2004-04-05 18:49:35
|
Hi, I tried and-ing a list of boolean with: (apply and values) It doesn't work. Why is it possible to do: (apply + (list 2 2)) But not: (apply and (list #t #t))? It seems like and is a macro that expands the above into: (if #t (and #t) #f) Of course, I can 'and' that list in many other ways, but just wondering.... Thanks, Boris |