List.collect<'T,'U> Function (F#)
Visual Studio 2012
For each element of the list, applies the given function. Concatenates all the results and returns the combined list.
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
List.collect : ('T -> 'U list) -> 'T list -> 'U list
// Usage:
List.collect mapping list