haskell / mtl

The Monad Transformer Library
http://www.haskell.org/haskellwiki/Monad_Transformers
Other
360 stars 63 forks source link

LiftingState #144

Open Lev135 opened 1 year ago

Lev135 commented 1 year ago

Why don't we have LiftingState newtype wrapper like LiftingAccum and LiftingSelect? It seems that state methods are very easy to lift:

get = lift get
put = lift . put