natix.CompactDS.Plain64InvertedIndex.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.table.Count);
            for (int i = 0; i < this.Count; ++i) {
                Output.Write (this[i].Count);
                PrimitiveIO<long>.SaveVector (Output, this[i]);
            }
        }