source link. The question is that I don't understand what is going in the for loop here.
for(long n = 0; n != 1'000'000; ++n) l.push(n);
Is n != 1'000'000 equivalent to n != 1000000?
source link. The question is that I don't understand what is going in the for loop here.
for(long n = 0; n != 1'000'000; ++n) l.push(n);
Is n != 1'000'000 equivalent to n != 1000000?