func filter((Dictionary<Key, Value>.Element) -> Bool) -> [Key : Value]
Returns a new dictionary containing the key-value pairs of the dictionary that satisfy the given predicate.
この辞書のキー値ペアで与えられた述部を満たすものを含んでいる新しい辞書を返します。
func removeValue (forKey : Key) -> Value?
Removes the given key and its associated value from the dictionary.
指定されたキーと関連値を辞書から取り除きます。
func remove(at: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Element
Removes and returns the key-value pair at the specified index.
キー値ペアを指定されたインデックスで削除して返します。