You can search for identifiers within the package.
in-package search v0.2.0
hachis
Hachis.HashMap
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.
Make_
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.
Make