RLMKeyValueIterator
@frozen
public struct RLMKeyValueIterator<Key, Value> : IteratorProtocol where Key : _MapKey, Value : RealmCollectionValue
Map<Key, Value>
的迭代器,可为映射中的每个条目生成(key: Key, value: Value)
对。
-
声明
Swift
public typealias Element = (key: Key, value: Value)
-
前进到下一个元素并返回,如果没有下一个元素,则返回
nil
。声明
Swift
public mutating func next() -> Element?