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