Ds\Map::reduce
(PECL ds >= 1.0.0)
Ds\Map::reduce — Reduces the map to a single value using a callback function.
Описание
Reduces the map to a single value using a callback function.
Список параметров
-
callback
-
-
carry
-
The return value of the previous callback, or
initial
if it's the first iteration. -
key
-
The key of the current 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.
Примеры
Пример #1 Ds\Map::reduce() with initial value example
<?php
$map = new \Ds\Map(["a" => 1, "b" => 2, "c" => 3]);
$callback = function($carry, $key, $value) {
return $carry * $value;
};
var_dump($map->reduce($callback, 5));
// Iterations:
//
// $carry = $initial = 5
//
// $carry = $carry * 1 = 5
// $carry = $carry * 2 = 10
// $carry = $carry * 3 = 30
?>
Результатом выполнения данного примера будет что-то подобное:
int(30)
Пример #2 Ds\Map::reduce() without an initial value example
<?php
$map = new \Ds\Map(["a" => 1, "b" => 2, "c" => 3]);
var_dump($map->reduce(function($carry, $key, $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 Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения, относящиеся к переменным и типам
- Data Structures
- Ds\Map::allocate
- Ds\Map::apply
- Ds\Map::capacity
- Ds\Map::clear
- Ds\Map::__construct
- Ds\Map::copy
- Ds\Map::count
- Ds\Map::diff
- Ds\Map::filter
- Ds\Map::first
- Ds\Map::get
- Ds\Map::hasKey
- Ds\Map::hasValue
- Ds\Map::intersect
- Ds\Map::isEmpty
- Ds\Map::jsonSerialize
- Ds\Map::keys
- Ds\Map::ksort
- Ds\Map::ksorted
- Ds\Map::last
- Ds\Map::map
- Ds\Map::merge
- Ds\Map::pairs
- Ds\Map::put
- Ds\Map::putAll
- Ds\Map::reduce
- Ds\Map::remove
- Ds\Map::reverse
- Ds\Map::reversed
- Ds\Map::skip
- Ds\Map::slice
- Ds\Map::sort
- Ds\Map::sorted
- Ds\Map::sum
- Ds\Map::toArray
- Ds\Map::union
- Ds\Map::values
- Ds\Map::xor
Коментарии
404 Not Found