diff options
author | Julian Schurhammer <julian.schurhammer@gmail.com> | 2023-12-08 10:06:47 +1300 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2023-12-09 09:57:32 +0000 |
commit | d07f9640a0157f5f661eb2908147605ea339fbff (patch) | |
tree | 8681c77c86c9b5ba3b3994b6ef61c7c54bf13064 /CHANGELOG.md | |
parent | eaa795fe6597f8bd9b8b95045f293ff5e81dd96d (diff) | |
download | gleam_stdlib-d07f9640a0157f5f661eb2908147605ea339fbff.tar.gz gleam_stdlib-d07f9640a0157f5f661eb2908147605ea339fbff.zip |
iterator.index: change to #(a, Int)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ef76982..5e9d6b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog - Changed `list.index_map` callback signature to `fn(a, Int) -> b` from `fn(Int, a) -> b`, to be consistent with `list.index_fold`. +- Changed `iterator.index` to return `Iterator(#(a, Int))` instead of `Iterator(#(Int, a))`. ## v0.33.1 - 2023-12-02 |