Unroll.jl icon indicating copy to clipboard operation
Unroll.jl copied to clipboard

Unroll with zip

Open ahwillia opened this issue 8 years ago • 1 comments

How difficult would it be to add support for the following? I think this would be useful:

x = rand(10)
y = rand(10)
for (xi,yi) in zip(x,y)
    # do something
    xi+yi
end

ahwillia avatar Jun 11 '16 23:06 ahwillia