grisette-0.11.0.0: Symbolic evaluation as a library
Copyright(c) Sirui Lu 2024
LicenseBSD-3-Clause (see the LICENSE file)
Maintainersiruilu@cs.washington.edu
StabilityExperimental
PortabilityGHC only
Safe HaskellSafe-Inferred
LanguageHaskell2010

Grisette.Internal.Unified.BaseMonad

Description

 
Synopsis

Documentation

type family BaseMonad (mode :: EvalModeTag) = (r :: Type -> Type) | r -> mode where ... Source #

A type family that specifies the base monad for the evaluation mode.

Resolves to Identity for C mode, and Union for S mode.

Equations

BaseMonad 'C = Identity 
BaseMonad 'S = Union