A stream and random access of positive long values.
상속: 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();
 }