diff options
author | Louis Pilfold <louis@lpil.uk> | 2020-05-25 10:49:28 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-05-26 19:19:29 +0100 |
commit | 90eb83c27ffad8172b4b5d05435216c21741ea73 (patch) | |
tree | 3b912f806586764ef99b33c18cbd0d2b1e20c229 /CHANGELOG.md | |
parent | f310627585fa8bec37bee7b3ac5e783d0cfbc77a (diff) | |
download | gleam_stdlib-90eb83c27ffad8172b4b5d05435216c21741ea73.tar.gz gleam_stdlib-90eb83c27ffad8172b4b5d05435216c21741ea73.zip |
set.to_list
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c80add..b4fc594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,8 @@ - Created the `iterator` module with the `unfold`, `repeatedly`, `repeat`, `from_list`, `fold`, `run`, `to_list`, `take`, `drop`, `map`, `filter`, `cycle`, and `range` functions. -- Created the `set` module with the `new`, `insert`, `delete`, and `contains` - functions. +- Created the `set` module with the `new`, `insert`, `delete`, `to_list` and + `contains` functions. - Created the `io` module with the `print`, `println`, and `debug` functions. - Created the `queue` module with the `new`, `from_list`, `to_list`, `is_empty`, `length`, `push_back`, `push_front`, `pop_back`, `pop_front`, @@ -26,6 +26,7 @@ `tuple2_of` functions. - The `list` module gains the `filter_map` function. - The `list.contains` label `has` has been changed to `any`. +- The `list.sort` label `sort_by` has been changed to `by`. ## v0.8.0 - 2020-04-28 |