我正在想办法使用Swift Dictionary的'merge'函数。我对这些文档感到困惑,我想了解一下如何阅读这些文档。
https://developer.apple.com/documentation/swift/dictionary/3127173-merging
在文档中,API声明如下:
func merging(_ other: [Key : Value], uniquingKeysWith
combine: (Value, Value) throws -> Value) rethrows -> [Key : Value]
它明确地显示了闭包有一个标签"uniquingKeysWith",然而,文档中的示例根本没有引用那个闭包参数标签!事实上,该示例似乎忽略了许多API声明(例如返回值(。
let dictionary = ["a": 1, "b": 2]
let otherDictionary = ["a": 3, "b": 4]
let keepingCurrent = dictionary.merging(otherDictionary)
{ (current, _) in current }
// ["b": 2, "a": 1]
let replacingCurrent = dictionary.merging(otherDictionary)
{ (_, new) in new }
// ["b": 4, "a": 3]
我想在闭包中进行每个键的处理,这个例子并不表明ist是可能的。具体来说,我想在otherDictionary
中删除nil值,并用非nil值覆盖dictionary
值。
我想我想过滤,并且实际上可以filter()
otherDictionary
在将KVP交给merge
函数之前丢弃零值的密钥,但如果可能的话,我宁愿只在一个闭包中完成。
文档非常清晰。上面写着
…使用遇到的任何重复键的当前值和新值调用组合闭包。
只有出现在两个字典中的键在闭包中被处理。
在这个例子中,对键a
和b
调用闭包,并且分别返回current
(表示dictionary
(和new
(表示otherDictionary
(的较高值。
let dictionary = ["a": 1, "b": 4, "c": 4]
let otherDictionary = ["a": 3, "b": 2, "d": 5]
let keepingHighest = dictionary.merging(otherDictionary)
{ (current, new) in
print(current, new) // prints 4 2 and 1 3
return max(current, new)
}
// ["c": 4, "b": 4, "d": 5, "a": 3]
字典中的nil
值正在对抗系统,因为根据定义,nil
值表示缺少键。