diff --git a/Control/Monad/RWS/CPS.hs b/Control/Monad/RWS/CPS.hs index 7ac40fa..08aa7cb 100644 --- a/Control/Monad/RWS/CPS.hs +++ b/Control/Monad/RWS/CPS.hs @@ -32,6 +32,7 @@ module Control.Monad.RWS.CPS ( withRWS, -- * The RWST monad transformer RWST, + rwsT, runRWST, evalRWST, execRWST, @@ -47,4 +48,4 @@ import Control.Monad.RWS.Class import Control.Monad.Trans import Control.Monad.Trans.RWS.CPS ( RWS, rws, runRWS, evalRWS, execRWS, mapRWS, withRWS, - RWST, runRWST, evalRWST, execRWST, mapRWST, withRWST) + RWST, rwsT, runRWST, evalRWST, execRWST, mapRWST, withRWST)