Ds\Vector::map
(PECL ds >= 1.0.0)
Ds\Vector::map — Returns the result of applying a callback to each value.
Описание
Returns the result of applying a callback
function to
each value in the vector.
Список параметров
-
callback
-
A callable to apply to each value in the vector.
The callable should return what the new value will be in the new vector.
Возвращаемые значения
The result of applying a callback
to each value in
the vector.
Замечание:
The values of the current instance won't be affected.
Примеры
Пример #1 Ds\Vector::map() example
<?php
$vector = new \Ds\Vector([1, 2, 3]);
print_r($vector->map(function($value) { return $value * 2; }));
print_r($vector);
?>
Результатом выполнения данного примера будет что-то подобное:
Ds\Vector Object ( [0] => 2 [1] => 4 [2] => 6 ) Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 )
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения, относящиеся к переменным и типам
- Data Structures
- Ds\Vector::allocate
- Ds\Vector::apply
- Ds\Vector::capacity
- Ds\Vector::clear
- Ds\Vector::__construct
- Ds\Vector::contains
- Ds\Vector::copy
- Ds\Vector::count
- Ds\Vector::filter
- Ds\Vector::find
- Ds\Vector::first
- Ds\Vector::get
- Ds\Vector::insert
- Ds\Vector::isEmpty
- Ds\Vector::join
- Ds\Vector::jsonSerialize
- Ds\Vector::last
- Ds\Vector::map
- Ds\Vector::merge
- Ds\Vector::pop
- Ds\Vector::push
- Ds\Vector::reduce
- Ds\Vector::remove
- Ds\Vector::reverse
- Ds\Vector::reversed
- Ds\Vector::rotate
- Ds\Vector::set
- Ds\Vector::shift
- Ds\Vector::slice
- Ds\Vector::sort
- Ds\Vector::sorted
- Ds\Vector::sum
- Ds\Vector::toArray
- Ds\Vector::unshift
Коментарии
404 Not Found