Structureswift 6.0.1Swift
StrideToIterator
An iterator for a StrideTo
instance.
@frozen struct StrideToIterator<Element> where Element : Strideable
An iterator for a StrideTo
instance.
@frozen struct StrideToIterator<Element> where Element : Strideable
import Swift
protocol Strideable<Stride> : Comparable
A type representing continuous, one-dimensional values that can be offset and measured.
protocol Copyable
A type whose values can be implicitly or explicitly copied.
protocol Escapable
protocol IteratorProtocol<Element>
A type that supplies the values of a sequence one at a time.
mutating func next() -> Element?
Advances to the next element and returns it, or nil
if no next element exists.
protocol Sendable