cl:and?   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/scheme.xtm

Implementation

;;;; CONDITIONALS
;@
(define (cl:and? . args)
  (cond ((null? args) #t)
  ((car args) (apply cl:and? (cdr args)))
  (else #f)))
;@


Back to Index