Ds\Deque::reduce

(PECL ds >= 1.0.0)

Ds\Deque::reduceReduces the deque to a single value using a callback function

说明

public Ds\Deque::reduce ( callable $callback [, mixed $initial ] ) : mixed

Reduces the deque to a single value using a callback function.

参数

callback
callback ( mixed $carry , mixed $value ) : mixed
carry

The return value of the previous callback, or initial if it's the first iteration.

value

The value of the current iteration.

initial

The initial value of the carry value. Can be NULL.

返回值

The return value of the final callback.

范例

Example #1 Ds\Deque::reduce() with initial value example

<?php
$deque 
= new \Ds\Deque([123]);

$callback = function($carry$value) {
    return 
$carry $value;
};

var_dump($deque->reduce($callback5));

// Iterations:
//
// $carry = $initial = 5
//
// $carry = $carry * 1 =  5
// $carry = $carry * 2 = 10
// $carry = $carry * 3 = 30
?>

以上例程的输出类似于:

int(30)

Example #2 Ds\Deque::reduce() without an initial value example

<?php
$deque 
= new \Ds\Deque([123]);

var_dump($deque->reduce(function($carry$value) {
    return 
$carry $value 5;
}));

// Iterations:
//
// $carry = $initial = null
//
// $carry = $carry + 1 + 5 =  6
// $carry = $carry + 2 + 5 = 13
// $carry = $carry + 3 + 5 = 21
?>

以上例程的输出类似于:

int(21)
相关文章
php deque updates all values by applying a callback function to each valuephp deque creates a new deque using a callable to determine which values to includephp deque returns the result of applying a callback to each valuephp deque reduces the deque to a single value using a callback functionphp map updates all values by applying a callback function to each valuephp map returns the result of applying a callback to each valuephp map reduces the map to a single value using a callback functionphp sequence updates all values by applying a callback function to each valuephp sequence reduces the sequence to a single value using a callback functionphp set reduces the set to a single value using a callback functionphp vector updates all values by applying a callback function to each valuephp vector reduces the vector to a single value using a callback functionphp fdf 函数 call a user defined function for each document valuephp 多字节字符串 函数 perform a regular expression search and replace with multibyte support using a callbackphp oci8 函数 register a user defined callback function for oracle database tafphp sqlite 函数 executes a query and returns either an array for one single column or the value of the first rowphp swoole 函数 add callback function to the next event loopphp swoole mysql register callback function based on event name.php swoole server trigger a callback function after a period of time.php swoole server register a callback function by event name.
关注编程学问公众号