Merges the key-value pairs in the given sequence into the dictionary, using a combining closure to determine the value for any duplicate keys.
SDK
- Xcode 10.2+
Framework
- Swift Standard Library
Declaration
Parameters
other
A sequence of key-value pairs.
combine
A closure that takes the current and new values for any duplicate keys. The closure returns the desired value for the final dictionary.
Discussion
Use the combine
closure to select a value to use in the updated dictionary, or to combine existing and new values. As the key-value pairs are merged with the dictionary, the combine
closure is called with the current and new values for any duplicate keys that are encountered.
This example shows how to choose the current or new values for any duplicate keys: