This code works, but my iterator is part of a large array and I am looking for any simplest way to scroll tables rows than with hat like below? (for any event rows to move to end )
julia> lista
5×1 Array{Int64,2}:
1
2
3
4
5
if i==2 lista=vcat(lista[lista[:,1].!=i,:],lista[lista[:,1].==i,:]); end
println(i,lista)
1[1; 3; 4; 5; 2]
3[1; 3; 4; 5; 2]
4[1; 3; 4; 5; 2]
5[1; 3; 4; 5; 2]
2[1; 3; 4; 5; 2]