{-# LANGUAGE CPP #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -Wno-deprecations #-} -- | -- Module : Data.Functor.Contravariant.Conclude -- Copyright : (c) Justin Le 2019 -- License : BSD3 -- -- Maintainer : justin@jle.im -- Stability : experimental -- Portability : non-portable -- -- The contravariant counterpart of 'Data.Functor.Plus': like 'Decidable', -- but without needing a 'Divisible' constraint. This is only a part of -- this library currently for compatibility, until it is (hopefully) merged -- into /semigroupoids/. -- -- @since 0.3.0.0 module Data.Functor.Contravariant.Conclude ( Conclude(..) , concluded ) where import Control.Applicative.Backwards import Control.Monad.Trans.Identity import Control.Monad.Trans.List import Control.Monad.Trans.Maybe import qualified Control.Monad.Trans.RWS.Lazy as Lazy import qualified Control.Monad.Trans.RWS.Strict as Strict import Control.Monad.Trans.Reader import qualified Control.Monad.Trans.State.Lazy as Lazy import qualified Control.Monad.Trans.State.Strict as Strict import qualified Control.Monad.Trans.Writer.Lazy as Lazy import qualified Control.Monad.Trans.Writer.Strict as Strict import Data.Functor.Apply import Data.Functor.Compose import Data.Functor.Contravariant import Data.Functor.Contravariant.Decide import Data.Functor.Contravariant.Divise import Data.Functor.Contravariant.Divisible import Data.Functor.Product import Data.Functor.Reverse import Data.Void #if !MIN_VERSION_base(4,8,0) import Control.Applicative #endif #if MIN_VERSION_base(4,8,0) import Data.Monoid (Alt(..)) #else import Data.Monoid (Monoid(..)) #endif #if MIN_VERSION_base(4,7,0) || defined(MIN_VERSION_tagged) import Data.Proxy #endif #ifdef MIN_VERSION_StateVar import Data.StateVar #endif #if __GLASGOW_HASKELL__ >= 702 #define GHC_GENERICS import GHC.Generics #endif -- | The contravariant analogue of 'Data.Functor.Plus.Plus'. Adds on to -- 'Decide' the ability to express a combinator that rejects all input, to -- act as the dead-end. Essentially 'Decidable' without a superclass -- constraint on 'Divisible'. -- -- If one thinks of @f a@ as a consumer of @a@s, then 'conclude' defines -- a consumer that cannot ever receive /any/ input. -- -- Conclude acts as an identity with 'decide', because any decision that -- involves 'conclude' must necessarily /always/ pick the other option. -- -- That is, for, say, -- -- @ -- 'decide' f x 'concluded' -- @ -- -- @f@ is the deciding function that picks which of the inputs of @decide@ -- to direct input to; in the situation above, @f@ must /always/ direct all -- input to @x@, and never 'concluded'. -- -- Mathematically, a functor being an instance of 'Decide' means that it is -- "monoidal" with respect to the contravariant "either-based" Day -- convolution described in the documentation of 'Decide'. On top of -- 'Decide', it adds a way to construct an "identity" @conclude@ where -- @decide f x (conclude q) == x@, and @decide g (conclude r) y == y@. class Decide f => Conclude f where -- | The consumer that cannot ever receive /any/ input. conclude :: (a -> Void) -> f a -- | A potentially more meaningful form of 'conclude', the consumer that cannot -- ever receive /any/ input. That is because it expects only input of type -- 'Void', but such a type has no values. -- -- @ -- 'concluded' = 'conclude' 'id' -- @ concluded :: Conclude f => f Void concluded = conclude id instance Decidable f => Conclude (WrappedDivisible f) where conclude f = WrapDivisible (lose f) instance Conclude Comparison where conclude = lose instance Conclude Equivalence where conclude = lose instance Conclude Predicate where conclude = lose instance Conclude (Op r) where conclude f = Op $ absurd . f #if MIN_VERSION_base(4,7,0) || defined(MIN_VERSION_tagged) instance Conclude Proxy where conclude = lose #endif #ifdef MIN_VERSION_StateVar instance Conclude SettableStateVar where conclude = lose #endif #if MIN_VERSION_base(4,8,0) instance Conclude f => Conclude (Alt f) where conclude = Alt . conclude #endif #ifdef GHC_GENERICS instance Conclude U1 where conclude = lose instance Conclude f => Conclude (Rec1 f) where conclude = Rec1 . conclude instance Conclude f => Conclude (M1 i c f) where conclude = M1 . conclude instance (Conclude f, Conclude g) => Conclude (f :*: g) where conclude f = conclude f :*: conclude f instance (Apply f, Applicative f, Conclude g) => Conclude (f :.: g) where conclude = Comp1 . pure . conclude #endif instance Conclude f => Conclude (Backwards f) where conclude = Backwards . conclude instance Conclude f => Conclude (IdentityT f) where conclude = IdentityT . conclude instance Conclude m => Conclude (ReaderT r m) where conclude f = ReaderT $ \_ -> conclude f instance Conclude m => Conclude (Lazy.RWST r w s m) where conclude f = Lazy.RWST $ \_ _ -> contramap (\ ~(a, _, _) -> a) (conclude f) instance Conclude m => Conclude (Strict.RWST r w s m) where conclude f = Strict.RWST $ \_ _ -> contramap (\(a, _, _) -> a) (conclude f) instance (Divisible m, Divise m) => Conclude (ListT m) where conclude _ = ListT conquer instance (Divisible m, Divise m) => Conclude (MaybeT m) where conclude _ = MaybeT conquer instance Conclude m => Conclude (Lazy.StateT s m) where conclude f = Lazy.StateT $ \_ -> contramap lazyFst (conclude f) instance Conclude m => Conclude (Strict.StateT s m) where conclude f = Strict.StateT $ \_ -> contramap fst (conclude f) instance Conclude m => Conclude (Lazy.WriterT w m) where conclude f = Lazy.WriterT $ contramap lazyFst (conclude f) instance Conclude m => Conclude (Strict.WriterT w m) where conclude f = Strict.WriterT $ contramap fst (conclude f) instance (Apply f, Applicative f, Conclude g) => Conclude (Compose f g) where conclude = Compose . pure . conclude instance (Conclude f, Conclude g) => Conclude (Product f g) where conclude f = Pair (conclude f) (conclude f) instance Conclude f => Conclude (Reverse f) where conclude = Reverse . conclude lazyFst :: (a, b) -> a lazyFst ~(a, _) = a