You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 20, 2018. It is now read-only.
* Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
143
-
* For aggregation behavior with incremental intermediate results, see Observable.scan.
144
-
* @param {Function} accumulator An accumulator function to be invoked on each element.
145
-
* @param {Any} [seed] The initial accumulator value.
146
-
* @returns {Observable} An observable sequence containing a single element with the final accumulator value.
147
-
*/
223
+
* Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
224
+
* For aggregation behavior with incremental intermediate results, see Observable.scan.
225
+
* @param {Function} accumulator An accumulator function to be invoked on each element.
226
+
* @param {Any} [seed] The initial accumulator value.
227
+
* @returns {Observable} An observable sequence containing a single element with the final accumulator value.
0 commit comments