From b70c94377e3b9caf7d65f49ba5ca2fbdc6ae853b Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Wed, 12 Jun 2013 17:36:59 +0200 Subject: [PATCH] fixed .odocl and minor stuff --- containers.mllib | 1 + containers.odocl | 12 +++++++++++- flatHashtbl.mli | 2 +- tests/run_tests.ml | 1 + 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/containers.mllib b/containers.mllib index 74502c54..4706fe33 100644 --- a/containers.mllib +++ b/containers.mllib @@ -18,3 +18,4 @@ Univ Vector Bij PiCalculus +Bencode diff --git a/containers.odocl b/containers.odocl index 2c01470d..4706fe33 100644 --- a/containers.odocl +++ b/containers.odocl @@ -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 diff --git a/flatHashtbl.mli b/flatHashtbl.mli index de146dbc..16c560a3 100644 --- a/flatHashtbl.mli +++ b/flatHashtbl.mli @@ -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 diff --git a/tests/run_tests.ml b/tests/run_tests.ml index 06c04f6d..f30d3940 100644 --- a/tests/run_tests.ml +++ b/tests/run_tests.ml @@ -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;