cl:find-if   scheme


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

Implementation

(define (cl:find-if pred? lst)
  (cond ((null? lst) #f)
  ((pred? (car lst)) (car lst))
  (else (cl:find-if pred? (cdr lst)))))
;@


Back to Index