array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'ds-set.map.php', 1 => 'Ds\\Set::map', 2 => 'Returns the result of applying a callback to each value', ), 'up' => array ( 0 => 'class.ds-set.php', 1 => 'Ds\\Set', ), 'prev' => array ( 0 => 'ds-set.last.php', 1 => 'Ds\\Set::last', ), 'next' => array ( 0 => 'ds-set.merge.php', 1 => 'Ds\\Set::merge', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ds/ds/set/map.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PECL ds >= 1.2.7)
Ds\Set::map — Returns the result of applying a callback to each value
Returns the result of applying a callback
function to
each value in the set.
callback
The callback to apply to each value in the set must have the following signature:
Returns a new Ds\Set instance where each value
is the result of applying the callback
to each value
of the set.
Beispiel #1 Ds\Set::map() example
<?php
$set = new \Ds\Set([1, 2, 3]);
var_dump($set->map(function($value) { return $value * 2; }));
var_dump($set);
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
object(Ds\Set)#3 (3) { [0]=> int(2) [1]=> int(4) [2]=> int(6) } object(Ds\Set)#1 (3) { [0]=> int(1) [1]=> int(2) [2]=> int(3) }