1Stdlib.Ephemeron(3) OCaml library Stdlib.Ephemeron(3)
2
3
4
6 Stdlib.Ephemeron - no description
7
9 Module Stdlib.Ephemeron
10
12 Module Ephemeron
13 : (module Stdlib__Ephemeron)
14
15
16
17
18
19
20
21 module type S = sig end
22
23
24 The output signature of the functors Ephemeron.K1.Make and
25 Ephemeron.K2.Make . These hash tables are weak in the keys. If all the
26 keys of a binding are alive the binding is kept, but if one of the keys
27 of the binding is dead then the binding is removed.
28
29
30 module type SeededS = sig end
31
32
33 The output signature of the functors Ephemeron.K1.MakeSeeded and
34 Ephemeron.K2.MakeSeeded .
35
36
37 module K1 : sig end
38
39
40 Ephemerons with one key.
41
42
43 module K2 : sig end
44
45
46 Ephemerons with two keys.
47
48
49 module Kn : sig end
50
51
52 Ephemerons with arbitrary number of keys of the same type.
53
54
55 module GenHashTable : sig end
56
57
58 Hash tables on generic containers with notion of death and aliveness.
59
60
61
62
63
64OCamldoc 2023-01-23 Stdlib.Ephemeron(3)