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 由来プロトコル