unrolled-map-as ( seq len quot: ( x -- newx ) exemplar -- newseq )
Unrolled sequence iteration combinators

Prev:unrolled-map-index ( seq len quot: ( x i -- newx ) -- newseq )
Next:unrolled-2map ( xseq yseq len quot: ( x y -- newx ) -- newseq )


Vocabulary
sequences.unrolled

Inputs
seqa sequence
lenan integer
quota quotation with stack effect ( x -- newx )
exemplara sequence


Outputs
newseqa sequence


Word description
Unrolled version of map-as that maps over the first len elements of seq. len must be a compile-time constant. If seq has fewer than len elements, raises an unrolled-bounds-error.

Definition