AIMA.Core.Logic.Common.Token.getType C# (CSharp) 메소드

getType() 공개 메소드

public getType ( ) : int
리턴 int
        public int getType()
        {
            return type;
        }

Usage Example

예제 #1
0
 protected bool isEndOfInput(Token t)
 {
     return(t.getType() == (int)LogicTokenTypes.EOI);
 }
All Usage Examples Of AIMA.Core.Logic.Common.Token::getType