Type Alias

Dictionary.Element

The element type of a dictionary: a tuple containing an individual key-value pair.

Declaration

typealias Dictionary<Key, Value>.Element = (key: Key, value: Value)

Relationships

From Protocol