Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/jimenezrick/parser-combinators

Simple monadic parser combinators library: pure functional joy
https://github.com/jimenezrick/parser-combinators

Last synced: 4 months ago
JSON representation

Simple monadic parser combinators library: pure functional joy

Lists

README

        

Monadic Parser Combinators
==============================

Simple monadic parser combinators library for OCaml.
Pure functional joy.

Inspired By
-------------

- Monadic Parser Combinators, Graham Hutton and Erik Meijer.
- pcl: Parsec-style parsers for OCaml.
- Parsec Haskell library.

Description
---------------

Top-down parser which handles an internal lazy list with all the
possible applications of the parser to the input that makes possible to
backtrack when necessary.

The parser can take as input: functions, strings, lists, streams and
channels.