array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'ds-deque.map.php', 1 => 'Ds\\Deque::map', 2 => 'Returns the result of applying a callback to each value', ), 'up' => array ( 0 => 'class.ds-deque.php', 1 => 'Ds\\Deque', ), 'prev' => array ( 0 => 'ds-deque.last.php', 1 => 'Ds\\Deque::last', ), 'next' => array ( 0 => 'ds-deque.merge.php', 1 => 'Ds\\Deque::merge', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ds/ds/deque/map.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Ds\Deque::map

(PECL ds >= 1.0.0)

Ds\Deque::mapReturns the result of applying a callback to each value

Beschreibung

public Ds\Deque::map(callable $callback): Ds\Deque

Returns the result of applying a callback function to each value in the deque.

Parameter-Liste

callback

callback(mixed $value): mixed

A callable to apply to each value in the deque.

The callable should return what the new value will be in the new deque.

Rückgabewerte

The result of applying a callback to each value in the deque.

Hinweis:

The values of the current instance won't be affected.

Beispiele

Beispiel #1 Ds\Deque::map() example

<?php
$deque
= new \Ds\Deque([1, 2, 3]);

print_r($deque->map(function($value) { return $value * 2; }));
print_r($deque);
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Ds\Deque Object
(
    [0] => 2
    [1] => 4
    [2] => 6
)
Ds\Deque Object
(
    [0] => 1
    [1] => 2
    [2] => 3
)