map-into ( seq quot into -- )


Vocabulary
sequences.private

Definition
USING: kernel ;

IN: sequences.private

: map-into ( seq quot into -- ) [ (each) ] dip collect ; inline