virtual@ ( n seq -- n' seq' )
Virtual sequence protocol

Prev:virtual-exemplar ( seq -- seq' )


Vocabulary
sequences

Inputs
nan integer
seqa sequence


Outputs
n'an integer
seq'a sequence


Word description
Part of the sequence protocol, this word translates the input index n into an index and the underlying storage this index points into.

Examples
USING: kernel prettyprint sequences ; 0 { 1 2 3 4 5 6 } <reversed> virtual@ [ . ] bi@
5 { 1 2 3 4 5 6 }


Definition

GENERIC: virtual@ ( n seq -- n' seq' )


Methods