natix.CompactDS.Plain32InvertedIndex.AddItem C# (CSharp) Method

AddItem() public method

public AddItem ( int symbol, long item ) : void
symbol int
item long
return void
        public void AddItem(int symbol, long item)
        {
            if (this.table [symbol] == null) {
                this.table [symbol] = new List<int> ();
            }
            this.table [symbol].Add ((int)item);
            ++this.numberOfItems;
        }