diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-09-11 18:03:27 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-09-11 18:03:28 +0100 |
commit | f083720d6eaf1c68a7f70dfb168fd2a431671b25 (patch) | |
tree | a9569d039111a300aa30e6ddf9e5523efcb9ea19 /CHANGELOG.md | |
parent | 2ca0b25d3841dee7e12d3ae39520f8339fd1d5b7 (diff) | |
download | gleam_stdlib-f083720d6eaf1c68a7f70dfb168fd2a431671b25.tar.gz gleam_stdlib-f083720d6eaf1c68a7f70dfb168fd2a431671b25.zip |
Flip arguments of reducers
Closes https://github.com/gleam-lag/gleam/issues/1258
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a0e8c68..be4f8de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,11 @@ - The `should` module has been moved to the `gleam_should_assertions` package. - The `uri.percent_encode` function has a slightly different behaviour. For example spaces are encoded as `%20`, not as `+`. +- The order of the arguments of the the function accepted by the + `list.map_fold`, `list.fold`, `list.fold_right`, `list.index_fold`, + `list.try_fold`, `list.fold_until`, `list.reduce`, `list.scan`, `map.fold`, + `set.fold`, `iterator.fold`, `iterator.scan`, `iterator.reduce`, + `iterator.fold_until`, and `iterator.try_fold` have been flipped. ## v0.16.0 - 2021-06-17 |