AIMA.Core.Logic.Common.Parser.isEndOfInput C# (CSharp) Méthode

isEndOfInput() protected méthode

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