Crates a new sequence which contains all intermediate results of successive applications of a function op to subsequent elements right to left.
If this sequence represents an infinite set or series, this will never return!
Namespace: SequencesAssembly: Sequences (in Sequences.dll) Version: 1.0.1.0 (1.0.1)
Syntax
Parameters
- seed
- Type: T
The initial value for the scan.
- op
- Type: System Func T, T, T
A function that will apply operations to successive values in the sequence against previous accumulated results.
Return Value
Type: ISequence TA new sequence which contains all intermediate results of successive applications of a function op to subsequent elements left to right.
See Also