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

Grisette.Lib.Control.Monad.Except

Description

 
Synopsis

mrg* variants for operations in Control.Monad.Except

mrgThrowError :: (MonadError e m, MonadUnion m, Mergeable a) => e -> m a Source #

throwError with MergingStrategy knowledge propagation.

mrgCatchError :: (MonadError e m, MonadUnion m, Mergeable a) => m a -> (e -> m a) -> m a Source #

catchError with MergingStrategy knowledge propagation.