- chain-range numeric-rangeprocedure
A transducer that chains a range to the end of the current transduction.
(import transducers) (transduce list-fold (chain-range (range 0 4)) (collect-list) (list 'a 'b 'c)) ; => (a b c 0 1 2 3)
A transducer that chains a range to the end of the current transduction.
(import transducers)
(transduce list-fold
(chain-range (range 0 4))
(collect-list)
(list 'a 'b 'c))
; => (a b c 0 1 2 3)