Search Results

19
votes

Why use iterators instead of array indices?

Imagine some_vector is implemented with a linked-list. Then requesting an item in the i-th place requires i operations to be done to traverse the list of nodes. Now, if you use iterator, generally …
10
votes

How to check for equals? (0 == i) or (i == 0)

If you have a list of ifs that can't be represented well by a switch (because of a language limitation, maybe), then I'd rather see: if (InterstingValue1 == foo) { } else if (Inters …