├── .gitignore ├── .travis.opam ├── .travis.yml ├── COPYING ├── Library ├── Ancillary │ ├── autoinstall │ └── travisci ├── Autoconf │ ├── bsdowl.m4 │ └── ocaml.m4 ├── Configuration │ ├── debug.mk │ └── release.mk └── Data │ └── bsdowl.css ├── Makefile ├── Makefile.config.in ├── Makefile.inc ├── README.md ├── aclocal.m4 ├── configure.ac ├── manual ├── Makefile └── intro.text ├── meta ├── Makefile └── lemonade.in ├── opam ├── descr └── opam ├── ppx ├── Makefile └── ppx_lemonade.ml ├── src ├── Makefile ├── lemonade_Continuation.ml ├── lemonade_Continuation.mli ├── lemonade_Lazy.ml ├── lemonade_Lazy.mli ├── lemonade_List.ml ├── lemonade_List.mli ├── lemonade_Maybe.ml ├── lemonade_Maybe.mli ├── lemonade_Ok.ml ├── lemonade_Ok.mli ├── lemonade_Reader.ml ├── lemonade_Reader.mli ├── lemonade_Retry.ml ├── lemonade_Retry.mli ├── lemonade_State.ml ├── lemonade_State.mli ├── lemonade_Stream.ml ├── lemonade_Stream.mli ├── lemonade_Success.ml ├── lemonade_Success.mli ├── lemonade_Type.ml ├── lemonade_Type.mli ├── lemonade_Writer.ml └── lemonade_Writer.mli └── testsuite ├── Makefile ├── main.ml ├── testList.ml ├── testMaybe.ml ├── testPPX.ml ├── testStream.ml └── testSuccessReader.ml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/.travis.opam -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/COPYING -------------------------------------------------------------------------------- /Library/Ancillary/autoinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Library/Ancillary/autoinstall -------------------------------------------------------------------------------- /Library/Ancillary/travisci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Library/Ancillary/travisci -------------------------------------------------------------------------------- /Library/Autoconf/bsdowl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Library/Autoconf/bsdowl.m4 -------------------------------------------------------------------------------- /Library/Autoconf/ocaml.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Library/Autoconf/ocaml.m4 -------------------------------------------------------------------------------- /Library/Configuration/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Library/Configuration/debug.mk -------------------------------------------------------------------------------- /Library/Configuration/release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Library/Configuration/release.mk -------------------------------------------------------------------------------- /Library/Data/bsdowl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Library/Data/bsdowl.css -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Makefile.config.in -------------------------------------------------------------------------------- /Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/Makefile.inc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/configure.ac -------------------------------------------------------------------------------- /manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/manual/Makefile -------------------------------------------------------------------------------- /manual/intro.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/manual/intro.text -------------------------------------------------------------------------------- /meta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/meta/Makefile -------------------------------------------------------------------------------- /meta/lemonade.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/meta/lemonade.in -------------------------------------------------------------------------------- /opam/descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/opam/descr -------------------------------------------------------------------------------- /opam/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/opam/opam -------------------------------------------------------------------------------- /ppx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/ppx/Makefile -------------------------------------------------------------------------------- /ppx/ppx_lemonade.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/ppx/ppx_lemonade.ml -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/lemonade_Continuation.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Continuation.ml -------------------------------------------------------------------------------- /src/lemonade_Continuation.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Continuation.mli -------------------------------------------------------------------------------- /src/lemonade_Lazy.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Lazy.ml -------------------------------------------------------------------------------- /src/lemonade_Lazy.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Lazy.mli -------------------------------------------------------------------------------- /src/lemonade_List.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_List.ml -------------------------------------------------------------------------------- /src/lemonade_List.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_List.mli -------------------------------------------------------------------------------- /src/lemonade_Maybe.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Maybe.ml -------------------------------------------------------------------------------- /src/lemonade_Maybe.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Maybe.mli -------------------------------------------------------------------------------- /src/lemonade_Ok.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Ok.ml -------------------------------------------------------------------------------- /src/lemonade_Ok.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Ok.mli -------------------------------------------------------------------------------- /src/lemonade_Reader.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Reader.ml -------------------------------------------------------------------------------- /src/lemonade_Reader.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Reader.mli -------------------------------------------------------------------------------- /src/lemonade_Retry.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Retry.ml -------------------------------------------------------------------------------- /src/lemonade_Retry.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Retry.mli -------------------------------------------------------------------------------- /src/lemonade_State.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_State.ml -------------------------------------------------------------------------------- /src/lemonade_State.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_State.mli -------------------------------------------------------------------------------- /src/lemonade_Stream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Stream.ml -------------------------------------------------------------------------------- /src/lemonade_Stream.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Stream.mli -------------------------------------------------------------------------------- /src/lemonade_Success.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Success.ml -------------------------------------------------------------------------------- /src/lemonade_Success.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Success.mli -------------------------------------------------------------------------------- /src/lemonade_Type.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Type.ml -------------------------------------------------------------------------------- /src/lemonade_Type.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Type.mli -------------------------------------------------------------------------------- /src/lemonade_Writer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Writer.ml -------------------------------------------------------------------------------- /src/lemonade_Writer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/src/lemonade_Writer.mli -------------------------------------------------------------------------------- /testsuite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/testsuite/Makefile -------------------------------------------------------------------------------- /testsuite/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/testsuite/main.ml -------------------------------------------------------------------------------- /testsuite/testList.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/testsuite/testList.ml -------------------------------------------------------------------------------- /testsuite/testMaybe.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/testsuite/testMaybe.ml -------------------------------------------------------------------------------- /testsuite/testPPX.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/testsuite/testPPX.ml -------------------------------------------------------------------------------- /testsuite/testStream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/testsuite/testStream.ml -------------------------------------------------------------------------------- /testsuite/testSuccessReader.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foretspaisibles/lemonade/HEAD/testsuite/testSuccessReader.ml --------------------------------------------------------------------------------