Type Aliasswift 6.0.3Swift
DictionaryIterator
typealias DictionaryIterator<Key, Value> = Dictionary<Key, Value>.Iterator where Key : Hashable
typealias DictionaryIterator<Key, Value> = Dictionary<Key, Value>.Iterator where Key : Hashable
import Swift
@frozen struct Dictionary<Key, Value> where Key : Hashable
A collection whose elements are key-value pairs.
@frozen struct Iterator
An iterator over the members of a Dictionary<Key, Value>
.
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.