List.append<'T> Function (F#)

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

Parameters

  • list1
    Type: 'Tlist

    The first input list.

  • list2
    Type: 'Tlist

    The second input list.

Return Value

The resulting list.

Remarks

This function is named Append in compiled assemblies. If you are accessing the function from a language other than F#, or through reflection, use this name.

Example

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

Platforms

Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2

Version Information

F# Core Library Versions

Supported in: 2.0, 4.0, Portable

See Also

Reference

Collections.List Module (F#)

Microsoft.FSharp.Collections Namespace (F#)