Belt.HashMap
The top level provides generic mutable hash map operations.
It also has two specialized inner modules Belt.HashMap.Int
and Belt.HashMap.String
A mutable Hash map which allows customized Hash
behavior.
All data are parameterized by not its only type but also a unique identity in the time of initialization, so that two HashMaps of ints initialized with different hash functions will have different type.
For example:
type t = int
module I0 =
(val Belt.Id.hashableU
~hash:(fun[\@bs] (a : t) -> a & 0xff_ff)
~eq:(fun[\@bs] a b -> a = b)
)
let s0 : (_, string,_) t = make ~hintSize:40 ~id:(module I0)
module I1 =
(val Belt.Id.hashableU
~hash:(fun[\@bs] (a : t) -> a & 0xff)
~eq:(fun[\@bs] a b -> a = b)
)
let s1 : (_, string,_) t = make ~hintSize:40 ~id:(module I1)
The invariant must be held: for two elements who are equal, their hashed value should be the same
Here the compiler would infer s0
and s1
having different type so that it would not mix.
val s0 : (int, I0.identity) t
val s1 : (int, I1.identity) t
We can add elements to the collection:
let () =
add s1 0 "3";
add s1 1 "3"
Since this is an mutable data strucure, s1
will contain two pairs.
module Int : sig ... end
Specalized when key type is int
, more efficient than the generic type
module String : sig ... end
Specalized when key type is string
, more efficient than the generic type
val clear : ('key, 'value, 'id) t -> unit
Empty a hash table.
val isEmpty : (_, _, _) t -> bool
val set : ('key, 'value, 'id) t -> 'key -> 'value -> unit
set tbl k v
if k
does not exist, add the binding k,v
, otherwise, update the old value with the new v
val get : ('key, 'value, 'id) t -> 'key -> 'value option
val has : ('key, 'value, 'id) t -> 'key -> bool
has tbl x
checks if x
is bound in tbl
.
val remove : ('key, 'value, 'id) t -> 'key -> unit
val forEachU :
('key, 'value, 'id) t ->
('key -> 'value -> unit) Js.Fn.arity2 ->
unit
val forEach : ('key, 'value, 'id) t -> ('key -> 'value -> unit) -> unit
forEach tbl f
applies f
to all bindings in table tbl
. f
receives the key as first argument, and the associated value as second argument. Each binding is presented exactly once to f
.
val reduceU :
('key, 'value, 'id) t ->
'c ->
('c -> 'key -> 'value -> 'c) Js.Fn.arity3 ->
'c
val reduce : ('key, 'value, 'id) t -> 'c -> ('c -> 'key -> 'value -> 'c) -> 'c
reduce tbl init f
computes (f kN dN ... (f k1 d1 init)...)
, where k1 ... kN
are the keys of all bindings in tbl
, and d1 ... dN
are the associated values. Each binding is presented exactly once to f
.
The order in which the bindings are passed to f
is unspecified. However, if the table contains several bindings for the same key, they are passed to f
in reverse order of introduction, that is, the most recent binding is passed first.
val keepMapInPlaceU :
('key, 'value, 'id) t ->
('key -> 'value -> 'value option) Js.Fn.arity2 ->
unit
val keepMapInPlace :
('key, 'value, 'id) t ->
('key -> 'value -> 'value option) ->
unit
val size : (_, _, _) t -> int
size tbl
returns the number of bindings in tbl
. It takes constant time.
val toArray : ('key, 'value, 'id) t -> ('key * 'value) array
val keysToArray : ('key, _, _) t -> 'key array
val valuesToArray : (_, 'value, _) t -> 'value array
val mergeMany : ('key, 'value, 'id) t -> ('key * 'value) array -> unit
val getBucketHistogram : (_, _, _) t -> int array
val logStats : (_, _, _) t -> unit