Ds\Vector::sum
(PECL ds >= 1.0.0)
Ds\Vector::sum — Returns the sum of all values in the vector.
Описание
Returns the sum of all values in the vector.
Замечание:
Arrays and objects are considered equal to zero when calculating the sum.
Список параметров
У этой функции нет параметров.
Возвращаемые значения
The sum of all the values in the vector as either a float or int depending on the values in the vector.
Примеры
Пример #1 Ds\Vector::sum() integer example
<?php
$vector = new \Ds\Vector([1, 2, 3]);
var_dump($vector->sum());
?>
Результатом выполнения данного примера будет что-то подобное:
int(6)
Пример #2 Ds\Vector::sum() float example
<?php
$vector = new \Ds\Vector([1, 2.5, 3]);
var_dump($vector->sum());
?>
Результатом выполнения данного примера будет что-то подобное:
float(6.5)
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения, относящиеся к переменным и типам
- Data Structures
- Ds\Vector::allocate
- Ds\Vector::apply
- Ds\Vector::capacity
- Ds\Vector::clear
- Ds\Vector::__construct
- Ds\Vector::contains
- Ds\Vector::copy
- Ds\Vector::count
- Ds\Vector::filter
- Ds\Vector::find
- Ds\Vector::first
- Ds\Vector::get
- Ds\Vector::insert
- Ds\Vector::isEmpty
- Ds\Vector::join
- Ds\Vector::jsonSerialize
- Ds\Vector::last
- Ds\Vector::map
- Ds\Vector::merge
- Ds\Vector::pop
- Ds\Vector::push
- Ds\Vector::reduce
- Ds\Vector::remove
- Ds\Vector::reverse
- Ds\Vector::reversed
- Ds\Vector::rotate
- Ds\Vector::set
- Ds\Vector::shift
- Ds\Vector::slice
- Ds\Vector::sort
- Ds\Vector::sorted
- Ds\Vector::sum
- Ds\Vector::toArray
- Ds\Vector::unshift
Коментарии
404 Not Found