diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-02-23 11:25:35 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 20:25:35 +0100 |
commit | c274e67198e446f07708c0a14751da3b2832cec9 (patch) | |
tree | 2fb9dcbe5b56f8f71a55af2856033e38565e76e2 /doc | |
parent | 74a8f23801316cd9e5b7ea072bf0c8c0465b0626 (diff) | |
download | Nim-c274e67198e446f07708c0a14751da3b2832cec9.tar.gz |
add enumutils.items for sparse enums, typetraits.SomeSparseEnum (#17080)
* add enumutils.items for enum with holes * changelog * ref in lib.rst * use `type SomeSparseEnum* = (not Ordinal) and enum` instead of concept * address comment: rename back to enum with holes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lib.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/lib.rst b/doc/lib.rst index 11b479902..47ede70ee 100644 --- a/doc/lib.rst +++ b/doc/lib.rst @@ -85,6 +85,9 @@ Algorithms * `algorithm <algorithm.html>`_ This module implements some common generic algorithms like sort or binary search. +* `std/enumutils <enumutils.html>`_ + This module adds functionality for the built-in ``enum`` type. + * `sequtils <sequtils.html>`_ This module implements operations for the built-in ``seq`` type which were inspired by functional programming languages. |