map-indexed
function
(map-indexed func &rest seqs) (map-indexed func)
(map-indexed func &rest seqs)
(map-indexed func)
Equivalent to (apply map func (range) seqs). The second form returns a transducer.
(apply map func (range) seqs)
make-html > (map-indexed vector '(a b c)) it: (#v(0 a) #v(1 b) #v(2 c))