List.zip3<'T1,'T2,'T3> Function (F#)
Visual Studio 2012
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