natix.CompactDS.Plain64PairInvertedIndex.Load C# (CSharp) Method

Load() public method

public Load ( BinaryReader Input ) : void
Input System.IO.BinaryReader
return void
        public void Load(BinaryReader Input)
        {
            this.numberOfItems = Input.ReadInt32 ();
            var sigma = Input.ReadInt32 ();
            CompositeIO<Node>.LoadVector (Input, sigma, this.postinglist);
        }