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 objects(forKeys : [Any], notFoundMarker : Any) -> [Any]
Returns as a static array the set of objects from the dictionary that corresponds to the specified keys.
この指定されたキーそれらに対応する、その辞書からのオブジェクト一揃いを、静的配列として返します。
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.
与えられたキーと結びつけられた値にアクセスします。