Instance Methodswift 6.0.3Swift

removeAll(keepingCapacity:)

Removes all key-value pairs from the dictionary.

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 is false.

Calling this method invalidates all indices with respect to the dictionary.