subscript(Key) -> Value?
Accesses the value associated with the given key for reading and writing.
与えられたキーに結び付けられる値に読出しと書き込みのためにアクセスします。
subscript(Key, default() -> Value) -> Value
Accesses the value with the given key, falling back to the given default value if the key isn’t found.
値にこの与えられたキーでアクセスします、キーが見つけられないならばその与えられた省略時の値まで後退します。
func index(forKey : Key) -> Dictionary<Key, Value>.Index?
Returns the index for the given key.
与えられたキーに対するインデックスを返します。
subscript(Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Element
Accesses the key-value pair at the specified position.
指定された位置でキー値ペアにアクセスします。
var keys: Dictionary<Key, Value>.Keys
A collection containing just the keys of the dictionary.
辞書のキーだけを含んでいるコレクション。
var values: Dictionary<Key, Value>.Values
A collection containing just the values of the dictionary.
辞書の値だけを含んでいるコレクション。
func randomElement () -> (key: Key, value: Value)?
Returns a random element of the collection.
コレクションのある無作為の要素を返します。
func randomElement <T>(using: inout T) -> (key: Key, value: Value)?
Returns a random element of the collection, using the given generator as a source for randomness.
コレクションのある無作為な要素を返します、与えられた生成子を無作為さの出典として使って使います。