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 removeAll (keepingCapacity : Bool)
Removes all key-value pairs from the dictionary.
すべてのキー値ペアを辞書から削除します。