The spread combinators apply multiple quotations to multiple values. The * suffix signifies spreading.
Two quotations: • bi* ( x y p q -- ) • 2bi* ( w x y z p q -- ) Three quotations: • tri* ( x y z p q r -- ) • 2tri* ( u v w x y z p q r -- ) An array of quotations: • spread ( objs... seq -- ) Technically, the spread combinators are redundant because they can be simulated using shuffle words and other combinators, and in addition, they do not reduce token counts by much, if at all. However, they can make code more readable by expressing intention and exploiting any inherent symmetry. For example, a piece of code which performs three operations on three related values can be written in one of two ways: