diff options
author | Marcin Puc <marcin.e.puc@gmail.com> | 2021-03-28 20:10:08 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-03-28 20:59:55 +0100 |
commit | 0bd24c71d631e0a7dc915c3bea91d7d68ae9ac41 (patch) | |
tree | 19c245e8e6c65f9f9df07aa16c405c90254d5942 | |
parent | b44af798940bd0b695d57b9b902b81b2b5309bd4 (diff) | |
download | gleam_stdlib-0bd24c71d631e0a7dc915c3bea91d7d68ae9ac41.tar.gz gleam_stdlib-0bd24c71d631e0a7dc915c3bea91d7d68ae9ac41.zip |
Add iterator.{any, all} to changelog
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 327b171..cc1d354 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ - The `list` module gains the `drop_while`, `take_while`, `chunk` and `sized_chunk` functions. - The `iterator` module gains the `index`, `iterate`, `zip`, `scan`, - `take_while`, `drop_while`, `chunk`, `sized_chunk` and `intersperse` functions. + `take_while`, `drop_while`, `chunk`, `sized_chunk`, `intersperse`, `any` and `all` functions. - Breaking change in `iterator.take`. Now it returns an iterator instead of a list. ## v0.14.0 - 2021-02-18 |