diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-01-19 14:17:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 14:17:22 +0100 |
commit | 0300203e811e7ecff4a7ec9bbb087ec946bbf1f2 (patch) | |
tree | 4acebaf3be698e6a1d381bfc82329f6c986c9eef /lib/pure/collections | |
parent | bd5ce5b351ec59d844dfdff462f23a2365fb1d61 (diff) | |
download | Nim-0300203e811e7ecff4a7ec9bbb087ec946bbf1f2.tar.gz |
intsets are here to stay (#16751)
Diffstat (limited to 'lib/pure/collections')
-rw-r--r-- | lib/pure/collections/intsets.nim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/pure/collections/intsets.nim b/lib/pure/collections/intsets.nim index a847ded25..05e5addcc 100644 --- a/lib/pure/collections/intsets.nim +++ b/lib/pure/collections/intsets.nim @@ -7,11 +7,9 @@ # distribution, for details about the copyright. # -## Deprecated in favor of the generic `packedsets module <packedsets.html>`_ +## Specialization of the generic `packedsets module <packedsets.html>`_ ## for ordinal sparse sets. -{.deprecated: "Use the 'packedsets' module instead".} - import std/private/since import std/packedsets export packedsets |