(PECL ds >= 1.0.0)
Ds\Vector::apply — 通过对每个值应用回调函数来更新所有值
不返回任何值。
示例 #1 Ds\Vector::apply() 示例
<?php
$vector = new \Ds\Vector([1, 2, 3]);
$vector->apply(function($value) { return $value * 2; });
print_r($vector);
?>
以上示例的输出类似于
Ds\Vector Object ( [0] => 2 [1] => 4 [2] => 6 )