Esempio n. 1
0
 internal Enumerator(FastList <T> list)
 {
     this.list = list;
     index     = 0;
     current   = default(T);
 }
Esempio n. 2
0
 public FastListStruct([NotNull] FastList <T> fastList)
 {
     Count = fastList.Count;
     Items = fastList.Items;
 }