diff options
author | Araq <rumpf_a@web.de> | 2011-07-26 00:46:41 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-07-26 00:46:41 +0200 |
commit | 0e7f2ca3f1607ad51e7e69e1b367450a8299c526 (patch) | |
tree | 41d98c00a9cd763ec7731d0b9b94ce0757a99cca /doc/lib.txt | |
parent | 3ac9012361f6d6642455c0bc81cb9f49ae5e844a (diff) | |
download | Nim-0e7f2ca3f1607ad51e7e69e1b367450a8299c526.tar.gz |
bugfixes; added events module, sequtils module
Diffstat (limited to 'doc/lib.txt')
-rwxr-xr-x | doc/lib.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/lib.txt b/doc/lib.txt index 12890d33d..942e2de26 100755 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -60,6 +60,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. +* `sequtils <sequtils.html>`_ + This module implements operations for the built-in seq type + which were inspired by functional programming languages. String handling @@ -250,6 +253,14 @@ Multimedia support the ``graphics`` module. +Miscellaneous +------------- + +* `events <events.html>`_ + This module implements an event system that is not dependant on external + graphical toolkits. + + Database support ---------------- |