You can search for identifiers within the package.
in-package search v0.2.0
type t
module KeyMap : Map.S with type key = string
val read : t -> string -> string option
read t key is the last known value of key.
read t key
key
val write : t -> string -> string -> unit Lwt.t
write t key value sets key to value.
write t key value
value
val bindings : t -> string KeyMap.t
bindings t is the bindings of t at the time of the call.
bindings t
t
val after : t -> string KeyMap.t -> string KeyMap.t Lwt.t
after prev waits until the current bindings are different to prev and then returns the new bindings.
after prev
prev