實例方法
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 UnsafeMutableBufferPointer reduce(_:_:)用法及代碼示例
- Swift UnsafeMutableBufferPointer reversed()用法及代碼示例
- Swift UnsafeMutableBufferPointer reverse()用法及代碼示例
- Swift UnsafeMutableBufferPointer randomElement(using:)用法及代碼示例
- Swift UnsafeMutableBufferPointer randomElement()用法及代碼示例
- Swift UnsafeMutableBufferPointer allocate(capacity:)用法及代碼示例
- Swift UnsafeMutableBufferPointer prefix(through:)用法及代碼示例
- Swift UnsafeMutableBufferPointer map(_:)用法及代碼示例
- Swift UnsafeMutableBufferPointer filter(_:)用法及代碼示例
- Swift UnsafeMutableBufferPointer elementsEqual(_:)用法及代碼示例
- Swift UnsafeMutableBufferPointer min(by:)用法及代碼示例
- Swift UnsafeMutableBufferPointer indices用法及代碼示例
- Swift UnsafeMutableBufferPointer enumerated()用法及代碼示例
- Swift UnsafeMutableBufferPointer shuffled()用法及代碼示例
- Swift UnsafeMutableBufferPointer shuffle(using:)用法及代碼示例
- Swift UnsafeMutableBufferPointer contains(_:)用法及代碼示例
- Swift UnsafeMutableBufferPointer compactMap(_:)用法及代碼示例
- Swift UnsafeMutableBufferPointer split(maxSplits:omittingEmptySubsequences:whereSeparator:)用法及代碼示例
- Swift UnsafeMutableBufferPointer firstIndex(where:)用法及代碼示例
- Swift UnsafeMutableBufferPointer isEmpty用法及代碼示例
- Swift UnsafeMutableBufferPointer init(rebasing:)用法及代碼示例
- Swift UnsafeMutableBufferPointer partition(by:)用法及代碼示例
- Swift UnsafeMutableBufferPointer firstIndex(of:)用法及代碼示例
- Swift UnsafeMutableBufferPointer max()用法及代碼示例
- Swift UnsafeMutableBufferPointer index(_:offsetBy:limitedBy:)用法及代碼示例
注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 UnsafeMutableBufferPointer reduce(into:_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。