DataFramesMeta.jl
DataFramesMeta.jl copied to clipboard
Problem with eachrow and eachrow! + break/continue
Here is a MWE:
julia> df = DataFrame(a=1:2, b=2:3);
julia> @eachrow! df begin
for i in 1:1
continue
println("and this is super bad as inner loop is affected")
end
continue
println("should not happen")
end;
and this is super bad as inner loop is affected
should not happen
and this is super bad as inner loop is affected
should not happen