var allKeys : [Any]
A new array containing the dictionary’s keys, or an empty array if the dictionary has no entries.
辞書のもつキーそれらを含んでいる新しい配列、または辞書が登録項目を持たないならば空の配列。
func allKeys (for: Any) -> [Any]
Returns a new array containing the keys corresponding to all occurrences of a given object in the dictionary.
ある与えられたオブジェクトのその辞書での全ての出現に対応しているキーそれらを含んでいる新しい配列を返します。
var allValues : [Any]
A new array containing the dictionary’s values, or an empty array if the dictionary has no entries.
辞書の持つ値それらを含んでいる新しい配列、または辞書が登録項目を持たないならば空の配列。
func value(forKey : String) -> Any?
Returns the value associated with a given key.
与えられたキーと結びつけられた値を返します。
func object(forKey : Any) -> Any?
Returns the value associated with a given key.
与えられたキーと結びつけられた値を返します。
subscript(NSCopying) -> Any?
Returns the value associated with a given key.
与えられたキーと結びつけられた値を返します。
subscript(Any) -> Any?
Accesses the value associated with a given key.
与えられたキーと結びつけられた値にアクセスします。