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

lookAhead() protected method

protected lookAhead ( int position ) : char
position int
return char
        protected char lookAhead(int position)
        {
            return (char)lookAheadBuffer[position - 1];
        }