1Ephemeron.GenHashTable(3) OCaml library Ephemeron.GenHashTable(3)
2
3
4
6 Ephemeron.GenHashTable - no description
7
9 Module Ephemeron.GenHashTable
10
12 Module GenHashTable
13 : sig end
14
15
16
17
18
19
20
21
22
23 Define a hash table on generic containers which have a notion of
24 "death" and aliveness. If a binding is dead the hash table can automat‐
25 ically remove it.
26
27 type equal =
28 | ETrue
29 | EFalse
30 | EDead (* the container is dead
31 *)
32
33
34
35
36 module MakeSeeded : functor (H : sig end) -> sig end
37
38
39 Functor building an implementation of an hash table that use the con‐
40 tainer for keeping the information given
41
42
43
44
45
46OCamldoc 2021-01-26 Ephemeron.GenHashTable(3)