实例方法
reduce(into:
reduce(into:_:)
返回使用给定闭包组合序列元素的结果。
声明
func reduce<Result>(
into initialResult: Result,
_ updateAccumulatingResult: (inout Result, Self.Element) throws -> ()
) rethrows -> Result
返回值
最终累计值。如果序列没有元素,则结果为 initialResult
。
参数
initialResult
用作初始累加值的值。
updateAccumulatingResult
一个闭包,它使用序列的元素更新累积值。
详述
使用 reduce(into:_:)
方法从整个序列的元素中生成单个值。例如,您可以在整数数组上使用此方法来过滤相邻的相等条目或计算频率。
当结果是 copy-on-write 类型(例如数组或字典)时,此方法优于 reduce(_:_:)
以提高效率。
updateAccumulatingResult
闭包被顺序调用,可变累加值初始化为 initialResult
和序列的每个元素。这个例子展示了如何建立一个字符串的字母频率字典。
let letters = "abracadabra"
let letterCount = letters.reduce(into: [:]) { counts, letter in
counts[letter, default: 0] += 1
}
// letterCount == ["a": 5, "b": 2, "r": 2, "c": 1, "d": 1]
调用letters.reduce(into:_:)
时,会发生以下步骤:
-
updateAccumulatingResult
闭包使用初始累加值(在这种情况下为[:]
)和letters
的第一个字符调用,通过为键"a"
设置1
来修改累加值。 -
使用更新的累加值和序列的每个元素再次调用闭包。
-
当序列耗尽时,累加值返回给调用者。
如果序列没有元素,则永远不会执行 updateAccumulatingResult
并且 initialResult
是调用 reduce(into:_:)
的结果。
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift UInt16.Words reduce(_:_:)用法及代码示例
- Swift UInt16.Words reversed()用法及代码示例
- Swift UInt16.Words randomElement(using:)用法及代码示例
- Swift UInt16.Words randomElement()用法及代码示例
- Swift UInt16.Words shuffled()用法及代码示例
- Swift UInt16.Words min()用法及代码示例
- Swift UInt16.Words starts(with:)用法及代码示例
- Swift UInt16.Words subscript(_:)用法及代码示例
- Swift UInt16.Words split(separator:maxSplits:omittingEmptySubsequences:)用法及代码示例
- Swift UInt16.Words index(_:offsetBy:limitedBy:)用法及代码示例
- Swift UInt16.Words suffix(_:)用法及代码示例
- Swift UInt16.Words lexicographicallyPrecedes(_:)用法及代码示例
- Swift UInt16.Words flatMap(_:)用法及代码示例
- Swift UInt16.Words map(_:)用法及代码示例
- Swift UInt16.Words contains(where:)用法及代码示例
- Swift UInt16.Words prefix(through:)用法及代码示例
- Swift UInt16.Words lastIndex(of:)用法及代码示例
- Swift UInt16.Words max()用法及代码示例
- Swift UInt16.Words sorted()用法及代码示例
- Swift UInt16.Words filter(_:)用法及代码示例
- Swift UInt16.Words elementsEqual(_:)用法及代码示例
- Swift UInt16.Words dropLast(_:)用法及代码示例
- Swift UInt16.Words contains(_:)用法及代码示例
- Swift UInt16.Words prefix(upTo:)用法及代码示例
- Swift UInt16.Words split(maxSplits:omittingEmptySubsequences:whereSeparator:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 UInt16.Words reduce(into:_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。