FoldBack
Applies a function to each element of the collection, starting from the end, threading an accumulator argument through the computation.
This method is very similar to ReduceBack
, but in this case is considered a initial state
.
Parameters
Returns
Func<T, TState, TState> folder
IEnumerable<T> source
TState state
TState
Usage
Accumulating an individual property of each element through a collection
When the type of elements in your collection are: int
, decimal
, double
, string
or bool
you can also use this function combined with the Operations
described in operations section as folder functions.
Using an operation as a folder
Last updated
Was this helpful?