Observable.Scan Method
Applies an accumulator function over an observable sequence and returns each intermediate result.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
Scan<TSource>(IObservable<TSource>, Func<TSource, TSource, TSource>) | Applies an accumulator function over an observable sequence and returns each intermediate result with the specified source and accumulator. |
|
Scan<TSource, TAccumulate>(IObservable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>) | Applies an accumulator function over an observable sequence and returns each intermediate result with the specified source, seed and accumulator. |