package core

  1. Overview
  2. Docs
Industrial strength alternative to OCaml's standard library

Install

Dune Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=b0e23c1b1049e48cbbaa596d49927c66e6026506031bd7f5b485af6e9475b4e3

doc/core/Core/Unique_id/index.html

Module Core.Unique_idSource

Functors for creating modules that mint unique identifiers.

Sourcemodule type Id = sig ... end
Sourcemodule Int () : Id with type t = private Base.Int.t

An abstract unique identifier based on ordinary OCaml integers. Be careful, this may easily overflow on 32-bit platforms! Int63 is a safer choice for portability.

Sourcemodule Int63 () : Id with type t = private Int63.t

An abstract unique identifier based on 63 bit integers.

OCaml

Innovation. Community. Security.