uncurry ( curry -- obj quot )


Vocabulary
quotations.private

Definition
USING: kernel kernel.private slots.private ;

IN: quotations.private

: uncurry ( curry -- obj quot )
{ curry } declare dup 2 slot swap 3 slot ; inline