(Não há informação de versão disponível, talvez apenas no SVN)
Ds\Map::sum — Returns the sum of all values in the map.
Returns the sum of all values in the map.
Nota:
Arrays and objects are considered equal to zero when calculating the sum.
Esta função não possui parâmetros.
The sum of all the values in the map as either a float or int depending on the values in the map.
Exemplo #1 Ds\Map::sum() integer example
<?php
$map = new \Ds\Map(["a" => 1, "b" => 2, "c" => 3]);
var_dump($map->sum());
?>
O exemplo acima irá imprimir algo similar à:
int(6)
Exemplo #2 Ds\Map::sum() float example
<?php
$map = new \Ds\Map(["a" => 1, "b" => 2.5, "c" => 3]);
var_dump($map->sum());
?>
O exemplo acima irá imprimir algo similar à:
float(6.5)