consistent export lists

main
Patrick Thomson 2019-10-29 12:53:24 -04:00
parent 54fd176097
commit 22ef821297
1 changed files with 8 additions and 8 deletions

View File

@ -5,14 +5,14 @@
Note that the parameter order in 'runState', 'evalState', and 'execState' is reversed compared the equivalent functions provided by @transformers@. This is an intentional decision made to enable the composition of effect handlers with '.' without invoking 'flip'. Note that the parameter order in 'runState', 'evalState', and 'execState' is reversed compared the equivalent functions provided by @transformers@. This is an intentional decision made to enable the composition of effect handlers with '.' without invoking 'flip'.
-} -}
module Control.Carrier.State.IORef module Control.Carrier.State.IORef
( -- * Strict state carrier ( -- * Strict state carrier
runState runState
, evalState , evalState
, execState , execState
, StateC(..) , StateC(..)
-- * State effect -- * State effect
, module Control.Effect.State , module Control.Effect.State
) where ) where
import Control.Applicative (Alternative (..)) import Control.Applicative (Alternative (..))
import Control.Algebra import Control.Algebra