Skip to content

Commit

Permalink
Mention #1058 in the CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGlScott committed May 4, 2024
1 parent 4d5df4b commit fd7bd0e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@
* Add `_TypeP` and `_InvisP` `Prism`s for the `Pat` data type.
* Add a `_TypeE` `Prism` for the `Exp` data type.
* Add a `_SCCP` `Prism` for the `Pragma` data type.
* Add the following `Setter`s for prepending and appending elements:
* `(<>:~)`: prepend an element to the front via `(<>)`.
* `(<<>:~)`: append an element to the back via `(<>)`.
* `(<|~)`: cons an element to the front via `(<|)`.
* `(<<|~)`: cons an element to the front via `(<|)` and return the result.
* `(|>~)`: snoc an element to the back via `(|>)`.
* `(<|>~)`: snoc an element to the back via `(|>)` and return the result.
Each of these also has a variant that end with `=` instead of `~` (e.g.,
`(<>:=)`) for working in a `MonadState` setting.

5.2.3 [2023.08.24]
------------------
Expand Down

0 comments on commit fd7bd0e

Please sign in to comment.