Skip to content

Iterator

Parameters

[*DType] 

The parameterized abstract type every iterator could nominally inherit from either directly or indirectly.

graph BT
N1["Iterator[*DType]"] -->|inherits| N2["IteratorAT"];

Characteristics

Quality Value
Inherits IteratorAT
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
abstract


has_next

#strict
has_next (s Self) -> Bool
abstract