package core_kernel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Functors for creating modules that mint unique identifiers.

module type Id = Unique_id.Id
module Int () : sig ... end

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.

module Int63 () : sig ... end

An abstract unique identifier based on 63 bit integers.

OCaml

Innovation. Community. Security.