Skip to content

Instantly share code, notes, and snippets.

@tonymorris
Created March 15, 2021 02:25
Show Gist options
  • Save tonymorris/08071dc5f992b8ff3c3580f98a21e95e to your computer and use it in GitHub Desktop.
Save tonymorris/08071dc5f992b8ff3c3580f98a21e95e to your computer and use it in GitHub Desktop.
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