We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 698b182 + f6b89b1 commit e8cba06Copy full SHA for e8cba06
src/operators/DOCUMENTATION.md
@@ -20,6 +20,15 @@ These methods called by doing: `observableInstance$.<pluginFunction>`
20
`.first([<callback>])`
21
22
- this is an alias for `.take(1[, <callback>])`
23
+
24
+`.scan(scanCallback[, startValue])`
25
26
+ - will go through each value in array and will increase the value based off the return of the scanCallback
27
+ - there is an optional `startValue` which by default is 0
28
29
+`.reduce(scanCallback[, startValue])`
30
31
+ - does the same as `.scan` but only returns when the chained observable is complete and not on every new value
32
33
`.toPromise()`
34
0 commit comments