package monomorphic

  1. Overview
  2. Docs
A small library used to shadow polymorphic operators (and functions) contained in the stdlib

Install

Dune Dependency

Authors

Maintainers

Sources

monomorphic-2.1.0.tar.gz
md5=ec4c56ac126dc0afe548d95977143f30
sha512=a3a5e09bca2b40aa3a176b161669159ba3ffe4b28fd7f01e0ad9042dd65d1158c9791182cc6ff469595f37ae4b567d184fd5039c138ca1999e51c1a71482cc34

README.md.html

README.md

ocaml-monomorphic is a small library used to shadow polymorphic operators (and functions) contained in Stdlib. It can be useful to avoid some mistakes and runtime errors due to OCaml's polymorphic comparison functions.

Requirements

This library only requires:

  • OCaml >= 4.08

  • Dune >= 2.7

Usage

:books: API documentation :books:

Using dune, a simple usage would be:

(library
  (public_name your-lib)
  (libraries monomorphic)
  (flags :standard -open Monomorphic.Int))