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 /changelog.md | |
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 'changelog.md')
-rw-r--r-- | changelog.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 89d8fd423..c2a146c01 100644 --- a/changelog.md +++ b/changelog.md @@ -70,6 +70,8 @@ and `lists.toDoublyLinkedList` convert from `openArray`s; `lists.copy` implements shallow copying; `lists.add` concatenates two lists - an O(1) variation that consumes its argument, `addMoved`, is also supplied. + +- Added `sequtils` import to `prelude`. ## Language changes |