module IncipitCore (
module Incipit.Exception,
module IncipitBase,
module Polysemy,
module Polysemy.Async,
module Polysemy.AtomicState,
module Polysemy.Error,
module Polysemy.Fail,
module Polysemy.Input,
module Polysemy.Output,
module Polysemy.Reader,
module Polysemy.Resource,
module Polysemy.State,
module Polysemy.Tagged,
module Polysemy.Writer,
module IncipitCore,
send,
) where
import Incipit.Exception
import IncipitBase
import Polysemy hiding (run)
import Polysemy.Async (Async)
import Polysemy.Async hiding (Async, Await, Cancel)
import Polysemy.AtomicState (AtomicState)
import Polysemy.AtomicState hiding (AtomicGet, AtomicState)
import Polysemy.Error hiding (Catch, Throw)
import Polysemy.Fail (Fail)
import Polysemy.Fail hiding (Fail)
import Polysemy.Input (Input)
import Polysemy.Input hiding (Input)
import Polysemy.Internal (send)
import Polysemy.Internal.Kind (Append)
import Polysemy.Output (Output)
import Polysemy.Output hiding (Output)
import Polysemy.Reader hiding (Ask, Local)
import Polysemy.Resource hiding (Bracket, BracketOnError)
import Polysemy.State hiding (Get, Put)
import Polysemy.Tagged (Tagged)
import Polysemy.Tagged hiding (Tagged)
import Polysemy.Writer hiding (Listen, Pass, Tell)
type a ++ b =
Append a b
infixr 5 ++
unitT ::
Functor f =>
Sem (WithTactics e f m r) (f ())
unitT :: forall (f :: * -> *) (e :: Effect) (m :: * -> *) (r :: [Effect]).
Functor f =>
Sem (WithTactics e f m r) (f ())
unitT =
() -> Sem (WithTactics e f m r) (f ())
forall (f :: * -> *) a (e :: Effect) (m :: * -> *) (r :: [Effect]).
Functor f =>
a -> Sem (WithTactics e f m r) (f a)
pureT ()
{-# inline unitT #-}