List.reduceBack<'T> Function (F#)
Visual Studio 2010
Applies a function to each element of the collection, threading an accumulator argument through the computation. If the input function is f and the elements are i0...iN, then this function computes f i0 (...(f iN-1 iN)).
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
List.reduceBack : ('T -> 'T -> 'T) -> 'T list -> 'T
// Usage:
List.reduceBack reduction list