Skip to content

RandomModifiableIterator

Parameters

[*DType] 

The parameterized abstract type every randomly modifiable iterator must nominally inherit from either directly or indirectly.

graph BT
N1["RandomModifiableIterator[*DType]"] -->|inherits| N2["RandomIterator[DType]"];

Characteristics

Quality Value
Inherits RandomIterator[DType]
Extends N/A
Decorators N/A
Is enum false
Is sealed false
Is extern false

Methods

construct

#default
#Gambol.function.alwaysinline
construct (s Self) -> Self

insert

#strict
insert (s Self, val @DType, idx Len) -> Nil
abstract


erase

#strict
erase (s Self, idx Len) -> Nil
abstract