natix.CompactDS.SortedList.Rank1 C# (CSharp) Method

Rank1() public method

public Rank1 ( int pos ) : int
pos int
return int
        public override int Rank1(int pos)
        {
            if (pos < 0 || this.sortedList.Count < 1) {
                return 0;
            }
            return 1 + Search.FindLast<int> (pos, this.sortedList);
        }