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) : SET with type element = H.t

The functor Make_ takes three parameters: H, S, K.

module Make (H : HashedType) (_ : SENTINELS with type t = H.t) : SET with type element = H.t

The functor Make takes two parameters: H and S.

OCaml

Innovation. Community. Security.