diff options
author | Araq <rumpf_a@web.de> | 2019-09-20 20:12:16 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-21 06:43:37 +0200 |
commit | a404ec540aebe92b6c150023dcb40ce48fefe40f (patch) | |
tree | 7d5552631621e567c21751aab364079264d24e5a /doc | |
parent | dea9e38d267c388e51e8cbc34d747b5e012d92b8 (diff) | |
download | Nim-a404ec540aebe92b6c150023dcb40ce48fefe40f.tar.gz |
updated lib.rst and added some useful missing modules
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lib.rst | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/doc/lib.rst b/doc/lib.rst index d9c471bbc..ad08af27d 100644 --- a/doc/lib.rst +++ b/doc/lib.rst @@ -132,6 +132,9 @@ Collections String handling --------------- +* `cstrutils <cstrutils.html>`_ + Utilities for ``cstring`` handling. + * `std/editdistance <editdistance.html>`_ This module contains an algorithm to compute the edit distance between two Unicode strings. @@ -262,6 +265,9 @@ Math libraries * `stats <stats.html>`_ Statistical analysis +* `std/sums <sums.html>`_ + Fast sumation functions. + Internet Protocols and Support ------------------------------ @@ -444,6 +450,9 @@ Miscellaneous * `logging <logging.html>`_ This module implements a simple logger. +* `quitprocs <quitprocs>`_ + Better implementation of ``system.addQuitProc``. + * `segfaults <segfaults.html>`_ Turns access violations or segfaults into a ``NilAccessError`` exception. @@ -453,6 +462,9 @@ Miscellaneous * `unittest <unittest.html>`_ Implements a Unit testing DSL. +* `std/varints <varints.html>`_ + Decode variable length integers that are compatible with SQLite. + Modules for JS backend ---------------------- @@ -510,6 +522,8 @@ Windows specific * `winlean <winlean.html>`_ Contains a wrapper for a small subset of the Win32 API. +* `registry <registry.html>`_ + Windows registry support. UNIX specific @@ -517,8 +531,6 @@ UNIX specific * `posix <posix.html>`_ Contains a wrapper for the POSIX standard. -* `linux <linux.html>`_ - Contains a wrapper for Linux's APIs. Regular expressions |