|
Ds\Set::mapReturns the result of applying a callback to each value 説明
public Ds\Set Ds\Set::map(callable
$callback)
Returns the result of applying a パラメータ
戻り値
Returns a new Ds\Set instance where each value
is the result of applying the 例例1 Ds\Set::map example 上の例の出力は、 たとえば以下のようになります。
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)
}
|