QUT.Gplex.CharClassMap.TreeNode.GetRange C# (CSharp) Method

GetRange() private method

Fetch the bounds of the range that contains "index"
private GetRange ( int index, int &rMin, int &rMax ) : void
index int Index value to lookup
rMin int Low bound of range
rMax int High bound of range
return void
            internal void GetRange(int index, out int rMin, out int rMax)
            {
                if (index < min) lKid.GetRange(index, out rMin, out rMax);
                else if (index > max) rKid.GetRange(index, out rMin, out rMax);
                else
                {
                    rMin = min;
                    rMax = max;
                }
            }