update of readme and build files

This commit is contained in:
Simon Cruanes 2013-08-20 11:31:30 +02:00
parent 1d476e3000
commit 1d39fd1d5b
3 changed files with 6 additions and 0 deletions

View file

@ -23,6 +23,7 @@ data structures
- `RAL`, a random-access list structure, with `O(1)` cons/hd/tl and `O(ln(n))`
access to elements by their index.
- `Leftistheap`, a polymorphic heap structure.
- `SmallSet`, a sorted list implementation behaving like a set.
Other structures are:
@ -37,6 +38,7 @@ monadic futures, and MVars (concurrent boxes)
- `FlatHashtbl`, a (deprecated) open addressing hashtable with
a functorial interface (replaced by PHashtbl)
- `Gen` and `Sequence`, generic iterators structures.
- `UnionFind`, a functorial imperative Union-Find structure.
Some serialisation formats are also implemented, with a streaming, non-blocking
interface that allows the user to feed the input in chunk by chunk (useful

View file

@ -22,3 +22,5 @@ Bencode
Sexp
RAL
MultiSet
UnionFind
SmallSet

View file

@ -22,3 +22,5 @@ Bencode
Sexp
RAL
MultiSet
UnionFind
SmallSet