sum
Computes the sum of a sequence of values that are obtained by invoking an optional transform function on each element of the input sequence, else if not specified computes the sum on each item in the sequence.
Arguments
[keySelector]
(Scheduler
): A transform function to apply to each element. The callback is called with the following information:the value of the element
the index of the element
the Observable object being subscribed
Returns
(Observable
): An observable sequence containing a single element with the sum of the values in the source sequence.
Example
Without a selector
With a selector
Last updated
Was this helpful?