Ejemplo n.º 1
0
 public void Get(int v, int n, GapList <T> destination)
 {
     destination.MakeSpace(n);
     this.Get(v, n, destination.items, destination.gap);
     destination.Sync(destination.gap, n);
     destination.gap    += n;
     destination.length += n;
 }