|
|
|
|
|
by jhpriestley
3286 days ago
|
|
Parser combinators are a quite general technique which has been applied to PEG parsing, Earley parsing, and many other specific algorithms. Recursive descent is common because it is easy to implement and allows the resulting combinators to form a Monad. |
|