FmlibFmlib: Functional Monadic Library
module Module_types : sig ... endCommon module types like ANY, SORTABLE, ...
module List : sig ... endA thin wrapper around Stdlib.List which avoids throwing exceptions and with some additional monadic functions.
module Option : sig ... endOption Monad
module Result : sig ... endResult Monad
module Finite_map : sig ... endThin wrapper around Stdlib.Map which supports monadic operations instead of throwing exceptions.
module Red_black : sig ... endFinite maps and sets based on red black trees.
module Sequence : sig ... endmodule Readable_printer : sig ... endA readable printer is a structure you can issue print commands on and which returns a readable structure which can be read character by character.
module Monad : sig ... endmodule Array : sig ... endmodule Vector : sig ... endA mutable vector (like a C++ vector)
module Pool : sig ... endAn arrayed pool of elements of a certain type.
module Common : sig ... endmodule Character_parser : sig ... endmodule Generic_parser : sig ... endmodule Pretty_printer : sig ... endmodule Io : sig ... endDefinition of an enviroment for console applications which can run natively or under nodejs or any other module which satisfies the signature SIG.
module Make_io : sig ... endThis module contains a minimal signature for an io module and a functor which converts a minimal implementation into a full implementation of an io module.
module String_printer : sig ... endmodule Web_application : sig ... endEnviroment for Web Applications.
module Argument_parser : sig ... end