diff options
author | Louis Pilfold <louis@lpil.uk> | 2020-05-22 19:43:29 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-05-26 19:19:29 +0100 |
commit | 2c31dee247edfa4f570d9f840cc3cdb929ed8a44 (patch) | |
tree | 41905996378761d3b6afaed0a05999f8c69816f4 | |
parent | cd2e4bf6176f2a8a0cd0ce0e1f3c463a9182c514 (diff) | |
download | gleam_stdlib-2c31dee247edfa4f570d9f840cc3cdb929ed8a44.tar.gz gleam_stdlib-2c31dee247edfa4f570d9f840cc3cdb929ed8a44.zip |
Changelog!
-rw-r--r-- | CHANGELOG.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e424e0c..76d8b49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ ## Unreleased -- Created the `io` module with `print` function. + +- Created the `io` module with the `print` function. +- Created the `queue` module with the `new`, `from_list`, `to_list`, + `is_empty`, `length`, `push_back`, `push_front`, `pop_back`, `pop_front`, + `reverse`, `is_logically_equal`, and `is_equal` functions. - The `result` module gains the `nil_error` function. - The `string` module gains `trim`, `trim_left`, `trim_right`, `starts_with`, `ends_with`, `slice`, `pad_left`, `pad_right` `drop_left`, `drop_right`, |