diff options
author | Araq <rumpf_a@web.de> | 2011-07-08 01:29:15 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-07-08 01:29:15 +0200 |
commit | 99bcc233cd8fb3bb9b6f3f0857e477dd9b33c9e8 (patch) | |
tree | 2259a14b53ec4fc6f8dedc311eb5e6b837f44180 /doc | |
parent | 170573a87f0df749bdb91126c930826ba5329e95 (diff) | |
download | Nim-99bcc233cd8fb3bb9b6f3f0857e477dd9b33c9e8.tar.gz |
bugfix: 'set' overloadable; further steps for multi threading support
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/lib.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/lib.txt b/doc/lib.txt index d3ad7dd18..25f2d42dd 100755 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -52,6 +52,8 @@ Collections and algorithms * `lists <lists.html>`_ Nimrod linked list support. Contains singly and doubly linked lists and circular lists ("rings"). +* `queues <queues.html>`_ + 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. |