Ds\Deque::sum

(PECL ds >= 1.0.0)

Ds\Deque::sumReturns the sum of all values in the deque.

Описание

public number Ds\Deque::sum ( void )

Returns the sum of all values in the deque.

Замечание:

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

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

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

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

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

Примеры

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

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

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

int(6)

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

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

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

float(6.5)

Коментарии

404 Not Found

404 Not Found


nginx

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