mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
fixed .odocl and minor stuff
This commit is contained in:
parent
689908f9b9
commit
b70c94377e
4 changed files with 14 additions and 2 deletions
|
|
@ -18,3 +18,4 @@ Univ
|
||||||
Vector
|
Vector
|
||||||
Bij
|
Bij
|
||||||
PiCalculus
|
PiCalculus
|
||||||
|
Bencode
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,21 @@
|
||||||
|
Cache
|
||||||
Deque
|
Deque
|
||||||
Future
|
|
||||||
Gen
|
Gen
|
||||||
|
FHashtbl
|
||||||
|
FQueue
|
||||||
|
FlatHashtbl
|
||||||
Graph
|
Graph
|
||||||
|
Hashset
|
||||||
Heap
|
Heap
|
||||||
LazyGraph
|
LazyGraph
|
||||||
PersistentHashtbl
|
PersistentHashtbl
|
||||||
|
PHashtbl
|
||||||
Sequence
|
Sequence
|
||||||
|
SkipList
|
||||||
|
SplayTree
|
||||||
|
SplayMap
|
||||||
Univ
|
Univ
|
||||||
|
Vector
|
||||||
Bij
|
Bij
|
||||||
PiCalculus
|
PiCalculus
|
||||||
|
Bencode
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ module type S =
|
||||||
|
|
||||||
val create : ?max_load:float -> int -> 'a t
|
val create : ?max_load:float -> int -> 'a t
|
||||||
(** Create a hashtable. [max_load] is (number of items / size of table).
|
(** Create a hashtable. [max_load] is (number of items / size of table).
|
||||||
Must be in ]0, 1[ *)
|
Must be in {v ]0, 1[ v} *)
|
||||||
|
|
||||||
val copy : 'a t -> 'a t
|
val copy : 'a t -> 'a t
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ let suite =
|
||||||
"all_tests" >:::
|
"all_tests" >:::
|
||||||
[ Test_pHashtbl.suite;
|
[ Test_pHashtbl.suite;
|
||||||
Test_PersistentHashtbl.suite;
|
Test_PersistentHashtbl.suite;
|
||||||
|
Test_bencode.suite;
|
||||||
Test_Behavior.suite;
|
Test_Behavior.suite;
|
||||||
Test_PiCalculus.suite;
|
Test_PiCalculus.suite;
|
||||||
Test_splayMap.suite;
|
Test_splayMap.suite;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue