Skip to content

Releases: arturopala/elm-monocle

New type: Traversal

17 Apr 12:58
5408099
Compare
Choose a tag to compare

Traversal allows modifying multiple sub-elements, keeping the overlaying structure as is.

composition functions in Monocle.Compose

25 Sep 14:58
Compare
Choose a tag to compare
2.1.0

composition functions in Monocle.Compose

upgrade to elm 0.19

25 Sep 14:59
Compare
Choose a tag to compare
2.0.0

upgrade to elm@0.19

Add infix operator Common.=|> to compose Optional with Lens

15 Mar 23:17
Compare
Choose a tag to compare
    .getOption (maybe =|> id) (Just { id = 12 })
    > 12

Documentation update

22 Feb 22:31
Compare
Choose a tag to compare

Fixing the documentation for (<|>) by @Bastes

Convenient Lens.compose infix operator alias

13 Dec 22:48
7c1c991
Compare
Choose a tag to compare
(<|>) = Lens.compose
lens13 = lens1 <|> lens2 <|> lens3

Contributed by @Bastes