实例方法
reduce(_:
reduce(_:_:)
返回使用给定闭包组合序列元素的结果。
声明
func reduce<Result>(
_ initialResult: Result,
_ nextPartialResult: (Result, Self.Element) throws -> Result
) rethrows -> Result
返回值
最终累计值。如果序列没有元素,则结果为 initialResult
。
参数
initialResult
用作初始累加值的值。
initialResult
在第一次执行闭包时传递给nextPartialResult
。nextPartialResult
一个闭包,它将一个累加值和序列的一个元素组合成一个新的累加值,用于
nextPartialResult
闭包的下一次调用或返回给调用者。
详述
使用 reduce(_:_:)
方法从整个序列的元素中生成单个值。例如,您可以对一组数字使用此方法来查找它们的总和或乘积。
nextPartialResult
闭包按顺序调用,累积值初始化为 initialResult
和序列的每个元素。这个例子展示了如何找到一个数字数组的总和。
let numbers = [1, 2, 3, 4]
let numberSum = numbers.reduce(0, { x, y in
x + y
})
// numberSum == 10
调用numbers.reduce(_:_:)
时,会发生以下步骤:
-
nextPartialResult
闭包使用initialResult
(在本例中为0
)和numbers
的第一个元素调用,返回总和:1
。 -
闭包再次使用前一个调用的返回值和序列的每个元素重复调用。
-
当序列耗尽时,从闭包返回的最后一个值返回给调用者。
如果序列没有元素,则永远不会执行 nextPartialResult
并且 initialResult
是调用 reduce(_:_:)
的结果。
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift DefaultIndices reduce(into:_:)用法及代码示例
- Swift DefaultIndices randomElement()用法及代码示例
- Swift DefaultIndices randomElement(using:)用法及代码示例
- Swift DefaultIndices endIndex用法及代码示例
- Swift DefaultIndices index(_:offsetBy:limitedBy:)用法及代码示例
- Swift DefaultIndices prefix(through:)用法及代码示例
- Swift DefaultIndices min(by:)用法及代码示例
- Swift DefaultIndices allSatisfy(_:)用法及代码示例
- Swift DefaultIndices shuffled()用法及代码示例
- Swift DefaultIndices shuffled(using:)用法及代码示例
- Swift DefaultIndices first用法及代码示例
- Swift DefaultIndices prefix(_:)用法及代码示例
- Swift DefaultIndices lexicographicallyPrecedes(_:)用法及代码示例
- Swift DefaultIndices index(_:offsetBy:)用法及代码示例
- Swift DefaultIndices compactMap(_:)用法及代码示例
- Swift DefaultIndices suffix(_:)用法及代码示例
- Swift DefaultIndices dropLast(_:)用法及代码示例
- Swift DefaultIndices last(where:)用法及代码示例
- Swift DefaultIndices filter(_:)用法及代码示例
- Swift DefaultIndices lastIndex(of:)用法及代码示例
- Swift DefaultIndices contains(_:)用法及代码示例
- Swift DefaultIndices max(by:)用法及代码示例
- Swift DefaultIndices prefix(upTo:)用法及代码示例
- Swift DefaultIndices split(separator:maxSplits:omittingEmptySubsequences:)用法及代码示例
- Swift DefaultIndices contains(where:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 DefaultIndices reduce(_:_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。