fixed .odocl and minor stuff

This commit is contained in:
Simon Cruanes 2013-06-12 17:36:59 +02:00
parent 689908f9b9
commit b70c94377e
4 changed files with 14 additions and 2 deletions

View file

@ -18,3 +18,4 @@ Univ
Vector
Bij
PiCalculus
Bencode

View file

@ -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

View file

@ -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

View file

@ -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;