public bool MoveNext() { FastCollection <T> list = this.list; if (index < list.size) { current = list.items[index]; index++; return(true); } return(MoveNextRare()); }
internal Enumerator(FastCollection <T> list) { this.list = list; index = 0; current = default(T); }