Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Combines the three lists into a list of triples. The lists must have equal lengths.
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
List.zip3 : 'T1 list -> 'T2 list -> 'T3 list -> ('T1 * 'T2 * 'T3) list
// Usage:
List.zip3 list1 list2 list3
Parameters
list1
Type: 'T1listThe first input list.
list2
Type: 'T2listThe second input list.
list3
Type: 'T3listThe third input list.
Return Value
A single list containing triples of matching elements from the input lists.
Remarks
This function is named Zip3 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.zip3.
let list1 = [ 1; 2; 3 ]
let list2 = [ -1; -2; -3 ]
let list3 = [ 0; 0; 0]
let listZip3 = List.zip3 list1 list2 list3
printfn "%A" listZip3
Output
[(1, -1, 0); (2, -2, 0); (3, -3, 0)]
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