Does anybody know whether NSFastEnumeration
is really faster (as in run-time performance) than using NSEnumerator
or (for arrays) using an integer counter and loop through the elements?
If it is indeed faster, how does it achieve that speed?
Or perhaps the "fast" actually refers to faster in writing the iteration code?
Thanks in advance.