natix.CompactDS.CompressedInvertedIndex.Save C# (CSharp) Method

Save() public method

public Save ( BinaryWriter Output ) : void
Output System.IO.BinaryWriter
return void
        public void Save(BinaryWriter Output)
        {
            Output.Write (this.numberOfItems);
            Output.Write (this.offsets.Count);
            PrimitiveIO<int>.SaveVector (Output, this.offsets);
            PrimitiveIO<int>.SaveVector (Output, this.lengths);
            this.lstream.Save (Output);
        }