Skip to content

BidirectionalIterable

Parameters

[*DType] 

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

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

Characteristics

Quality Value
Inherits Iterable[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

get_iterator

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