Instance Property インスタンスプロパティ

keys

A collection containing just the keys of the dictionary. 辞書のキーだけを含んでいるコレクション。

Declaration 宣言

var keys: Dictionary<Key, Value>.Keys { get }

Discussion 解説

When iterated over, keys appear in this collection in the same order as they occur in the dictionary’s key-value pairs. Each key in the keys collection has a unique value. すべてにわたって反復した場合、それらが辞書のキー値ペアにおいて現れるのと同じ順序で、キーはこのコレクションにおいて現れます。このキーコレクションの中の各キーは、特有な値を持ちます。


let countryCodes = ["BR": "Brazil", "GH": "Ghana", "JP": "Japan"]
print(countryCodes)
// Prints "["BR": "Brazil", "JP": "Japan", "GH": "Ghana"]"


for k in countryCodes.keys {
    print(k)
}
// Prints "BR"
// Prints "JP"
// Prints "GH"

See Also 参照

Accessing Keys and Values キーと値にアクセスする