?<slice> ( from/f to/f sequence -- slice )


Vocabulary
sequences.extras

Inputs
from/fan integer or f
to/fan integer or f
sequencea sequence


Outputs
slicea slice


Word description
Outputs a new virtual sequence sharing storage with the subrange of elements in seq with indices starting from and including from/f, and up to but not including to/f. If either of these is not specified, they are substituted with the array's bounds: 0 and its length.

Definition