예제 #1
0
            public bool MoveNext()
            {
                KList <T> localList = list;

                if ((uint)index < (uint)localList._size)
                {
                    current = localList._items[index];
                    index++;
                    return(true);
                }
                return(MoveNextRare());
            }
예제 #2
0
 internal Enumerator(KList <T> list)
 {
     this.list = list;
     index     = 0;
     current   = default(T);
 }