Scala Language Parser Combinators

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

ParseResult Cases

A ParseResult comes in three flavors:

  • Success, with a marker as to the start of the match and the next character to be matched.
  • Failure, with a marker as to the start of where the match was attempted. In this case the parser backtracks to that position, where it will be when parsing continues.
  • Error, which stops the parsing. No backtracking or further parsing occurs.


Got any Scala Language Question?