Skip to content

BidirectionalIterator

Parameters

[*DType] 

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

graph BT
N1["BidirectionalIterator[*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
abstract


prev

#strict
prev (s Self) -> @DType
abstract


has_next

#strict
has_next (s Self) -> Bool
abstract


has_prev

#strict
has_prev (s Self) -> Bool
abstract