Created
July 19, 2021 06:05
-
-
Save gregberns/efeb508f7dbad3a30ffab16a0acc3783 to your computer and use it in GitHub Desktop.
Store Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
compose :: | |
Lens b c -> | |
Lens a b -> | |
Lens a c | |
compose (Lens g) (Lens f) = | |
Lens | |
( \a -> | |
let Store s2 g2 = f a | |
Store s3 g3 = g g2 | |
in Store (s2 . s3) g3 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment