Skip to content

Commit

Permalink
Merge pull request dotnet#8 from liboz/manofstick
Browse files Browse the repository at this point in the history
Seq.zip(3)?
  • Loading branch information
manofstick authored Oct 14, 2016
2 parents 4e31b0b + 3ef9199 commit 15b14a1
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/fsharp/FSharp.Core/seq.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1541,15 +1541,10 @@ namespace Microsoft.FSharp.Collections

[<CompiledName("Zip")>]
let zip source1 source2 =
checkNonNull "source1" source1
checkNonNull "source2" source2
map2 (fun x y -> x,y) source1 source2

[<CompiledName("Zip3")>]
let zip3 source1 source2 source3 =
checkNonNull "source1" source1
checkNonNull "source2" source2
checkNonNull "source3" source3
map2 (fun x (y,z) -> x,y,z) source1 (zip source2 source3)

[<CompiledName("Cast")>]
Expand Down

0 comments on commit 15b14a1

Please sign in to comment.