A stream and random access of positive long values.
Inheritance: ILoadSave
示例#1
0
文件: LongStream.cs 项目: sadit/natix
 public LongStream(LongStream longstream)
 {
     this.ostream = new OctetStream (longstream.ostream);
     this.offsets = longstream.offsets;
     this.count = longstream.count;
     this.ctx = new OctetStream.Context ();
 }
示例#2
0
 public CompressedInvertedIndex()
 {
     this.lstream = new LongStream();
     this.offsets = new List<int> ();
     this.lengths = new List<int> ();
     this.numberOfItems = 0;
 }
示例#3
0
 public SortedLongStream()
 {
     this.lstream = new LongStream();
 }