Skip to content

Instantly share code, notes, and snippets.

@hanshoglund
Created January 18, 2017 10:33
Show Gist options
  • Save hanshoglund/c3485d0a61573cd107c3909e7603dc53 to your computer and use it in GitHub Desktop.
Save hanshoglund/c3485d0a61573cd107c3909e7603dc53 to your computer and use it in GitHub Desktop.
local :: (MonadState s m, Applicative m) => (s -> s) -> m b -> m b
local f k = do
s1 <- get
modify f
r <- k
put s1
pure r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment