A stream and random access of positive long values.
Inheritance: ILoadSave
Ejemplo n.º 1
0
 public LongStream(LongStream longstream)
 {
     this.ostream = new OctetStream (longstream.ostream);
     this.offsets = longstream.offsets;
     this.count = longstream.count;
     this.ctx = new OctetStream.Context ();
 }
Ejemplo n.º 2
0
 public CompressedInvertedIndex()
 {
     this.lstream = new LongStream();
     this.offsets = new List<int> ();
     this.lengths = new List<int> ();
     this.numberOfItems = 0;
 }
Ejemplo n.º 3
0
 public SortedLongStream()
 {
     this.lstream = new LongStream();
 }