I know that deleting elements and iterating over an object at the same time is against good programming practices (regardless, whether we use Julia or other language). I learnt my lesson the hard way. Regardless, I am really interested in understanding what actually happened (underneath?). Let me start with two minimal examples. First one works as expected:
some_array = OrderedSet{}()
for i in 1:4
push!(some_array, i)
end
for (i, o) in enumerate(some_array)
delete!(some_array, o)
println(o)
end
println(some_array)
No funny behaviour observed here. All the elements get deleted.
Then I make a small “meaningless” change:
some_array = OrderedSet{}()
for i in 1:4
push!(some_array, i)
end
for (i, o) in enumerate(some_array)
delete!(some_array, o)
for j in some_array
nothing
end
println(o)
end
println(some_array)
Now, for some reason every second element gets omitted as if the algorithm lost track of the next one, while keeping track of the element id it should point to. Can someone explain what exactly happened here and why? Thanks in advance!
Also, I wonder if there are some good practices you could suggest in similar situations. Obviously my true code was much more complex, but general suggestions are welcome. In my case moving to a “while” loop solved the problem.