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