Skip to content

RandomModifiableIterable

Parameters

[*DType] 

the parameterized abstract type every randomly modifiable iterable type must nominally inherit from either directly or indirectly.

graph BT
N1["RandomModifiableIterable[*DType]"] -->|inherits| N2["RandomIterable[DType]"];
N1["RandomModifiableIterable[*DType]"] -->|inherits| N3["ReverseModifiableIterable[DType]"];
N1["RandomModifiableIterable[*DType]"] -->|inherits| N4["Unpackable[DType]"];

Characteristics

Quality Value
Inherits RandomIterable[DType], ReverseModifiableIterable[DType], Unpackable[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

len

#strict
len (s Self) -> Len
abstract


get_iterator

get_iterator (s Self) -> nom BidirectionalModifiableIterator[DType]
abstract


get_reverse_iterator

get_reverse_iterator (s Self) -> nom BidirectionalModifiableIterator[DType]
abstract


get_random_iterator

get_random_iterator (s Self) -> nom RandomModifiableIterator[DType]
abstract