ModifiableIterator
Parameters
[*DType]
The parameterized abstract type every modifiable iterator could nominally inherit from either directly or indirectly.
graph BT
N1["ModifiableIterator[*DType]"] -->|inherits| N2["Iterator[DType]"];
Characteristics
Quality | Value |
---|---|
Inherits | Iterator[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
next
#strict
next (s Self) -> @DType
has_next
#strict
has_next (s Self) -> Bool
insert
#strict
insert (s Self, val @DType) -> Nil
erase
#strict
erase (s Self) -> Nil