Hashtbl.SIn Lwtreslib, like in the Stdlib, the Hashtbl module exports mainly functors to instantiate hashtables with known-type keys. As a result, the bulk of the documentation for hashtables is located within the module types returned by the functors: in Bare_functor_outputs.Hashtbl.
Note the presence of Make_es which deviates from the Stdlib to provide specialised convenience for tables of elements the initialisation of which may take time and may fail.
module type S = Bare_functor_outputs.Hashtbl.Smodule type SeededS = Bare_functor_outputs.Hashtbl.SeededSmodule MakeSeeded
(H : Stdlib.Hashtbl.SeededHashedType) :
SeededS with type key = H.tmodule type S_ES = Bare_functor_outputs.Hashtbl.S_ES