package fmlib_pretty

  1. Overview
  2. Docs
Pretty printing support for tree like structures

Install

Dune Dependency

Authors

Maintainers

Sources

0.5.9.tar.gz
md5=3fb18b650cfcb0bf3bd05e120e17b28f

Description

Easy to use pretty printing library.

Published: 09 Feb 2024

README

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
        ...
    )
)

Dependencies (4)

  1. fmlib_std = version
  2. ppx_inline_test >= "v0.13.0"
  3. dune >= "3.0.0"
  4. ocaml >= "4.08.0"

Dev Dependencies (1)

  1. odoc with-doc

Used by (2)

  1. fmlib >= "0.5.9"
  2. fmlib_parse >= "0.5.9"

Conflicts

None