Skip to content

Commit

Permalink
Add latest List.drop simplifications to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lue-bird authored and jfmengels committed Oct 10, 2023
1 parent 4684e7b commit 0fcc784
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@
- `truncate 1` to `1`
- `round (toFloat n)` to `n` (and same for ceiling, floor, truncate)
- `(Record first second).first` to `first`
- `List.drop -1 list` to `list`
- `List.drop 3 [ a, b ]` to `[]` (same for lists with determined size like `List.singleton`)
- `List.drop 2 [ a, b, c ]` to `[ c ]`

Bug fixes:
- Fixed an issue where `Dict.intersect Dict.empty` would be fixed to `Dict.empty`
Expand Down

0 comments on commit 0fcc784

Please sign in to comment.