Module Base__.Hashable
module type Key = sig ... endmodule type Hashable = sig ... endtype 'a t={hash : 'a -> int;compare : 'a -> 'a -> int;sexp_of_t : 'a -> Base.Sexp.t;}
val equal : 'a t -> 'a t -> boolval poly : 'a tval of_key : (module Base__.Hashable_intf.Key with type t = 'a) -> 'a tval to_key : 'a t -> (module Base__.Hashable_intf.Key with type t = 'a)val hash_param : int -> int -> 'a -> intval hash : 'a -> int