Exemple #1
0
 public Store(typ[] buf, Sorter srt)
 {
     init(srt); this.buf = buf; eInx = buf.Length - 1; this.sRsv = 4; this.eRsv = 4;
 }
Exemple #2
0
 public Store(int size, Sorter srt)
 {
     init(4, size, 4, srt);
 }
Exemple #3
0
 public Store(typ[] buf, int sRsv, int eRsv, Sorter srt)
 {
     init(srt); this.buf = buf; eInx = buf.Length - 1; this.sRsv = sRsv; this.eRsv = eRsv;
 }
Exemple #4
0
 public Store(int sRsv, int size, int eRsv, Sorter srt)
 {
     init(sRsv, size, eRsv, srt);
 }