- collect-count #!optional (sentinel 0)procedure
A collector which counts the number of items that are transduced.
(import transducers) (transduce list-fold values count (list 'a 'b 'c)) ; => 3 (transduce list-fold (filter odd?) (collect-count) (list 1 2 3 4 5 6 7)) ; => 4