Cottle.Parsers.Default.LexemState.Follow C# (CSharp) Method

Follow() public method

public Follow ( char character ) : LexemState
character char
return LexemState
        public LexemState Follow(char character)
        {
            LexemState	state;

            if (this.branches.TryGetValue (character, out state))
                return state;

            return null;
        }
LexemState