|
Ds\Sequence::reduceReduces the sequence to a single value using a callback function 説明
abstract public mixed Ds\Sequence::reduce(callable
$callback , mixed $initial = ?)Reduces the sequence to a single value using a callback function. パラメータ
戻り値The return value of the final callback. 例例1 Ds\Sequence::reduce with initial value example
上の例の出力は、 たとえば以下のようになります。 int(30) 例2 Ds\Sequence::reduce without an initial value example
上の例の出力は、 たとえば以下のようになります。 int(21) |