|
|
|
|
|
by chrisseaton
2679 days ago
|
|
> I'm curious how often you find yourself dealing with loops that run millions of times? I think the majority of loops I've written don't need to deal with millions of iterations It's trivial to come up with 80s-level counter-examples to this. A megapixel image, for example, is tiny. |
|
Iterating over a megapixel image isn't a common scenario unless you're processing a lot of large images. Obviously you should optimize hot code paths.