Ds\Vector::sum

(PECL ds >= 1.0.0)

Ds\Vector::sumReturns the sum of all values in the vector.

Описание

public number Ds\Vector::sum ( void )

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([123]);
var_dump($vector->sum());
?>

Результатом выполнения данного примера будет что-то подобное:

int(6)

Пример #2 Ds\Vector::sum() float example

<?php
$vector 
= new \Ds\Vector([12.53]);
var_dump($vector->sum());
?>

Результатом выполнения данного примера будет что-то подобное:

float(6.5)

Коментарии

404 Not Found

404 Not Found


nginx

    Поддержать сайт на родительском проекте КГБ