- list-fold f sentinel lstprocedure
Fold operation over lists. Can be used with transduce in the following way:
(import transducers) (transduce list-fold values (collect-list) (list 1 2 3)) ; => (1 2 3)
Fold operation over lists. Can be used with transduce in the following way:
(import transducers)
(transduce list-fold
values
(collect-list)
(list 1 2 3))
; => (1 2 3)