package core_kernel

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

A signature for identifier types.

module type S = Identifiable.S
module Make_plain (M : sig ... end) : sig ... end
module Make (M : sig ... end) : sig ... end

Used for making an Identifiable module. Here's an example:

module Make_and_derive_hash_fold_t (M : sig ... end) : sig ... end
module Make_using_comparator (M : sig ... end) : sig ... end
module Make_using_comparator_and_derive_hash_fold_t (M : sig ... end) : sig ... end
module Extend (M : Base.Identifiable.S) (B : Bin_prot.Binable.S with type t = M.t) : sig ... end