The value to use as the initial accumulating value. initial
is passed to next
the first time the closure is executed.
最初から蓄積されている値として使われる値。initial
はnext
に、クロージャが実行される最初の時に渡されます。
reduce(_:_:)
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
initialResult
Result Partial Result Result Partial Result nextPartialResult
A closure that combines an accumulating value and an element of the sequence into a new accumulating value, to be used in the next call of the
next
closure or returned to the caller. あるクロージャ、それは蓄積値をシーケンスのいち要素と結合して新しい蓄積値とし、Partial Result next
クロージャの次の呼び出しにおいて使われるか、呼び出し側に返されるようにします。Partial Result
Return Value 戻り値
The final accumulated value. If the sequence has no elements, the result is initial
.
最終的に蓄積された値。シーケンスが1つも要素を持たないならば、結果はinitial
です。
Discussion 解説
Use the reduce(_:
method to produce a single value from the elements of an entire sequence. For example, you can use this method on an array of numbers to find their sum or product.
reduce(_:
メソッドを使って、あるシーケンス全体の要素それらからある単一の値を生成してください。例えば、あなたはこのメソッドを数値いくつかからなる配列で使うことで、それらの和または積を見つけます。
The next
closure is called sequentially with an accumulating value initialized to initial
and each element of the sequence. This example shows how to find the sum of an array of numbers.
next
クロージャは、initial
へと初期化された蓄積値とシーケンスの各要素とともに連続して呼び出されます。この例は、どのように数からなる配列の合計を見出すかを示します。
When numbers
is called, the following steps occur:
numbers
が呼び出される時、以下の段階が生じます:
The
next
closure is called withPartial Result initial
—Result 0
in this case—and the first element ofnumbers
, returning the sum:1
.next
クロージャが、Partial Result initial
—この場合ではResult 0
—そしてnumbers
の最初の要素とともに呼び出されて、その合計:1
を返します。The closure is called again repeatedly with the previous call’s return value and each element of the sequence. クロージャは、前の呼び出しの戻り値とシーケンスの各要素とともに繰り返して再び呼び出されます。
When the sequence is exhausted, the last value returned from the closure is returned to the caller. シーケンスが使い尽くされる時、クロージャから返される最後の値が呼び出し側へ返されます。
If the sequence has no elements, next
is never executed and initial
is the result of the call to reduce(_:
.
シーケンスが1つも要素を持たないならば、next
は決して実行されません、そしてinitial
はreduce(_:
への呼び出しの結果となります。
Complexity: O(n), where n is the length of the sequence. 計算量:O(n)、ここでnはシーケンスの長さです。