virtual-exemplar ( seq -- seq' )
Virtual sequence protocol

Prev:length ( seq -- n )
Next:virtual@ ( n seq -- n' seq' )


Vocabulary
sequences

Inputs
seqa sequence


Outputs
seq'a sequence


Word description
Part of the virtual sequence protocol, this word is used to return an exemplar of the underlying storage. This is used in words like new-sequence.

Examples
USING: prettyprint sequences ; 1 3 { 14 15 16 17 } <slice> virtual-exemplar .
{ 14 15 16 17 }


Definition


Methods