List.concat<'T> Function (F#)
Visual Studio 2012
Returns a new list that contains the elements of each list in order.
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature: List.concat : seq<'T list> -> 'T list // Usage: List.concat lists
The following code example illustrates that List.append is used to join two lists together; and List.concat is used to join any number of lists.
let list1to10 = List.append [1; 2; 3] [4; 5; 6; 7; 8; 9; 10] let listResult = List.concat [ [1; 2; 3]; [4; 5; 6]; [7; 8; 9] ] List.iter (fun elem -> printf "%d " elem) list1to10 printfn "" List.iter (fun elem -> printf "%d " elem) listResult
Output
1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9