Handbook
Glossary
unrolled-each-integer ( n quot: ( i -- ) -- )
Unrolled sequence iteration combinators
Prev:
unrolled-2map-as ( xseq yseq len quot: ( x y -- newx ) exemplar -- newseq )
Next:
unrolled-map-integers-as ( n quot: ( n -- value ) exemplar -- newseq )
Vocabulary
sequences
.
unrolled
Inputs
n
an
integer
quot
a
quotation
with stack effect
( i -- )
Outputs
None
Word description
Unrolled version of
each-integer
.
n
must be a compile-time constant.
Definition
USING:
kernel
sequences.unrolled.private
;
IN:
sequences.unrolled
:
unrolled-each-integer
( n quot: ( i -- ) -- )
swap
(unrolled-each-integer)
;
inline