Iterator
An iterator for the elements in the buffer referenced by an UnsafeBufferPointer
or UnsafeMutableBufferPointer
instance.
@frozen struct Iterator
Citizens in Swift
Conformances
protocol IteratorProtocol
A type that supplies the values of a sequence one at a time.
protocol Sendable
A type whose values can safely be passed across concurrency domains by copying.
Members
func next(
) -> Element? Advances to the next element and returns it, or
nil
if no next element exists.