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); ?>

Ds\Set::map

(PECL ds >= 1.2.7)

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

Beschreibung

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

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

Parameter-Liste

callback

The callback to apply to each value in the set must have the following signature:

callback(mixed $value): mixed

Rückgabewerte

Returns a new Ds\Set instance where each value is the result of applying the callback to each value of the set.

Beispiele

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)
}