VocabularykernelInputs and outputsWord descriptionPartial application on the left. The following two lines are equivalent:
swap [ swap A ] curry B
[ A ] with B
NotesThis operation is efficient and does not copy the quotation.
ExamplesUSING: kernel math prettyprint sequences ;
2 { 1 2 3 } [ - ] with map .
{ 1 0 -1 }
Definition