Module Btype.TypeHash
include Stdlib.Hashtbl.S with type key = Types.transient_expr
type key = Types.transient_exprval create : int -> 'a Btype.TypeHash.tval clear : 'a Btype.TypeHash.t -> unitval reset : 'a Btype.TypeHash.t -> unitval copy : 'a Btype.TypeHash.t -> 'a Btype.TypeHash.tval find_all : 'a Btype.TypeHash.t -> Btype.TypeHash.key -> 'a listval filter_map_inplace :
(Btype.TypeHash.key -> 'a -> 'a option) ->
'a Btype.TypeHash.t ->
unitval fold :
(Btype.TypeHash.key -> 'a -> 'acc -> 'acc) ->
'a Btype.TypeHash.t ->
'acc ->
'accval length : 'a Btype.TypeHash.t -> intval stats : 'a Btype.TypeHash.t -> Stdlib.Hashtbl.statisticsval to_seq : 'a Btype.TypeHash.t -> (Btype.TypeHash.key * 'a) Stdlib.Seq.tval to_seq_keys : _ Btype.TypeHash.t -> Btype.TypeHash.key Stdlib.Seq.tval to_seq_values : 'a Btype.TypeHash.t -> 'a Stdlib.Seq.tval add_seq :
'a Btype.TypeHash.t ->
(Btype.TypeHash.key * 'a) Stdlib.Seq.t ->
unitval replace_seq :
'a Btype.TypeHash.t ->
(Btype.TypeHash.key * 'a) Stdlib.Seq.t ->
unitval of_seq : (Btype.TypeHash.key * 'a) Stdlib.Seq.t -> 'a Btype.TypeHash.tval mem : 'a Btype.TypeHash.t -> Types.type_expr -> boolval add : 'a Btype.TypeHash.t -> Types.type_expr -> 'a -> unitval replace : 'a Btype.TypeHash.t -> Types.type_expr -> 'a -> unitval remove : 'a Btype.TypeHash.t -> Types.type_expr -> unitval find : 'a Btype.TypeHash.t -> Types.type_expr -> 'aval find_opt : 'a Btype.TypeHash.t -> Types.type_expr -> 'a optionval iter : (Types.type_expr -> 'a -> unit) -> 'a Btype.TypeHash.t -> unit