diff options
author | shadowninja55 <49539636+shadowninja55@users.noreply.github.com> | 2020-12-22 21:23:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-23 10:23:45 +0800 |
commit | 6e2c2d11db1c753c7129337ac0453ee42b57ff3d (patch) | |
tree | f099c5e82d51bde34dd8e4b8e96336bde75fa317 /lib | |
parent | 7256afb00d4451f96b525039b39109d21561a14d (diff) | |
download | Nim-6e2c2d11db1c753c7129337ac0453ee42b57ff3d.tar.gz |
add sequtils to prelude (#16431)
* add sequtils to prelude i would argue that sequtils is used just as often as the other imports in prelude, and it'd be nice for it to be included. * updated doc comment to add sequtils * added sequtils import to changelog
Diffstat (limited to 'lib')
-rw-r--r-- | lib/prelude.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/prelude.nim b/lib/prelude.nim index 47a5af89e..4d8c7d7f0 100644 --- a/lib/prelude.nim +++ b/lib/prelude.nim @@ -16,8 +16,8 @@ ## Same as: ## ## .. code-block:: nim -## import os, strutils, times, parseutils, hashes, tables, sets +## import os, strutils, times, parseutils, hashes, tables, sets, sequtils ## when not defined(js): import parseopt -import os, strutils, times, parseutils, hashes, tables, sets +import os, strutils, times, parseutils, hashes, tables, sets, sequtils when not defined(js): import parseopt |