Created
March 15, 2021 02:25
-
-
Save tonymorris/08071dc5f992b8ff3c3580f98a21e95e to your computer and use it in GitHub Desktop.
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
f :: Store a b -> Store a (Store a b) | |
f s = | |
let (set, get) = runStore s | |
in store (store set) get |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment