StructureSwift5.9.0
StrideThroughIterator
An iterator for a StrideThrough
instance.
@frozen struct StrideThroughIterator<Element> where Element : Strideable
Citizens in Swift
where Element:Strideable
Conformances
protocol IteratorProtocol
A type that supplies the values of a sequence one at a time.
Members
func next(
) -> Element? Advances to the next element and returns it, or
nil
if no next element exists.
Citizens in Swift
where Element:Sendable, Element:Strideable, Element.Stride:Sendable
Conformances
protocol Sendable
A type whose values can safely be passed across concurrency domains by copying.