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