You can search for identifiers within the package.
in-package search v0.2.0
module type Backend = Session.S.Future with type key = string and type value = string and type period = int64
The signature for a cookie-compatible backend.
module type S = sig ... end
The signature for a cookie session manager.
module Make (IO : Session.S.IO) (B : Backend with type +'a io = 'a IO.t) : S with type +'a io = 'a B.io and type backend = B.t and type key = B.key and type value = B.value and type period = B.period
Create a cookie session manager given an appropriate backend.