No description
Find a file
2025-06-10 22:26:33 +02:00
src make http_json send json bodies 2025-06-10 22:26:33 +02:00
.gitignore Rework of the parsing library 2022-02-15 16:34:17 +01:00
.ocp-indent Added libraries 'Std' and 'Pretty' 2021-02-18 11:29:29 -06:00
.readthedocs.yaml Added a requirements file for 'readthedocs' 2022-02-15 21:16:45 +01:00
CHANGES.md Prepare bugfix release 0.5.9 2024-02-08 11:18:58 +01:00
dune-project Changed dune version to 1.10 2021-03-20 10:11:30 -06:00
fmlib.opam Changed dune requirement to 3.0.0 2023-04-17 11:22:53 +02:00
fmlib_browser.opam Changed dune requirement to 3.0.0 2023-04-17 11:22:53 +02:00
fmlib_js.opam Add explicit float conversions 2025-02-13 12:13:52 +01:00
fmlib_parse.opam Changed dune requirement to 3.0.0 2023-04-17 11:22:53 +02:00
fmlib_pretty.opam Changed dune requirement to 3.0.0 2023-04-17 11:22:53 +02:00
fmlib_std.opam Changed dune requirement to 3.0.0 2023-04-17 11:22:53 +02:00
LICENSE Files LICENSE and CHANGES added 2021-03-12 09:55:36 -06:00
makefile Prepare 0.5.11 2025-02-13 14:26:17 +01:00
README.md Typo in link corrected 2024-02-05 15:53:04 +01:00

Fmlib - Functional Library with Managed Effects for Ocaml

Overview

Fmlib is a functional library which has components for

  • Standard Data Structures (B trees, ... ): Fmlib_std

  • Pretty Printing: Fmlib_pretty

  • Parsing: Fmlib_parse

  • Web applications: Fmlib_browser.

  • Access to the browser and nodejs: Fmlib_js.

API Documentation

Design Documentation: Some designs and the corresponding algorithms are documented separately to ensure correctness of the corresponding designs and algorithms. The design documention is not neccessary to understand the usage of the library from a user's perspective. The user's perspective is documented in the API.

Installation

It is best to install the libraries via the ocaml package manager opam.

opam install fmlib_std
opam install fmlib_pretty
opam install fmlib_parse
opam install fmlib_browser

Usage with dune

A program foo which uses e.g. the library fmlib_std can be e.g. compiled by dune with the dune file

(executable
    (name foo)
    (libraries
        fmlib_std
        ...
    )
)