package base

  1. Overview
  2. Docs
Full standard library replacement for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.16.5.tar.gz
md5=109456ad2350671ad3159cbbca993e3e
sha512=445d08b965e0d559e4046b874f611c8f36de47fa5c23a047146f48ee638588c1b73789a7adb5ead235c0ad2f44b56fd513a6d60bcb8b6c9f11566d32fd7760f2

doc/src/base/intable.ml.html

Source file intable.ml

1
2
3
4
5
6
7
8
9
10
11
(** Functor that adds integer conversion functions to a module. *)

open! Import

module type S = sig
  type t

  val of_int_exn : int -> t
  val to_int_exn : t -> int
end