Structureswift 6.0.1Swift
Iterator
The iterator for a PartialRangeFrom
instance.
@frozen struct Iterator
Other members in extension
Typealiases
Instance members
func makeIterator(
) -> PartialRangeFrom<Bound>.Iterator Returns an iterator for this sequence.
Citizens in Swift
Conformances
protocol IteratorProtocol<Element>
A type that supplies the values of a sequence one at a time.
Instance members
func next(
) -> Bound? Advances to the next element and returns it, or
nil
if no next element exists.
Citizens in Swift
where Bound:Sendable