AIMA.Core.Logic.Common.Parser.isEndOfInput C# (CSharp) Method

isEndOfInput() protected method

protected isEndOfInput ( Token t ) : bool
t Token
return bool
        protected bool isEndOfInput(Token t)
        {
            return (t.getType() == (int)LogicTokenTypes.EOI);
        }