RegexParser.Matchers.ImplicitDFAMatcher.Parse C# (CSharp) Method

Parse() protected method

protected Parse ( ArrayConsList consList, int afterLastMatchIndex ) : Match2>.Result
consList ArrayConsList
afterLastMatchIndex int
return Match2>.Result
        protected override Result<char, Match2> Parse(ArrayConsList<char> consList, int afterLastMatchIndex)
        {
            return new Result<char, Match2>(Match2.Empty, consList);
        }
ImplicitDFAMatcher