mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -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
|
||||
Bij
|
||||
PiCalculus
|
||||
Bencode
|
||||
|
|
|
|||
|
|
@ -1,11 +1,21 @@
|
|||
Cache
|
||||
Deque
|
||||
Future
|
||||
Gen
|
||||
FHashtbl
|
||||
FQueue
|
||||
FlatHashtbl
|
||||
Graph
|
||||
Hashset
|
||||
Heap
|
||||
LazyGraph
|
||||
PersistentHashtbl
|
||||
PHashtbl
|
||||
Sequence
|
||||
SkipList
|
||||
SplayTree
|
||||
SplayMap
|
||||
Univ
|
||||
Vector
|
||||
Bij
|
||||
PiCalculus
|
||||
Bencode
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ module type S =
|
|||
|
||||
val create : ?max_load:float -> int -> 'a t
|
||||
(** 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
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ let suite =
|
|||
"all_tests" >:::
|
||||
[ Test_pHashtbl.suite;
|
||||
Test_PersistentHashtbl.suite;
|
||||
Test_bencode.suite;
|
||||
Test_Behavior.suite;
|
||||
Test_PiCalculus.suite;
|
||||
Test_splayMap.suite;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue