public LongStream(LongStream longstream) { this.ostream = new OctetStream (longstream.ostream); this.offsets = longstream.offsets; this.count = longstream.count; this.ctx = new OctetStream.Context (); }
public CompressedInvertedIndex() { this.lstream = new LongStream(); this.offsets = new List<int> (); this.lengths = new List<int> (); this.numberOfItems = 0; }
public SortedLongStream() { this.lstream = new LongStream(); }