set-slots{
Slots syntax sugar

Prev:set[
Next:set{


Vocabulary
slots.syntax

Word description
Sets slot values in a tuple from an array.
USING: prettyprint slots.syntax kernel ; IN: slots.syntax.example TUPLE: rectangle width height ; rectangle new { 3 5 } set-slots{ width height } .
T{ rectangle { width 3 } { height 5 } }


Definition