BTreeValueIterator
public struct BTreeValueIterator<Value>: IteratorProtocol
An iterator for the values stored in a B-tree with an empty key.
-
Advance to the next element and return it, or return
nil
if no next element exists.Complexity
Amortized O(1)Declaration
Swift
public mutating func next() -> Value?