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: 3 months ago
JSON representation
Simple monadic parser combinators library: pure functional joy
- Host: GitHub
- URL: https://github.com/jimenezrick/parser-combinators
- Owner: jimenezrick
- Created: 2011-08-10T10:06:16.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-08-20T09:53:11.000Z (over 13 years ago)
- Last Synced: 2024-07-31T21:54:49.619Z (6 months ago)
- Language: OCaml
- Homepage: http://r.untroubled.be/
- Size: 328 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- awesome-combinator-parsers - jimenezrick/parser-combinators
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.