AIMA.Core.Logic.Common.Lexer.isEndOfFile C# (CSharp) Method

isEndOfFile() protected method

protected isEndOfFile ( int i ) : bool
i int
return bool
        protected bool isEndOfFile(int i)
        {
            return (-1 == i);
        }