Ds\Vector::reduce() 函數可以使用回調函數將向量減少到單個值。
用法
public mixed Ds\Vector::reduce( callable $callback [, mixed $initial ] )
Ds\Vector::reduce() 函數可以返回最終回調的值。
例子1
<?php
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
echo("The original vector elements:\n");
print_r($vector);
echo("\n The element after performing operation:\n");
var_dump($vector->reduce(function($carry, $element) {
return $carry + $element + 2;
}));
?>
例子2
<?php
$vector = new \Ds\Vector([10, 20, 30, 40, 50]);
echo("The original vector elements:\n");
print_r($vector);
$func = function($carry, $element) {
return $carry * $element;
};
echo("\n The vector after reducing to single element:\n");
var_dump($vect->reduce($func, 10));
?>
相關用法
- PHP Ds Vector reverse()用法及代碼示例
- PHP Ds Vector remove()用法及代碼示例
- PHP Ds Vector reversed()用法及代碼示例
- PHP Ds Vector rotate()用法及代碼示例
- PHP Ds Vector allocate()用法及代碼示例
- PHP Ds Vector get()用法及代碼示例
- PHP Ds Vector count()用法及代碼示例
- PHP Ds Vector sum()用法及代碼示例
- PHP Ds Vector sorted()用法及代碼示例
- PHP Ds Vector set()用法及代碼示例
- PHP Ds Vector unshift()用法及代碼示例
- PHP Ds Vector last()用法及代碼示例
- PHP Ds Vector push()用法及代碼示例
- PHP Ds Vector first()用法及代碼示例
- PHP Ds Vector jsonSerialize()用法及代碼示例
- PHP Ds Vector insert()用法及代碼示例
- PHP Ds Vector construct()用法及代碼示例
- PHP Ds Vector contains()用法及代碼示例
- PHP Ds Vector toArray()用法及代碼示例
- PHP Ds Vector merge()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Ds Vector reduce() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。