diff options
author | data-man <datamanrb@gmail.com> | 2018-01-02 01:44:45 +0300 |
---|---|---|
committer | data-man <datamanrb@gmail.com> | 2018-01-02 01:44:45 +0300 |
commit | 37dde55f8d4c4d9fd7a3968756aa4885c9dbda9a (patch) | |
tree | 8bbfa851b0f90e3a022cc92c99480ded4a531292 | |
parent | 3f2636c76580c8a086df4255a17b077622434d7d (diff) | |
download | Nim-37dde55f8d4c4d9fd7a3968756aa4885c9dbda9a.tar.gz |
Add a shared collections to the docs
-rw-r--r-- | doc/lib.rst | 4 | ||||
-rw-r--r-- | web/website.ini | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/doc/lib.rst b/doc/lib.rst index 58dedc49c..755c11899 100644 --- a/doc/lib.rst +++ b/doc/lib.rst @@ -92,6 +92,10 @@ Collections and algorithms * `sequtils <sequtils.html>`_ This module implements operations for the built-in seq type which were inspired by functional programming languages. +* `sharedtables <sharedtables.html>`_ + Nim shared hash table support. Contains shared tables. +* `sharedlist <sharedlist.html>`_ + Nim shared linked list support. Contains shared singly linked list. String handling diff --git a/web/website.ini b/web/website.ini index 32b1936d5..273c3223d 100644 --- a/web/website.ini +++ b/web/website.ini @@ -51,6 +51,7 @@ srcdoc2: "pure/ropes;pure/unidecode/unidecode;pure/xmldom;pure/xmldomparser" srcdoc2: "pure/xmlparser;pure/htmlparser;pure/xmltree;pure/colors;pure/mimetypes" srcdoc2: "pure/json;pure/base64;pure/scgi" srcdoc2: "pure/collections/tables;pure/collections/sets;pure/collections/lists" +srcdoc2: "pure/collections/sharedlist;pure/collections/sharedtables" srcdoc2: "pure/collections/intsets;pure/collections/queues;pure/collections/deques;pure/encodings" srcdoc2: "pure/events;pure/collections/sequtils;pure/cookies" srcdoc2: "pure/memfiles;pure/subexes;pure/collections/critbits" |