removeAll(keepingCapacity:)
Removes all key-value pairs from the dictionary.
Declaration
mutating func removeAll(keepingCapacity keepCapacity: Bool = false)Parameters
- keepCapacity:
Whether the dictionary should keep its underlying buffer. If you pass
true, the operation preserves the buffer capacity that the collection has, otherwise the underlying buffer is released. The default isfalse.
Discussion
Calling this method invalidates all indices with respect to the dictionary.