Array.zip<'T1,'T2> Function (F#)
Visual Studio 2012
Combines the two arrays into an array of tuples with two elements. The two arrays must have equal lengths, otherwise ArgumentException is raised.
Namespace/Module Path: Microsoft.FSharp.Collections.Array
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
Array.zip : 'T1 [] -> 'T2 [] -> ('T1 * 'T2) []
// Usage:
Array.zip array1 array2