List.append<'T> Function (F#)
Visual Studio 2012
Returns a new list that contains the elements of the first list followed by elements of the second.
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature: List.append : 'T list -> 'T list -> 'T list // Usage: List.append list1 list2
The following code example illustrates the use of List.append to join two lists together. Use List.concat to join more than two 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