diff options
author | Tom Smeding <t.j.smeding@uu.nl> | 2024-04-10 18:26:34 +0200 |
---|---|---|
committer | Tom Smeding <t.j.smeding@uu.nl> | 2024-04-10 18:26:34 +0200 |
commit | b601561e38884d6f729c3a86eb0ec4445aea6155 (patch) | |
tree | 176ecc9a46ee66233418b81d8c94a24dd4c6a847 /src/Control/FAlternative.hs | |
parent | 5014c402e63e882567bb8759cad5cbf61db1e11f (diff) |
Improve FAlternative class
Diffstat (limited to 'src/Control/FAlternative.hs')
-rw-r--r-- | src/Control/FAlternative.hs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Control/FAlternative.hs b/src/Control/FAlternative.hs index 473b3df..8fd35c3 100644 --- a/src/Control/FAlternative.hs +++ b/src/Control/FAlternative.hs @@ -1,6 +1,8 @@ {-# LANGUAGE DataKinds #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE QuantifiedConstraints #-} +{-# LANGUAGE ScopedTypeVariables #-} +{-# LANGUAGE TypeApplications #-} module Control.FAlternative where import Data.List.NonEmpty (NonEmpty(..)) @@ -24,7 +26,11 @@ class (forall fail. Applicative (f fail)) => FAlternative f where faempty :: f 'Fallible a (<|>>) :: f 'Fallible a -> f fail a -> f fail a noFail :: f 'Infallible a -> f fail a - toFallible :: KnownFallible fail => f fail a -> f 'Fallible a + +toFallible :: forall fail f a. (FAlternative f, KnownFallible fail) => f fail a -> f 'Fallible a +toFallible = case knownFallible @fail of + SFallible -> id + SInfallible -> noFail faasum :: FAlternative f => [f 'Fallible a] -> f fail a -> f fail a faasum l p = foldr (<|>>) p l |