unrolled-2map-as ( xseq yseq len quot: ( x y -- newx ) exemplar -- newseq )
Unrolled sequence iteration combinators

Prev:unrolled-2map ( xseq yseq len quot: ( x y -- newx ) -- newseq )
Next:unrolled-each-integer ( n quot: ( i -- ) -- )


Vocabulary
sequences.unrolled

Inputs
xseqa sequence
yseqa sequence
lenan integer
quota quotation with stack effect ( x y -- newx )
exemplara sequence


Outputs
newseqa sequence


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

Definition