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