Hi All,
I have just released v2.1.0 of reparse to opam. Below are the CHANGES for this release.
CHANGES:
This release has backwards incompatible changes.
- Infix functions are now available (opened by default) in
Parser
module itself. - Add support for let operators -
let+
,let*
,and+
andand*
. -
bind
andmap
function are now labelled followingbase
library
dependency convention. - Items in
all_unit
are nowunit t
rather than_ t
following monad
combinator convention inbase
library dependency. -
pure
is now deprecated. Usereturn
instead. This is to stay consistent
with monad conventions inbase
library dependency. -
>|=
is deprecated. Use>>|
instead. This is to stay consistent with monad
conventions inbase
library dependency. - Removed
map4
function. - Add support for
ppx_let
. - Deprecate
Parser
module. UseReparse
instead.
Reparse
Reparse is a monadic, recursive descent based, comprehensive, parser construction library for ocaml.
Doc: https://lemaetech.co.uk/reparse/
Github : https://github.com/lemaetech/reparse/
Enjoy!