The value to use as the initial accumulating value. 初めから蓄積される値として使われる値。
reduce(into:_:)
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
Parameters パラメータ
initialResult
updateAccumulatingResult
A closure that updates the accumulating value with an element of the sequence. 蓄積される値をこのシーケンスのある要素を使って更新するクロージャ。
Return Value 戻り値
The final accumulated value. If the sequence has no elements, the result is initial
.
最終的に蓄積された値。シーケンスが1つも要素を持たないならば、結果はinitial
です。
Discussion 議論
Use the reduce(into:
method to produce a single value from the elements of an entire sequence. For example, you can use this method on an array of integers to filter adjacent equal entries or count frequencies.
reduce(into:
メソッドを使って、あるシーケンス全体の要素から単一の値を生成してください。例えば、あなたはこのメソッドを整数からなる配列で使うことで、隣接する同等の項目をフィルタしたり頻度を数えたりできます。
This method is preferred over reduce(_:
for efficiency when the result is a copy-on-write type, for example an Array or a Dictionary.
このメソッドは、効率のためにreduce(_:
より好まれます、その結果がコピーオンライト型である場合、例えばArrayまたは辞書に対しては。
The update
closure is called sequentially with a mutable accumulating value initialized to initial
and each element of the sequence. This example shows how to build a dictionary of letter frequencies of a string.
update
クロージャは、initial
に初期化された可変の蓄積値とシーケンスの各要素とともに連続して呼び出されます。この例は、ある文字列の文字頻度の辞書を作り上げる方法を示します。
When letters
is called, the following steps occur:
letters
が呼び出される時、以下の段階が生じます:
The
update
closure is called with the initial accumulating value—Accumulating Result [:]
in this case—and the first character ofletters
, modifying the accumulating value by setting1
for the key"a"
.update
クロージャが、初期蓄積値—この場合ではAccumulating Result [:]
—およびletters
の最初の文字とともに呼び出されて、1
をキー"a"
に対して設定することで蓄積値を修正します。The closure is called again repeatedly with the updated accumulating value and each element of the sequence. クロージャは、更新された蓄積値とシーケンスの各要素とともに繰り返して再び呼び出されます。
When the sequence is exhausted, the accumulating value is returned to the caller. シーケンスが使い尽くされる時、蓄積値が呼出し側へ返されます。
If the sequence has no elements, update
is never executed and initial
is the result of the call to reduce(into:
.
シーケンスが1つも要素を持たないならば、update
は決して実行されません、そしてinitial
はreduce(into:
への呼び出しの結果となります。
Complexity: O(n), where n is the length of the sequence. 計算量:O(n)、ここでnはシーケンスの長さです。