map-outputs ( quot mapper -- )


Vocabulary
combinators.smart

Definition
USING: generalizations kernel ;

IN: combinators.smart

: map-outputs ( quot mapper -- )
[ drop call ] [ swap outputs ] 2bi napply ; inline