Replies: 2 comments 1 reply
-
It will be a breaking change, we wont be making it |
Beta Was this translation helpful? Give feedback.
0 replies
-
Another option, @Xyncgas, depending on what you're doing, is to use let zs = (xs, ys) ||> Seq.zip |> Seq.map (fun (x, y) -> x + y) let zs = (xs, ys) ||> Seq.map2 (fun x y -> x + y) And it's easy enough to shadow the built-in module Seq =
let zip xs ys = (xs, ys) ||> Seq.map2 (fun x y -> struct (x, y)) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There should be no reason that after getting next item from the iterator to make one extra allocation to store the result, it should just give the result directly to consumer
make vfst vsnd to work with ValueTuple too
Beta Was this translation helpful? Give feedback.
All reactions