public Store(typ[] buf, Sorter srt) { init(srt); this.buf = buf; eInx = buf.Length - 1; this.sRsv = 4; this.eRsv = 4; }
public Store(int size, Sorter srt) { init(4, size, 4, srt); }
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; }
public Store(int sRsv, int size, int eRsv, Sorter srt) { init(sRsv, size, eRsv, srt); }