diff options
author | drew <drew@drewolson.org> | 2020-11-03 07:22:37 -0600 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-11-03 13:25:01 +0000 |
commit | e1dce822e1ff14664a30b429b5e2e2cbf3748221 (patch) | |
tree | 0c940f1d641fac784d7dd120414de29e4b80b2f9 /CHANGELOG.md | |
parent | cbac55e668d7fc7df601b604e741b1baa64c7db8 (diff) | |
download | gleam_stdlib-e1dce822e1ff14664a30b429b5e2e2cbf3748221.tar.gz gleam_stdlib-e1dce822e1ff14664a30b429b5e2e2cbf3748221.zip |
Add `step` eliminator for iterators
The `step` function allows eager access to the first item in the
iterator, but does not force the rest of the iterator.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 55a19ae..1ccebdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,8 @@ - The `dynamic` module gains the `option` function. - The `uri` module gains the `percent_encode` and `percent_decode` functions. - The `os` module gains the `erlang_timestamp` function. -- The `iterator` module gains the `append`, `flatten` and `flat_map` functions. +- The `iterator` module gains the `append`, `flatten`, `flat_map` and `step` + functions. ## v0.11.0 - 2020-08-22 |