offset-growable


Vocabulary
sequences.inserters

Definition
IN: sequences.inserters

TUPLE: offset-growable
{ underlying read-only } { offset read-only } ;


Methods
USING: accessors kernel math sequences sequences.inserters ;

M: offset-growable length
[ underlying>> length ] [ offset>> ] bi - ; inline


USING: accessors kernel math sequences sequences.inserters ;

M: offset-growable set-length
[ offset>> + ] [ underlying>> ] bi set-length ; inline


USING: accessors sequences sequences.inserters ;

M: offset-growable virtual-exemplar underlying>> ; inline


USING: accessors kernel math sequences sequences.inserters ;

M: offset-growable virtual@
[ offset>> + ] [ underlying>> ] bi ; inline