package hachis

  1. Overview
  2. Docs
module type HashedType = sig ... end
module type SENTINELS = sig ... end
module type ARRAY = sig ... end
module type SET = sig ... end
module type MAP = sig ... end
module Make_ (H : HashedType) (_ : SENTINELS with type t = H.t) (_ : ARRAY with type element = H.t) (V : ARRAY) : MAP with type key = H.t and type value = V.element

The functor Make_ takes four parameters: H, S, K, V.

module Make (H : HashedType) (_ : SENTINELS with type t = H.t) (V : sig ... end) : MAP with type key = H.t and type value = V.t

The functor Make takes three parameters: H, S, and V.

OCaml

Innovation. Community. Security.