Bike.Parser.Lexer.Peek C# (CSharp) Method

Peek() private method

private Peek ( int ahead = 1 ) : int
ahead int
return int
        private int Peek(int ahead = 1)
        {
            int index = ahead + currentIndex;
            return index >= totalChars
                       ? Eof
                       : sourceChars[index];
        }