Ds\Sequence::sum

(PECL ds >= 1.0.0)

Ds\Sequence::sumReturns the sum of all values in the sequence.

Описание

abstract public number Ds\Sequence::sum ( void )

Returns the sum of all values in the sequence.

Замечание:

Arrays and objects are considered equal to zero when calculating the sum.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

The sum of all the values in the sequence as either a float or int depending on the values in the sequence.

Примеры

Пример #1 Ds\Sequence::sum() integer example

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

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

int(6)

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

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

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

float(6.5)

Коментарии

404 Not Found

404 Not Found


nginx

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