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