Handbook
Glossary
cleave-array ( quots -- quot )
Extra combinators
Prev:
cond-case ( assoc -- quot )
Next:
4bi ( w x y z p q -- )
Vocabulary
combinators
.
extras
Inputs
quots
a sequence of quotations
Outputs
None
Word description
Like
cleave
, but wraps the output in an array.
Definition
USING:
combinators
kernel
sequences
sequences.generalizations
;
IN:
combinators.extras
MACRO:
cleave-array
( quots -- quot )
dup
length
[
[
cleave
]
curry
]
dip
[
narray
]
curry
compose
;