用法一
实例方法
merging(_:
merging(_:uniquingKeysWith:)
通过将给定字典合并到此字典中来创建字典,使用组合闭包来确定重复键的值。
声明
func merging(
_ other: [Key : Value],
uniquingKeysWith combine: (Value, Value) throws -> Value
) rethrows -> [Key : Value]
当
Key
符合 Hashable
时可用。返回值
包含此字典和 other
的组合键和值的新字典。
参数
other
要合并的字典。
combine
为任何重复键获取当前值和新值的闭包。闭包返回最终字典所需的值。
详述
使用 combine
闭包选择要在返回字典中使用的值,或组合现有值和新值。随着other
中的键值对与此字典合并,combine
闭包会调用遇到的任何重复键的当前值和新值。
此示例显示如何为任何重复键选择当前值或新值:
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]
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
用法二
实例方法
merging(_:
merging(_:uniquingKeysWith:)
通过将序列中的键值对合并到字典中来创建字典,使用组合闭包来确定重复键的值。
声明
func merging<S>(
_ other: S,
uniquingKeysWith combine: (Value, Value) throws -> Value) rethrows -> [Key : Value] where S : Sequence, S.Element == (Key, Value
)
当
Key
符合 Hashable
时可用。返回值
包含此字典和 other
的组合键和值的新字典。
参数
other
一系列键值对。
combine
为任何重复键获取当前值和新值的闭包。闭包返回最终字典所需的值。
详述
使用 combine
闭包选择要在返回字典中使用的值,或组合现有值和新值。当键值对与字典合并时,combine
闭包会调用遇到的任何重复键的当前值和新值。
此示例显示如何为任何重复键选择当前值或新值:
let dictionary = ["a": 1, "b": 2]
let newKeyValues = zip(["a", "b"], [3, 4])
let keepingCurrent = dictionary.merging(newKeyValues) { (current, _) in current }
// ["b": 2, "a": 1]
let replacingCurrent = dictionary.merging(newKeyValues) { (_, new) in new }
// ["b": 4, "a": 3]
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift Dictionary merge(_:uniquingKeysWith:)用法及代码示例
- Swift Dictionary makeIterator()用法及代码示例
- Swift Dictionary min(by:)用法及代码示例
- Swift Dictionary max(by:)用法及代码示例
- Swift Dictionary map(_:)用法及代码示例
- Swift Dictionary allSatisfy(_:)用法及代码示例
- Swift Dictionary values用法及代码示例
- Swift Dictionary dropFirst(_:)用法及代码示例
- Swift Dictionary firstIndex(where:)用法及代码示例
- Swift Dictionary first(where:)用法及代码示例
- Swift Dictionary subscript(_:default:)用法及代码示例
- Swift Dictionary isEmpty用法及代码示例
- Swift Dictionary reduce(_:_:)用法及代码示例
- Swift Dictionary suffix(from:)用法及代码示例
- Swift Dictionary subscript(_:)用法及代码示例
- Swift Dictionary init(uniqueKeysWithValues:)用法及代码示例
- Swift Dictionary randomElement()用法及代码示例
- Swift Dictionary init(grouping:by:)用法及代码示例
- Swift Dictionary dropLast(_:)用法及代码示例
- Swift Dictionary updateValue(_:forKey:)用法及代码示例
- Swift Dictionary removeValue(forKey:)用法及代码示例
- Swift Dictionary forEach(_:)用法及代码示例
- Swift Dictionary index(forKey:)用法及代码示例
- Swift Dictionary keys用法及代码示例
- Swift Dictionary first用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Dictionary merging(_:uniquingKeysWith:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。