| Safe Haskell | None | 
|---|---|
| Language | Haskell2010 | 
Polysemy.Internal.CustomErrors.Redefined
Description
Synopsis
- type family IfStuck (expr :: k) (b :: k1) (c :: Exp k1) :: k1 where ...
 - data AnythingOfAnyKind
 - type WhenStuck expr b = IfStuck expr b NoErrorFcf
 - type UnlessStuck expr c = IfStuck expr NoError c
 
Documentation
type family IfStuck (expr :: k) (b :: k1) (c :: Exp k1) :: k1 where ... Source #
 leaves IfStuck expr b cb in the residual constraints whenever
 expr is stuck, otherwise it Evaluates c.
Equations
data AnythingOfAnyKind Source #