Ds\Sequence::reduce() 函数可以使用回调函数将序列减少到单个值。
用法
public abstract mixed Ds\Sequence::reduce( callable $callback [, mixed $initial ] )
Ds\Sequence::reduce() 函数可以返回最终回调的值。
例子1
<?php
$seq = new \Ds\Vector([1, 2, 3]);
$callback = function($carry, $value) {
return $carry * $value;
};
var_dump($seq->reduce($callback, 5));
?>
例子2
<?php
$seq = new \Ds\Vector([1, 2, 3]);
var_dump($seq->reduce(function($carry, $value) {
return $carry + $value + 5;
}));
?>
相关用法
- PHP Ds Sequence remove()用法及代码示例
- PHP Ds Sequence reverse()用法及代码示例
- PHP Ds Sequence reversed()用法及代码示例
- PHP Ds Sequence rotate()用法及代码示例
- PHP Ds Sequence capacity()用法及代码示例
- PHP Ds Sequence sort()用法及代码示例
- PHP Ds Sequence insert()用法及代码示例
- PHP Ds Sequence slice()用法及代码示例
- PHP Ds Sequence sorted()用法及代码示例
- PHP Ds Sequence shift()用法及代码示例
- PHP Ds Sequence get()用法及代码示例
- PHP Ds Sequence join()用法及代码示例
- PHP Ds Sequence pop()用法及代码示例
- PHP Ds Sequence contains()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds Sequence reduce() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。