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

values

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

Declaration 宣言

var values: Dictionary<Key, Value>.Values { get set }

Discussion 解説

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


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


for v in countryCodes.values {
    print(v)
}
// Prints "Brazil"
// Prints "Japan"
// Prints "Ghana"

See Also 参照

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