natix.CompactDS.Plain64InvertedIndex.this C# (CSharp) Method

this() public method

public this ( int symbol ) : List
symbol int
return List
        public List<long> this[int symbol]
        {
            get {
                if (this.table [symbol] == null) {
                    return EMPTY;
                }
                return this.table [symbol];
            }
        }