diff options
author | Marcin Puc <marcin.e.puc@gmail.com> | 2021-04-12 13:45:59 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-04-13 10:50:44 +0100 |
commit | fb129be0608b54412f5a70faefff5903acd5d014 (patch) | |
tree | 3b731bacb3c39e2d4a55fc69cc88d65aab85707d | |
parent | 82aec2d14a7494120d0054d04d8679190abb7351 (diff) | |
download | gleam_stdlib-fb129be0608b54412f5a70faefff5903acd5d014.tar.gz gleam_stdlib-fb129be0608b54412f5a70faefff5903acd5d014.zip |
Add `reduce` to changelog
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 619771b..6d0cc1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,10 @@ - The `dynamic` module gains the `tuple3`, `tuple4`, `tuple5`, `tuple6` functions and their typed equivalents `typed_tuple3`, `typed_tuple4`, `typed_tuple5`, `typed_tuple6`. -- The `list` module gains the `drop_while`, `map_fold`, `take_while`, +- The `list` module gains the `drop_while`, `map_fold`, `take_while`, `reduce`, `chunk` and `sized_chunk` functions. - The `iterator` module gains the `index`, `iterate`, `zip`, `scan`, - `take_while`, `drop_while`, `chunk`, `sized_chunk`, `intersperse`, `any` and `all` functions. + `take_while`, `drop_while`, `chunk`, `sized_chunk`, `intersperse`, `reduce`, `any` and `all` functions. - Breaking change in `iterator.take`. Now it returns an iterator instead of a list. - The `string` module gains the `crop` function. |