| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Calamity.Internal.LocalWriter
Description
A Writer monad that supports local writing, reverse reader I guess?
Documentation
data LocalWriter o m a where Source #
Constructors
| Ltell :: o -> LocalWriter o m () | |
| Llisten :: m a -> LocalWriter o m (o, a) |
runLocalWriter :: Monoid o => Sem (LocalWriter o ': r) a -> Sem r (o, a) Source #