You can search for identifiers within the package.
in-package search v0.2.0
Simple Least Recently Used cache implementation.
module type Key = sig ... end
Representation and comparison of keys, and a witness value required to initialize cache instances.
module type S = sig ... end
module type Monad = sig ... end
module Make_with_monad (M : Monad) (K : Key) : S with type key = K.t and type 'a monad = 'a M.t
module Make (K : Key) : S with type key = K.t and type 'a monad = 'a