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 automati‐
25 cally remove it. ===
26
27
28 type equal =
29 | ETrue
30 | EFalse
31 | EDead (* the container is dead
32 *)
33
34
35
36
37 module MakeSeeded : functor (H : sig end) -> sig end
38
39
40 Functor building an implementation of an hash table that use the con‐
41 tainer for keeping the information given
42
43
44
45
46
47OCamldoc 2019-02-02 Ephemeron.GenHashTable(3)