Example #1
0
 public ImmutableCompactList(ImmutableCompactList <T> other)
 {
     this.data = other.data;
 }
Example #2
0
 internal Enumerator(ImmutableCompactList <T> compactList)
 {
     this.compactList = compactList;
     this.index       = -1;
 }