Skip to content

Iterable

Parameters

[*DType] 

the abstract parameterized type that iterables could nominally inherit from either directly or indirectly.

graph BT
N1["Iterable[*DType]"] -->|inherits| N2["IterableAT"];

Characteristics

Quality Value
Inherits IterableAT
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

get_iterator

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