diff options
author | Araq <rumpf_a@web.de> | 2011-12-30 20:42:47 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-12-30 20:42:47 +0100 |
commit | 5e5ed192e512fd56187be15ba5c38295158a3b90 (patch) | |
tree | 54b247c01ce076f3da2f6c4caabd4bee8bcd126f /doc | |
parent | 52e8b597e4a2d0426201c66ceadcf94cc8814c1b (diff) | |
download | Nim-5e5ed192e512fd56187be15ba5c38295158a3b90.tar.gz |
GC: use simple balanced tree instead of AVL tree
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/lib.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/lib.txt b/doc/lib.txt index 46c403ed5..8e18ae095 100755 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -63,6 +63,9 @@ Collections and algorithms Implementation of a queue. The underlying implementation uses a ``seq``. * `intsets <intsets.html>`_ Efficient implementation of a set of ints as a sparse bit set. +* `critbits <critbits.html>`_ + This module implements a *crit bit tree* which is an efficient + container for a set or a mapping of strings. * `sequtils <sequtils.html>`_ This module implements operations for the built-in seq type which were inspired by functional programming languages. |