BulletMLLib.BulletMLTree.IsNextNum C# (CSharp) 메소드

IsNextNum() 개인적인 메소드

private IsNextNum ( int i ) : bool
i int
리턴 bool
        private bool IsNextNum(int i)
        {
            if ((i < values.Count - 1 && values[i + 1].valueType == BLValueType.Operator) && (values[i + 1].value == '*' || values[i + 1].value == '/'))
            {
                return false;
            }
            else if (values[i].value == ')' || values[i].value == '(')
            {
                return false;
            }
            else
                return true;
        }