InterviewSolution
Saved Bookmarks
| 1. |
Define Fast Enumeration? |
|
Answer» FAST enumeration is a language feature that allows you to enumerate over the contents of a collection. (Your code will also run FASTER because the internal implementation reduces MESSAGE SEND overhead and increases PIPE lining potential.) Fast enumeration is a language feature that allows you to enumerate over the contents of a collection. (Your code will also run faster because the internal implementation reduces message send overhead and increases pipe lining potential.) |
|