Iterator
The Iterator trait describes a type that can be used as an iterator, e.g. in a for loop.
Implemented traits
AnyType,
ImplicitlyDestructible,
Movable
comptime members
Element
comptime Element
Required methods
__init__
__init__(out self: _Self, *, deinit take: _Self)
Create a new instance of the value by moving the value of another.
Args:
- take (
_Self): The value to move.
Returns:
_Self