From 8ba39cb32d55e3ae99d9bc705e04bb6b001a56b1 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Mon, 26 May 2014 19:09:06 +0200 Subject: [PATCH] update readme --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d1703755..4aac41da 100644 --- a/README.md +++ b/README.md @@ -52,13 +52,15 @@ structures comprise (some modules in `misc/`, some other in `core/`): - `CCLeftistheap`, a polymorphic heap structure. - `CCFQueue`, a purely functional queue structure - `CCBV`, mutable bitvectors -- `CCPersistentHashtbl`, a semi-persistent hashtable (similar - to [persistent arrays](https://www.lri.fr/~filliatr/ftp/ocaml/ds/parray.ml.html)) +- `CCPersistentHashtbl`, a semi-persistent hashtable (similar to [persistent arrays](https://www.lri.fr/~filliatr/ftp/ocaml/ds/parray.ml.html)) - `CCVector`, a growable array (pure OCaml, no C) - -- `CCGen` and `CCSequence`, generic iterators structures (with structural types - so they can be defined in several places). Now also in their own - repository and opam packages (`gen` and `sequence`). +- `CCGen` and `CCSequence`, generic iterators structures (with structural types so they can be defined in several places). Now also in their own repository and opam packages (`gen` and `sequence`). +- `CCKlist`, another iterator structure +- `CCList`, functions and lists including tail-recursive implementations of `map` and `append` +- `CCArray`, utilities on arrays +- `CCInt`, `CCPair`, `CCOpt`, `CCFun`, `CCBool`, utilities on basic types +- `CCPrint`, printing combinators +- `CCHash`, hashing combinators ### Misc