dropping ( quot -- quot' )


Vocabulary
combinators.smart

Inputs
quota quotation


Outputs
quot'a quotation


Word description
Outputs a quotation that, when called, will have the effect of dropping the number of inputs to the original quotation.

Examples
USING: combinators.smart math prettyprint ; [ + + ] dropping .
[ 3 ndrop ]


Definition