-- | Indicate that something is `Complete`.
module NewtypeZoo.Complete
  ( Complete(Complete)
  , _theComplete
  , theComplete
  ) where

import           Control.Comonad (Comonad)
import           Control.DeepSeq (NFData)
import           Control.Monad.Fix (MonadFix)
import           Control.Monad.Zip (MonadZip)
import           Data.Bits       (Bits,FiniteBits)
import           Data.Copointed  (Copointed)
import           Data.Default    (Default)
import           Data.Functor.Classes (Eq1, Ord1, Read1, Show1)
import           Data.Functor.Identity
import           Data.Ix         (Ix)
import           Data.Profunctor (Profunctor, dimap)
import           Data.Pointed    (Pointed)
import           Data.String     (IsString)
import           Data.Typeable   (Typeable)
import           Foreign.Storable (Storable)
import           GHC.Generics    (Generic, Generic1)
import           System.Random   (Random)
import           Test.QuickCheck (Arbitrary)

newtype Complete a = Complete a
  deriving ( Complete a -> Complete a -> Bool
(Complete a -> Complete a -> Bool)
-> (Complete a -> Complete a -> Bool) -> Eq (Complete a)
forall a. Eq a => Complete a -> Complete a -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Complete a -> Complete a -> Bool
$c/= :: forall a. Eq a => Complete a -> Complete a -> Bool
== :: Complete a -> Complete a -> Bool
$c== :: forall a. Eq a => Complete a -> Complete a -> Bool
Eq
           , Eq (Complete a)
Eq (Complete a)
-> (Complete a -> Complete a -> Ordering)
-> (Complete a -> Complete a -> Bool)
-> (Complete a -> Complete a -> Bool)
-> (Complete a -> Complete a -> Bool)
-> (Complete a -> Complete a -> Bool)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> Ord (Complete a)
Complete a -> Complete a -> Bool
Complete a -> Complete a -> Ordering
Complete a -> Complete a -> Complete a
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
forall a. Ord a => Eq (Complete a)
forall a. Ord a => Complete a -> Complete a -> Bool
forall a. Ord a => Complete a -> Complete a -> Ordering
forall a. Ord a => Complete a -> Complete a -> Complete a
min :: Complete a -> Complete a -> Complete a
$cmin :: forall a. Ord a => Complete a -> Complete a -> Complete a
max :: Complete a -> Complete a -> Complete a
$cmax :: forall a. Ord a => Complete a -> Complete a -> Complete a
>= :: Complete a -> Complete a -> Bool
$c>= :: forall a. Ord a => Complete a -> Complete a -> Bool
> :: Complete a -> Complete a -> Bool
$c> :: forall a. Ord a => Complete a -> Complete a -> Bool
<= :: Complete a -> Complete a -> Bool
$c<= :: forall a. Ord a => Complete a -> Complete a -> Bool
< :: Complete a -> Complete a -> Bool
$c< :: forall a. Ord a => Complete a -> Complete a -> Bool
compare :: Complete a -> Complete a -> Ordering
$ccompare :: forall a. Ord a => Complete a -> Complete a -> Ordering
$cp1Ord :: forall a. Ord a => Eq (Complete a)
Ord
           , ReadPrec [Complete a]
ReadPrec (Complete a)
Int -> ReadS (Complete a)
ReadS [Complete a]
(Int -> ReadS (Complete a))
-> ReadS [Complete a]
-> ReadPrec (Complete a)
-> ReadPrec [Complete a]
-> Read (Complete a)
forall a. Read a => ReadPrec [Complete a]
forall a. Read a => ReadPrec (Complete a)
forall a. Read a => Int -> ReadS (Complete a)
forall a. Read a => ReadS [Complete a]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Complete a]
$creadListPrec :: forall a. Read a => ReadPrec [Complete a]
readPrec :: ReadPrec (Complete a)
$creadPrec :: forall a. Read a => ReadPrec (Complete a)
readList :: ReadS [Complete a]
$creadList :: forall a. Read a => ReadS [Complete a]
readsPrec :: Int -> ReadS (Complete a)
$creadsPrec :: forall a. Read a => Int -> ReadS (Complete a)
Read
           , Int -> Complete a -> ShowS
[Complete a] -> ShowS
Complete a -> String
(Int -> Complete a -> ShowS)
-> (Complete a -> String)
-> ([Complete a] -> ShowS)
-> Show (Complete a)
forall a. Show a => Int -> Complete a -> ShowS
forall a. Show a => [Complete a] -> ShowS
forall a. Show a => Complete a -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Complete a] -> ShowS
$cshowList :: forall a. Show a => [Complete a] -> ShowS
show :: Complete a -> String
$cshow :: forall a. Show a => Complete a -> String
showsPrec :: Int -> Complete a -> ShowS
$cshowsPrec :: forall a. Show a => Int -> Complete a -> ShowS
Show
           , Complete a -> ()
(Complete a -> ()) -> NFData (Complete a)
forall a. NFData a => Complete a -> ()
forall a. (a -> ()) -> NFData a
rnf :: Complete a -> ()
$crnf :: forall a. NFData a => Complete a -> ()
NFData
           , Complete a -> Bool
(a -> m) -> Complete a -> m
(a -> b -> b) -> b -> Complete a -> b
(forall m. Monoid m => Complete m -> m)
-> (forall m a. Monoid m => (a -> m) -> Complete a -> m)
-> (forall m a. Monoid m => (a -> m) -> Complete a -> m)
-> (forall a b. (a -> b -> b) -> b -> Complete a -> b)
-> (forall a b. (a -> b -> b) -> b -> Complete a -> b)
-> (forall b a. (b -> a -> b) -> b -> Complete a -> b)
-> (forall b a. (b -> a -> b) -> b -> Complete a -> b)
-> (forall a. (a -> a -> a) -> Complete a -> a)
-> (forall a. (a -> a -> a) -> Complete a -> a)
-> (forall a. Complete a -> [a])
-> (forall a. Complete a -> Bool)
-> (forall a. Complete a -> Int)
-> (forall a. Eq a => a -> Complete a -> Bool)
-> (forall a. Ord a => Complete a -> a)
-> (forall a. Ord a => Complete a -> a)
-> (forall a. Num a => Complete a -> a)
-> (forall a. Num a => Complete a -> a)
-> Foldable Complete
forall a. Eq a => a -> Complete a -> Bool
forall a. Num a => Complete a -> a
forall a. Ord a => Complete a -> a
forall m. Monoid m => Complete m -> m
forall a. Complete a -> Bool
forall a. Complete a -> Int
forall a. Complete a -> [a]
forall a. (a -> a -> a) -> Complete a -> a
forall m a. Monoid m => (a -> m) -> Complete a -> m
forall b a. (b -> a -> b) -> b -> Complete a -> b
forall a b. (a -> b -> b) -> b -> Complete a -> b
forall (t :: * -> *).
(forall m. Monoid m => t m -> m)
-> (forall m a. Monoid m => (a -> m) -> t a -> m)
-> (forall m a. Monoid m => (a -> m) -> t a -> m)
-> (forall a b. (a -> b -> b) -> b -> t a -> b)
-> (forall a b. (a -> b -> b) -> b -> t a -> b)
-> (forall b a. (b -> a -> b) -> b -> t a -> b)
-> (forall b a. (b -> a -> b) -> b -> t a -> b)
-> (forall a. (a -> a -> a) -> t a -> a)
-> (forall a. (a -> a -> a) -> t a -> a)
-> (forall a. t a -> [a])
-> (forall a. t a -> Bool)
-> (forall a. t a -> Int)
-> (forall a. Eq a => a -> t a -> Bool)
-> (forall a. Ord a => t a -> a)
-> (forall a. Ord a => t a -> a)
-> (forall a. Num a => t a -> a)
-> (forall a. Num a => t a -> a)
-> Foldable t
product :: Complete a -> a
$cproduct :: forall a. Num a => Complete a -> a
sum :: Complete a -> a
$csum :: forall a. Num a => Complete a -> a
minimum :: Complete a -> a
$cminimum :: forall a. Ord a => Complete a -> a
maximum :: Complete a -> a
$cmaximum :: forall a. Ord a => Complete a -> a
elem :: a -> Complete a -> Bool
$celem :: forall a. Eq a => a -> Complete a -> Bool
length :: Complete a -> Int
$clength :: forall a. Complete a -> Int
null :: Complete a -> Bool
$cnull :: forall a. Complete a -> Bool
toList :: Complete a -> [a]
$ctoList :: forall a. Complete a -> [a]
foldl1 :: (a -> a -> a) -> Complete a -> a
$cfoldl1 :: forall a. (a -> a -> a) -> Complete a -> a
foldr1 :: (a -> a -> a) -> Complete a -> a
$cfoldr1 :: forall a. (a -> a -> a) -> Complete a -> a
foldl' :: (b -> a -> b) -> b -> Complete a -> b
$cfoldl' :: forall b a. (b -> a -> b) -> b -> Complete a -> b
foldl :: (b -> a -> b) -> b -> Complete a -> b
$cfoldl :: forall b a. (b -> a -> b) -> b -> Complete a -> b
foldr' :: (a -> b -> b) -> b -> Complete a -> b
$cfoldr' :: forall a b. (a -> b -> b) -> b -> Complete a -> b
foldr :: (a -> b -> b) -> b -> Complete a -> b
$cfoldr :: forall a b. (a -> b -> b) -> b -> Complete a -> b
foldMap' :: (a -> m) -> Complete a -> m
$cfoldMap' :: forall m a. Monoid m => (a -> m) -> Complete a -> m
foldMap :: (a -> m) -> Complete a -> m
$cfoldMap :: forall m a. Monoid m => (a -> m) -> Complete a -> m
fold :: Complete m -> m
$cfold :: forall m. Monoid m => Complete m -> m
Foldable
           , Functor Complete
Foldable Complete
Functor Complete
-> Foldable Complete
-> (forall (f :: * -> *) a b.
    Applicative f =>
    (a -> f b) -> Complete a -> f (Complete b))
-> (forall (f :: * -> *) a.
    Applicative f =>
    Complete (f a) -> f (Complete a))
-> (forall (m :: * -> *) a b.
    Monad m =>
    (a -> m b) -> Complete a -> m (Complete b))
-> (forall (m :: * -> *) a.
    Monad m =>
    Complete (m a) -> m (Complete a))
-> Traversable Complete
(a -> f b) -> Complete a -> f (Complete b)
forall (t :: * -> *).
Functor t
-> Foldable t
-> (forall (f :: * -> *) a b.
    Applicative f =>
    (a -> f b) -> t a -> f (t b))
-> (forall (f :: * -> *) a. Applicative f => t (f a) -> f (t a))
-> (forall (m :: * -> *) a b.
    Monad m =>
    (a -> m b) -> t a -> m (t b))
-> (forall (m :: * -> *) a. Monad m => t (m a) -> m (t a))
-> Traversable t
forall (m :: * -> *) a. Monad m => Complete (m a) -> m (Complete a)
forall (f :: * -> *) a.
Applicative f =>
Complete (f a) -> f (Complete a)
forall (m :: * -> *) a b.
Monad m =>
(a -> m b) -> Complete a -> m (Complete b)
forall (f :: * -> *) a b.
Applicative f =>
(a -> f b) -> Complete a -> f (Complete b)
sequence :: Complete (m a) -> m (Complete a)
$csequence :: forall (m :: * -> *) a. Monad m => Complete (m a) -> m (Complete a)
mapM :: (a -> m b) -> Complete a -> m (Complete b)
$cmapM :: forall (m :: * -> *) a b.
Monad m =>
(a -> m b) -> Complete a -> m (Complete b)
sequenceA :: Complete (f a) -> f (Complete a)
$csequenceA :: forall (f :: * -> *) a.
Applicative f =>
Complete (f a) -> f (Complete a)
traverse :: (a -> f b) -> Complete a -> f (Complete b)
$ctraverse :: forall (f :: * -> *) a b.
Applicative f =>
(a -> f b) -> Complete a -> f (Complete b)
$cp2Traversable :: Foldable Complete
$cp1Traversable :: Functor Complete
Traversable
           , a -> Complete b -> Complete a
(a -> b) -> Complete a -> Complete b
(forall a b. (a -> b) -> Complete a -> Complete b)
-> (forall a b. a -> Complete b -> Complete a) -> Functor Complete
forall a b. a -> Complete b -> Complete a
forall a b. (a -> b) -> Complete a -> Complete b
forall (f :: * -> *).
(forall a b. (a -> b) -> f a -> f b)
-> (forall a b. a -> f b -> f a) -> Functor f
<$ :: a -> Complete b -> Complete a
$c<$ :: forall a b. a -> Complete b -> Complete a
fmap :: (a -> b) -> Complete a -> Complete b
$cfmap :: forall a b. (a -> b) -> Complete a -> Complete b
Functor
           , Complete a
Complete a -> Default (Complete a)
forall a. a -> Default a
forall a. Default a => Complete a
def :: Complete a
$cdef :: forall a. Default a => Complete a
Default
           , Semigroup (Complete a)
Complete a
Semigroup (Complete a)
-> Complete a
-> (Complete a -> Complete a -> Complete a)
-> ([Complete a] -> Complete a)
-> Monoid (Complete a)
[Complete a] -> Complete a
Complete a -> Complete a -> Complete a
forall a.
Semigroup a -> a -> (a -> a -> a) -> ([a] -> a) -> Monoid a
forall a. Monoid a => Semigroup (Complete a)
forall a. Monoid a => Complete a
forall a. Monoid a => [Complete a] -> Complete a
forall a. Monoid a => Complete a -> Complete a -> Complete a
mconcat :: [Complete a] -> Complete a
$cmconcat :: forall a. Monoid a => [Complete a] -> Complete a
mappend :: Complete a -> Complete a -> Complete a
$cmappend :: forall a. Monoid a => Complete a -> Complete a -> Complete a
mempty :: Complete a
$cmempty :: forall a. Monoid a => Complete a
$cp1Monoid :: forall a. Monoid a => Semigroup (Complete a)
Monoid
           , b -> Complete a -> Complete a
NonEmpty (Complete a) -> Complete a
Complete a -> Complete a -> Complete a
(Complete a -> Complete a -> Complete a)
-> (NonEmpty (Complete a) -> Complete a)
-> (forall b. Integral b => b -> Complete a -> Complete a)
-> Semigroup (Complete a)
forall b. Integral b => b -> Complete a -> Complete a
forall a. Semigroup a => NonEmpty (Complete a) -> Complete a
forall a. Semigroup a => Complete a -> Complete a -> Complete a
forall a b.
(Semigroup a, Integral b) =>
b -> Complete a -> Complete a
forall a.
(a -> a -> a)
-> (NonEmpty a -> a)
-> (forall b. Integral b => b -> a -> a)
-> Semigroup a
stimes :: b -> Complete a -> Complete a
$cstimes :: forall a b.
(Semigroup a, Integral b) =>
b -> Complete a -> Complete a
sconcat :: NonEmpty (Complete a) -> Complete a
$csconcat :: forall a. Semigroup a => NonEmpty (Complete a) -> Complete a
<> :: Complete a -> Complete a -> Complete a
$c<> :: forall a. Semigroup a => Complete a -> Complete a -> Complete a
Semigroup
           , Typeable
           , (forall x. Complete a -> Rep (Complete a) x)
-> (forall x. Rep (Complete a) x -> Complete a)
-> Generic (Complete a)
forall x. Rep (Complete a) x -> Complete a
forall x. Complete a -> Rep (Complete a) x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
forall a x. Rep (Complete a) x -> Complete a
forall a x. Complete a -> Rep (Complete a) x
$cto :: forall a x. Rep (Complete a) x -> Complete a
$cfrom :: forall a x. Complete a -> Rep (Complete a) x
Generic
           , (forall a. Complete a -> Rep1 Complete a)
-> (forall a. Rep1 Complete a -> Complete a) -> Generic1 Complete
forall a. Rep1 Complete a -> Complete a
forall a. Complete a -> Rep1 Complete a
forall k (f :: k -> *).
(forall (a :: k). f a -> Rep1 f a)
-> (forall (a :: k). Rep1 f a -> f a) -> Generic1 f
$cto1 :: forall a. Rep1 Complete a -> Complete a
$cfrom1 :: forall a. Complete a -> Rep1 Complete a
Generic1
           , g -> (Complete a, g)
g -> [Complete a]
(Complete a, Complete a) -> g -> (Complete a, g)
(Complete a, Complete a) -> g -> [Complete a]
(forall g.
 RandomGen g =>
 (Complete a, Complete a) -> g -> (Complete a, g))
-> (forall g. RandomGen g => g -> (Complete a, g))
-> (forall g.
    RandomGen g =>
    (Complete a, Complete a) -> g -> [Complete a])
-> (forall g. RandomGen g => g -> [Complete a])
-> Random (Complete a)
forall a g. (Random a, RandomGen g) => g -> [Complete a]
forall a g. (Random a, RandomGen g) => g -> (Complete a, g)
forall a g.
(Random a, RandomGen g) =>
(Complete a, Complete a) -> g -> [Complete a]
forall a g.
(Random a, RandomGen g) =>
(Complete a, Complete a) -> g -> (Complete a, g)
forall g. RandomGen g => g -> [Complete a]
forall g. RandomGen g => g -> (Complete a, g)
forall g.
RandomGen g =>
(Complete a, Complete a) -> g -> [Complete a]
forall g.
RandomGen g =>
(Complete a, Complete a) -> g -> (Complete a, g)
forall a.
(forall g. RandomGen g => (a, a) -> g -> (a, g))
-> (forall g. RandomGen g => g -> (a, g))
-> (forall g. RandomGen g => (a, a) -> g -> [a])
-> (forall g. RandomGen g => g -> [a])
-> Random a
randoms :: g -> [Complete a]
$crandoms :: forall a g. (Random a, RandomGen g) => g -> [Complete a]
randomRs :: (Complete a, Complete a) -> g -> [Complete a]
$crandomRs :: forall a g.
(Random a, RandomGen g) =>
(Complete a, Complete a) -> g -> [Complete a]
random :: g -> (Complete a, g)
$crandom :: forall a g. (Random a, RandomGen g) => g -> (Complete a, g)
randomR :: (Complete a, Complete a) -> g -> (Complete a, g)
$crandomR :: forall a g.
(Random a, RandomGen g) =>
(Complete a, Complete a) -> g -> (Complete a, g)
Random
           , Gen (Complete a)
Gen (Complete a)
-> (Complete a -> [Complete a]) -> Arbitrary (Complete a)
Complete a -> [Complete a]
forall a. Arbitrary a => Gen (Complete a)
forall a. Arbitrary a => Complete a -> [Complete a]
forall a. Gen a -> (a -> [a]) -> Arbitrary a
shrink :: Complete a -> [Complete a]
$cshrink :: forall a. Arbitrary a => Complete a -> [Complete a]
arbitrary :: Gen (Complete a)
$carbitrary :: forall a. Arbitrary a => Gen (Complete a)
Arbitrary
           , Complete a
Complete a -> Complete a -> Bounded (Complete a)
forall a. a -> a -> Bounded a
forall a. Bounded a => Complete a
maxBound :: Complete a
$cmaxBound :: forall a. Bounded a => Complete a
minBound :: Complete a
$cminBound :: forall a. Bounded a => Complete a
Bounded
           , Int -> Complete a
Complete a -> Int
Complete a -> [Complete a]
Complete a -> Complete a
Complete a -> Complete a -> [Complete a]
Complete a -> Complete a -> Complete a -> [Complete a]
(Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Int -> Complete a)
-> (Complete a -> Int)
-> (Complete a -> [Complete a])
-> (Complete a -> Complete a -> [Complete a])
-> (Complete a -> Complete a -> [Complete a])
-> (Complete a -> Complete a -> Complete a -> [Complete a])
-> Enum (Complete a)
forall a. Enum a => Int -> Complete a
forall a. Enum a => Complete a -> Int
forall a. Enum a => Complete a -> [Complete a]
forall a. Enum a => Complete a -> Complete a
forall a. Enum a => Complete a -> Complete a -> [Complete a]
forall a.
Enum a =>
Complete a -> Complete a -> Complete a -> [Complete a]
forall a.
(a -> a)
-> (a -> a)
-> (Int -> a)
-> (a -> Int)
-> (a -> [a])
-> (a -> a -> [a])
-> (a -> a -> [a])
-> (a -> a -> a -> [a])
-> Enum a
enumFromThenTo :: Complete a -> Complete a -> Complete a -> [Complete a]
$cenumFromThenTo :: forall a.
Enum a =>
Complete a -> Complete a -> Complete a -> [Complete a]
enumFromTo :: Complete a -> Complete a -> [Complete a]
$cenumFromTo :: forall a. Enum a => Complete a -> Complete a -> [Complete a]
enumFromThen :: Complete a -> Complete a -> [Complete a]
$cenumFromThen :: forall a. Enum a => Complete a -> Complete a -> [Complete a]
enumFrom :: Complete a -> [Complete a]
$cenumFrom :: forall a. Enum a => Complete a -> [Complete a]
fromEnum :: Complete a -> Int
$cfromEnum :: forall a. Enum a => Complete a -> Int
toEnum :: Int -> Complete a
$ctoEnum :: forall a. Enum a => Int -> Complete a
pred :: Complete a -> Complete a
$cpred :: forall a. Enum a => Complete a -> Complete a
succ :: Complete a -> Complete a
$csucc :: forall a. Enum a => Complete a -> Complete a
Enum
           , Fractional (Complete a)
Complete a
Fractional (Complete a)
-> Complete a
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> Floating (Complete a)
Complete a -> Complete a
Complete a -> Complete a -> Complete a
forall a. Floating a => Fractional (Complete a)
forall a. Floating a => Complete a
forall a. Floating a => Complete a -> Complete a
forall a. Floating a => Complete a -> Complete a -> Complete a
forall a.
Fractional a
-> a
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> Floating a
log1mexp :: Complete a -> Complete a
$clog1mexp :: forall a. Floating a => Complete a -> Complete a
log1pexp :: Complete a -> Complete a
$clog1pexp :: forall a. Floating a => Complete a -> Complete a
expm1 :: Complete a -> Complete a
$cexpm1 :: forall a. Floating a => Complete a -> Complete a
log1p :: Complete a -> Complete a
$clog1p :: forall a. Floating a => Complete a -> Complete a
atanh :: Complete a -> Complete a
$catanh :: forall a. Floating a => Complete a -> Complete a
acosh :: Complete a -> Complete a
$cacosh :: forall a. Floating a => Complete a -> Complete a
asinh :: Complete a -> Complete a
$casinh :: forall a. Floating a => Complete a -> Complete a
tanh :: Complete a -> Complete a
$ctanh :: forall a. Floating a => Complete a -> Complete a
cosh :: Complete a -> Complete a
$ccosh :: forall a. Floating a => Complete a -> Complete a
sinh :: Complete a -> Complete a
$csinh :: forall a. Floating a => Complete a -> Complete a
atan :: Complete a -> Complete a
$catan :: forall a. Floating a => Complete a -> Complete a
acos :: Complete a -> Complete a
$cacos :: forall a. Floating a => Complete a -> Complete a
asin :: Complete a -> Complete a
$casin :: forall a. Floating a => Complete a -> Complete a
tan :: Complete a -> Complete a
$ctan :: forall a. Floating a => Complete a -> Complete a
cos :: Complete a -> Complete a
$ccos :: forall a. Floating a => Complete a -> Complete a
sin :: Complete a -> Complete a
$csin :: forall a. Floating a => Complete a -> Complete a
logBase :: Complete a -> Complete a -> Complete a
$clogBase :: forall a. Floating a => Complete a -> Complete a -> Complete a
** :: Complete a -> Complete a -> Complete a
$c** :: forall a. Floating a => Complete a -> Complete a -> Complete a
sqrt :: Complete a -> Complete a
$csqrt :: forall a. Floating a => Complete a -> Complete a
log :: Complete a -> Complete a
$clog :: forall a. Floating a => Complete a -> Complete a
exp :: Complete a -> Complete a
$cexp :: forall a. Floating a => Complete a -> Complete a
pi :: Complete a
$cpi :: forall a. Floating a => Complete a
$cp1Floating :: forall a. Floating a => Fractional (Complete a)
Floating
           , Num (Complete a)
Num (Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Rational -> Complete a)
-> Fractional (Complete a)
Rational -> Complete a
Complete a -> Complete a
Complete a -> Complete a -> Complete a
forall a. Fractional a => Num (Complete a)
forall a. Fractional a => Rational -> Complete a
forall a. Fractional a => Complete a -> Complete a
forall a. Fractional a => Complete a -> Complete a -> Complete a
forall a.
Num a
-> (a -> a -> a) -> (a -> a) -> (Rational -> a) -> Fractional a
fromRational :: Rational -> Complete a
$cfromRational :: forall a. Fractional a => Rational -> Complete a
recip :: Complete a -> Complete a
$crecip :: forall a. Fractional a => Complete a -> Complete a
/ :: Complete a -> Complete a -> Complete a
$c/ :: forall a. Fractional a => Complete a -> Complete a -> Complete a
$cp1Fractional :: forall a. Fractional a => Num (Complete a)
Fractional
           , Enum (Complete a)
Real (Complete a)
Real (Complete a)
-> Enum (Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> (Complete a, Complete a))
-> (Complete a -> Complete a -> (Complete a, Complete a))
-> (Complete a -> Integer)
-> Integral (Complete a)
Complete a -> Integer
Complete a -> Complete a -> (Complete a, Complete a)
Complete a -> Complete a -> Complete a
forall a. Integral a => Enum (Complete a)
forall a. Integral a => Real (Complete a)
forall a. Integral a => Complete a -> Integer
forall a.
Integral a =>
Complete a -> Complete a -> (Complete a, Complete a)
forall a. Integral a => Complete a -> Complete a -> Complete a
forall a.
Real a
-> Enum a
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> (a, a))
-> (a -> a -> (a, a))
-> (a -> Integer)
-> Integral a
toInteger :: Complete a -> Integer
$ctoInteger :: forall a. Integral a => Complete a -> Integer
divMod :: Complete a -> Complete a -> (Complete a, Complete a)
$cdivMod :: forall a.
Integral a =>
Complete a -> Complete a -> (Complete a, Complete a)
quotRem :: Complete a -> Complete a -> (Complete a, Complete a)
$cquotRem :: forall a.
Integral a =>
Complete a -> Complete a -> (Complete a, Complete a)
mod :: Complete a -> Complete a -> Complete a
$cmod :: forall a. Integral a => Complete a -> Complete a -> Complete a
div :: Complete a -> Complete a -> Complete a
$cdiv :: forall a. Integral a => Complete a -> Complete a -> Complete a
rem :: Complete a -> Complete a -> Complete a
$crem :: forall a. Integral a => Complete a -> Complete a -> Complete a
quot :: Complete a -> Complete a -> Complete a
$cquot :: forall a. Integral a => Complete a -> Complete a -> Complete a
$cp2Integral :: forall a. Integral a => Enum (Complete a)
$cp1Integral :: forall a. Integral a => Real (Complete a)
Integral
           , Integer -> Complete a
Complete a -> Complete a
Complete a -> Complete a -> Complete a
(Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Integer -> Complete a)
-> Num (Complete a)
forall a. Num a => Integer -> Complete a
forall a. Num a => Complete a -> Complete a
forall a. Num a => Complete a -> Complete a -> Complete a
forall a.
(a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a)
-> (a -> a)
-> (a -> a)
-> (Integer -> a)
-> Num a
fromInteger :: Integer -> Complete a
$cfromInteger :: forall a. Num a => Integer -> Complete a
signum :: Complete a -> Complete a
$csignum :: forall a. Num a => Complete a -> Complete a
abs :: Complete a -> Complete a
$cabs :: forall a. Num a => Complete a -> Complete a
negate :: Complete a -> Complete a
$cnegate :: forall a. Num a => Complete a -> Complete a
* :: Complete a -> Complete a -> Complete a
$c* :: forall a. Num a => Complete a -> Complete a -> Complete a
- :: Complete a -> Complete a -> Complete a
$c- :: forall a. Num a => Complete a -> Complete a -> Complete a
+ :: Complete a -> Complete a -> Complete a
$c+ :: forall a. Num a => Complete a -> Complete a -> Complete a
Num
           , Num (Complete a)
Ord (Complete a)
Num (Complete a)
-> Ord (Complete a)
-> (Complete a -> Rational)
-> Real (Complete a)
Complete a -> Rational
forall a. Num a -> Ord a -> (a -> Rational) -> Real a
forall a. Real a => Num (Complete a)
forall a. Real a => Ord (Complete a)
forall a. Real a => Complete a -> Rational
toRational :: Complete a -> Rational
$ctoRational :: forall a. Real a => Complete a -> Rational
$cp2Real :: forall a. Real a => Ord (Complete a)
$cp1Real :: forall a. Real a => Num (Complete a)
Real
           , Floating (Complete a)
RealFrac (Complete a)
RealFrac (Complete a)
-> Floating (Complete a)
-> (Complete a -> Integer)
-> (Complete a -> Int)
-> (Complete a -> (Int, Int))
-> (Complete a -> (Integer, Int))
-> (Integer -> Int -> Complete a)
-> (Complete a -> Int)
-> (Complete a -> Complete a)
-> (Int -> Complete a -> Complete a)
-> (Complete a -> Bool)
-> (Complete a -> Bool)
-> (Complete a -> Bool)
-> (Complete a -> Bool)
-> (Complete a -> Bool)
-> (Complete a -> Complete a -> Complete a)
-> RealFloat (Complete a)
Int -> Complete a -> Complete a
Integer -> Int -> Complete a
Complete a -> Bool
Complete a -> Int
Complete a -> Integer
Complete a -> (Int, Int)
Complete a -> (Integer, Int)
Complete a -> Complete a
Complete a -> Complete a -> Complete a
forall a. RealFloat a => Floating (Complete a)
forall a. RealFloat a => RealFrac (Complete a)
forall a. RealFloat a => Int -> Complete a -> Complete a
forall a. RealFloat a => Integer -> Int -> Complete a
forall a. RealFloat a => Complete a -> Bool
forall a. RealFloat a => Complete a -> Int
forall a. RealFloat a => Complete a -> Integer
forall a. RealFloat a => Complete a -> (Int, Int)
forall a. RealFloat a => Complete a -> (Integer, Int)
forall a. RealFloat a => Complete a -> Complete a
forall a. RealFloat a => Complete a -> Complete a -> Complete a
forall a.
RealFrac a
-> Floating a
-> (a -> Integer)
-> (a -> Int)
-> (a -> (Int, Int))
-> (a -> (Integer, Int))
-> (Integer -> Int -> a)
-> (a -> Int)
-> (a -> a)
-> (Int -> a -> a)
-> (a -> Bool)
-> (a -> Bool)
-> (a -> Bool)
-> (a -> Bool)
-> (a -> Bool)
-> (a -> a -> a)
-> RealFloat a
atan2 :: Complete a -> Complete a -> Complete a
$catan2 :: forall a. RealFloat a => Complete a -> Complete a -> Complete a
isIEEE :: Complete a -> Bool
$cisIEEE :: forall a. RealFloat a => Complete a -> Bool
isNegativeZero :: Complete a -> Bool
$cisNegativeZero :: forall a. RealFloat a => Complete a -> Bool
isDenormalized :: Complete a -> Bool
$cisDenormalized :: forall a. RealFloat a => Complete a -> Bool
isInfinite :: Complete a -> Bool
$cisInfinite :: forall a. RealFloat a => Complete a -> Bool
isNaN :: Complete a -> Bool
$cisNaN :: forall a. RealFloat a => Complete a -> Bool
scaleFloat :: Int -> Complete a -> Complete a
$cscaleFloat :: forall a. RealFloat a => Int -> Complete a -> Complete a
significand :: Complete a -> Complete a
$csignificand :: forall a. RealFloat a => Complete a -> Complete a
exponent :: Complete a -> Int
$cexponent :: forall a. RealFloat a => Complete a -> Int
encodeFloat :: Integer -> Int -> Complete a
$cencodeFloat :: forall a. RealFloat a => Integer -> Int -> Complete a
decodeFloat :: Complete a -> (Integer, Int)
$cdecodeFloat :: forall a. RealFloat a => Complete a -> (Integer, Int)
floatRange :: Complete a -> (Int, Int)
$cfloatRange :: forall a. RealFloat a => Complete a -> (Int, Int)
floatDigits :: Complete a -> Int
$cfloatDigits :: forall a. RealFloat a => Complete a -> Int
floatRadix :: Complete a -> Integer
$cfloatRadix :: forall a. RealFloat a => Complete a -> Integer
$cp2RealFloat :: forall a. RealFloat a => Floating (Complete a)
$cp1RealFloat :: forall a. RealFloat a => RealFrac (Complete a)
RealFloat
           , Fractional (Complete a)
Real (Complete a)
Real (Complete a)
-> Fractional (Complete a)
-> (forall b. Integral b => Complete a -> (b, Complete a))
-> (forall b. Integral b => Complete a -> b)
-> (forall b. Integral b => Complete a -> b)
-> (forall b. Integral b => Complete a -> b)
-> (forall b. Integral b => Complete a -> b)
-> RealFrac (Complete a)
Complete a -> b
Complete a -> b
Complete a -> b
Complete a -> b
Complete a -> (b, Complete a)
forall b. Integral b => Complete a -> b
forall b. Integral b => Complete a -> (b, Complete a)
forall a.
Real a
-> Fractional a
-> (forall b. Integral b => a -> (b, a))
-> (forall b. Integral b => a -> b)
-> (forall b. Integral b => a -> b)
-> (forall b. Integral b => a -> b)
-> (forall b. Integral b => a -> b)
-> RealFrac a
forall a. RealFrac a => Fractional (Complete a)
forall a. RealFrac a => Real (Complete a)
forall a b. (RealFrac a, Integral b) => Complete a -> b
forall a b.
(RealFrac a, Integral b) =>
Complete a -> (b, Complete a)
floor :: Complete a -> b
$cfloor :: forall a b. (RealFrac a, Integral b) => Complete a -> b
ceiling :: Complete a -> b
$cceiling :: forall a b. (RealFrac a, Integral b) => Complete a -> b
round :: Complete a -> b
$cround :: forall a b. (RealFrac a, Integral b) => Complete a -> b
truncate :: Complete a -> b
$ctruncate :: forall a b. (RealFrac a, Integral b) => Complete a -> b
properFraction :: Complete a -> (b, Complete a)
$cproperFraction :: forall a b.
(RealFrac a, Integral b) =>
Complete a -> (b, Complete a)
$cp2RealFrac :: forall a. RealFrac a => Fractional (Complete a)
$cp1RealFrac :: forall a. RealFrac a => Real (Complete a)
RealFrac
           , Ord (Complete a)
Ord (Complete a)
-> ((Complete a, Complete a) -> [Complete a])
-> ((Complete a, Complete a) -> Complete a -> Int)
-> ((Complete a, Complete a) -> Complete a -> Int)
-> ((Complete a, Complete a) -> Complete a -> Bool)
-> ((Complete a, Complete a) -> Int)
-> ((Complete a, Complete a) -> Int)
-> Ix (Complete a)
(Complete a, Complete a) -> Int
(Complete a, Complete a) -> [Complete a]
(Complete a, Complete a) -> Complete a -> Bool
(Complete a, Complete a) -> Complete a -> Int
forall a.
Ord a
-> ((a, a) -> [a])
-> ((a, a) -> a -> Int)
-> ((a, a) -> a -> Int)
-> ((a, a) -> a -> Bool)
-> ((a, a) -> Int)
-> ((a, a) -> Int)
-> Ix a
forall a. Ix a => Ord (Complete a)
forall a. Ix a => (Complete a, Complete a) -> Int
forall a. Ix a => (Complete a, Complete a) -> [Complete a]
forall a. Ix a => (Complete a, Complete a) -> Complete a -> Bool
forall a. Ix a => (Complete a, Complete a) -> Complete a -> Int
unsafeRangeSize :: (Complete a, Complete a) -> Int
$cunsafeRangeSize :: forall a. Ix a => (Complete a, Complete a) -> Int
rangeSize :: (Complete a, Complete a) -> Int
$crangeSize :: forall a. Ix a => (Complete a, Complete a) -> Int
inRange :: (Complete a, Complete a) -> Complete a -> Bool
$cinRange :: forall a. Ix a => (Complete a, Complete a) -> Complete a -> Bool
unsafeIndex :: (Complete a, Complete a) -> Complete a -> Int
$cunsafeIndex :: forall a. Ix a => (Complete a, Complete a) -> Complete a -> Int
index :: (Complete a, Complete a) -> Complete a -> Int
$cindex :: forall a. Ix a => (Complete a, Complete a) -> Complete a -> Int
range :: (Complete a, Complete a) -> [Complete a]
$crange :: forall a. Ix a => (Complete a, Complete a) -> [Complete a]
$cp1Ix :: forall a. Ix a => Ord (Complete a)
Ix
           , String -> Complete a
(String -> Complete a) -> IsString (Complete a)
forall a. IsString a => String -> Complete a
forall a. (String -> a) -> IsString a
fromString :: String -> Complete a
$cfromString :: forall a. IsString a => String -> Complete a
IsString
           , Eq (Complete a)
Complete a
Eq (Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a -> Complete a)
-> (Complete a -> Complete a)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int -> Complete a)
-> Complete a
-> (Int -> Complete a)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int -> Bool)
-> (Complete a -> Maybe Int)
-> (Complete a -> Int)
-> (Complete a -> Bool)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int -> Complete a)
-> (Complete a -> Int)
-> Bits (Complete a)
Int -> Complete a
Complete a -> Bool
Complete a -> Int
Complete a -> Maybe Int
Complete a -> Complete a
Complete a -> Int -> Bool
Complete a -> Int -> Complete a
Complete a -> Complete a -> Complete a
forall a.
Eq a
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> a
-> (Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> Bool)
-> (a -> Maybe Int)
-> (a -> Int)
-> (a -> Bool)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int)
-> Bits a
forall a. Bits a => Eq (Complete a)
forall a. Bits a => Complete a
forall a. Bits a => Int -> Complete a
forall a. Bits a => Complete a -> Bool
forall a. Bits a => Complete a -> Int
forall a. Bits a => Complete a -> Maybe Int
forall a. Bits a => Complete a -> Complete a
forall a. Bits a => Complete a -> Int -> Bool
forall a. Bits a => Complete a -> Int -> Complete a
forall a. Bits a => Complete a -> Complete a -> Complete a
popCount :: Complete a -> Int
$cpopCount :: forall a. Bits a => Complete a -> Int
rotateR :: Complete a -> Int -> Complete a
$crotateR :: forall a. Bits a => Complete a -> Int -> Complete a
rotateL :: Complete a -> Int -> Complete a
$crotateL :: forall a. Bits a => Complete a -> Int -> Complete a
unsafeShiftR :: Complete a -> Int -> Complete a
$cunsafeShiftR :: forall a. Bits a => Complete a -> Int -> Complete a
shiftR :: Complete a -> Int -> Complete a
$cshiftR :: forall a. Bits a => Complete a -> Int -> Complete a
unsafeShiftL :: Complete a -> Int -> Complete a
$cunsafeShiftL :: forall a. Bits a => Complete a -> Int -> Complete a
shiftL :: Complete a -> Int -> Complete a
$cshiftL :: forall a. Bits a => Complete a -> Int -> Complete a
isSigned :: Complete a -> Bool
$cisSigned :: forall a. Bits a => Complete a -> Bool
bitSize :: Complete a -> Int
$cbitSize :: forall a. Bits a => Complete a -> Int
bitSizeMaybe :: Complete a -> Maybe Int
$cbitSizeMaybe :: forall a. Bits a => Complete a -> Maybe Int
testBit :: Complete a -> Int -> Bool
$ctestBit :: forall a. Bits a => Complete a -> Int -> Bool
complementBit :: Complete a -> Int -> Complete a
$ccomplementBit :: forall a. Bits a => Complete a -> Int -> Complete a
clearBit :: Complete a -> Int -> Complete a
$cclearBit :: forall a. Bits a => Complete a -> Int -> Complete a
setBit :: Complete a -> Int -> Complete a
$csetBit :: forall a. Bits a => Complete a -> Int -> Complete a
bit :: Int -> Complete a
$cbit :: forall a. Bits a => Int -> Complete a
zeroBits :: Complete a
$czeroBits :: forall a. Bits a => Complete a
rotate :: Complete a -> Int -> Complete a
$crotate :: forall a. Bits a => Complete a -> Int -> Complete a
shift :: Complete a -> Int -> Complete a
$cshift :: forall a. Bits a => Complete a -> Int -> Complete a
complement :: Complete a -> Complete a
$ccomplement :: forall a. Bits a => Complete a -> Complete a
xor :: Complete a -> Complete a -> Complete a
$cxor :: forall a. Bits a => Complete a -> Complete a -> Complete a
.|. :: Complete a -> Complete a -> Complete a
$c.|. :: forall a. Bits a => Complete a -> Complete a -> Complete a
.&. :: Complete a -> Complete a -> Complete a
$c.&. :: forall a. Bits a => Complete a -> Complete a -> Complete a
$cp1Bits :: forall a. Bits a => Eq (Complete a)
Bits
           , Bits (Complete a)
Bits (Complete a)
-> (Complete a -> Int)
-> (Complete a -> Int)
-> (Complete a -> Int)
-> FiniteBits (Complete a)
Complete a -> Int
forall b.
Bits b -> (b -> Int) -> (b -> Int) -> (b -> Int) -> FiniteBits b
forall a. FiniteBits a => Bits (Complete a)
forall a. FiniteBits a => Complete a -> Int
countTrailingZeros :: Complete a -> Int
$ccountTrailingZeros :: forall a. FiniteBits a => Complete a -> Int
countLeadingZeros :: Complete a -> Int
$ccountLeadingZeros :: forall a. FiniteBits a => Complete a -> Int
finiteBitSize :: Complete a -> Int
$cfiniteBitSize :: forall a. FiniteBits a => Complete a -> Int
$cp1FiniteBits :: forall a. FiniteBits a => Bits (Complete a)
FiniteBits
           )
  deriving ( (a -> b -> Bool) -> Complete a -> Complete b -> Bool
(forall a b. (a -> b -> Bool) -> Complete a -> Complete b -> Bool)
-> Eq1 Complete
forall a b. (a -> b -> Bool) -> Complete a -> Complete b -> Bool
forall (f :: * -> *).
(forall a b. (a -> b -> Bool) -> f a -> f b -> Bool) -> Eq1 f
liftEq :: (a -> b -> Bool) -> Complete a -> Complete b -> Bool
$cliftEq :: forall a b. (a -> b -> Bool) -> Complete a -> Complete b -> Bool
Eq1
           , Eq1 Complete
Eq1 Complete
-> (forall a b.
    (a -> b -> Ordering) -> Complete a -> Complete b -> Ordering)
-> Ord1 Complete
(a -> b -> Ordering) -> Complete a -> Complete b -> Ordering
forall a b.
(a -> b -> Ordering) -> Complete a -> Complete b -> Ordering
forall (f :: * -> *).
Eq1 f
-> (forall a b. (a -> b -> Ordering) -> f a -> f b -> Ordering)
-> Ord1 f
liftCompare :: (a -> b -> Ordering) -> Complete a -> Complete b -> Ordering
$cliftCompare :: forall a b.
(a -> b -> Ordering) -> Complete a -> Complete b -> Ordering
$cp1Ord1 :: Eq1 Complete
Ord1
           , ReadPrec a -> ReadPrec [a] -> ReadPrec (Complete a)
ReadPrec a -> ReadPrec [a] -> ReadPrec [Complete a]
(Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (Complete a)
(Int -> ReadS a) -> ReadS [a] -> ReadS [Complete a]
(forall a.
 (Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (Complete a))
-> (forall a. (Int -> ReadS a) -> ReadS [a] -> ReadS [Complete a])
-> (forall a. ReadPrec a -> ReadPrec [a] -> ReadPrec (Complete a))
-> (forall a. ReadPrec a -> ReadPrec [a] -> ReadPrec [Complete a])
-> Read1 Complete
forall a. ReadPrec a -> ReadPrec [a] -> ReadPrec [Complete a]
forall a. ReadPrec a -> ReadPrec [a] -> ReadPrec (Complete a)
forall a.
(Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (Complete a)
forall a. (Int -> ReadS a) -> ReadS [a] -> ReadS [Complete a]
forall (f :: * -> *).
(forall a. (Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (f a))
-> (forall a. (Int -> ReadS a) -> ReadS [a] -> ReadS [f a])
-> (forall a. ReadPrec a -> ReadPrec [a] -> ReadPrec (f a))
-> (forall a. ReadPrec a -> ReadPrec [a] -> ReadPrec [f a])
-> Read1 f
liftReadListPrec :: ReadPrec a -> ReadPrec [a] -> ReadPrec [Complete a]
$cliftReadListPrec :: forall a. ReadPrec a -> ReadPrec [a] -> ReadPrec [Complete a]
liftReadPrec :: ReadPrec a -> ReadPrec [a] -> ReadPrec (Complete a)
$cliftReadPrec :: forall a. ReadPrec a -> ReadPrec [a] -> ReadPrec (Complete a)
liftReadList :: (Int -> ReadS a) -> ReadS [a] -> ReadS [Complete a]
$cliftReadList :: forall a. (Int -> ReadS a) -> ReadS [a] -> ReadS [Complete a]
liftReadsPrec :: (Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (Complete a)
$cliftReadsPrec :: forall a.
(Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (Complete a)
Read1
           , (Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> Complete a -> ShowS
(Int -> a -> ShowS) -> ([a] -> ShowS) -> [Complete a] -> ShowS
(forall a.
 (Int -> a -> ShowS)
 -> ([a] -> ShowS) -> Int -> Complete a -> ShowS)
-> (forall a.
    (Int -> a -> ShowS) -> ([a] -> ShowS) -> [Complete a] -> ShowS)
-> Show1 Complete
forall a.
(Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> Complete a -> ShowS
forall a.
(Int -> a -> ShowS) -> ([a] -> ShowS) -> [Complete a] -> ShowS
forall (f :: * -> *).
(forall a.
 (Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> f a -> ShowS)
-> (forall a.
    (Int -> a -> ShowS) -> ([a] -> ShowS) -> [f a] -> ShowS)
-> Show1 f
liftShowList :: (Int -> a -> ShowS) -> ([a] -> ShowS) -> [Complete a] -> ShowS
$cliftShowList :: forall a.
(Int -> a -> ShowS) -> ([a] -> ShowS) -> [Complete a] -> ShowS
liftShowsPrec :: (Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> Complete a -> ShowS
$cliftShowsPrec :: forall a.
(Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> Complete a -> ShowS
Show1
           , a -> Complete a
(forall a. a -> Complete a) -> Pointed Complete
forall a. a -> Complete a
forall (p :: * -> *). (forall a. a -> p a) -> Pointed p
point :: a -> Complete a
$cpoint :: forall a. a -> Complete a
Pointed
           , Complete a -> a
(forall a. Complete a -> a) -> Copointed Complete
forall a. Complete a -> a
forall (p :: * -> *). (forall a. p a -> a) -> Copointed p
copoint :: Complete a -> a
$ccopoint :: forall a. Complete a -> a
Copointed
           , Functor Complete
a -> Complete a
Functor Complete
-> (forall a. a -> Complete a)
-> (forall a b. Complete (a -> b) -> Complete a -> Complete b)
-> (forall a b c.
    (a -> b -> c) -> Complete a -> Complete b -> Complete c)
-> (forall a b. Complete a -> Complete b -> Complete b)
-> (forall a b. Complete a -> Complete b -> Complete a)
-> Applicative Complete
Complete a -> Complete b -> Complete b
Complete a -> Complete b -> Complete a
Complete (a -> b) -> Complete a -> Complete b
(a -> b -> c) -> Complete a -> Complete b -> Complete c
forall a. a -> Complete a
forall a b. Complete a -> Complete b -> Complete a
forall a b. Complete a -> Complete b -> Complete b
forall a b. Complete (a -> b) -> Complete a -> Complete b
forall a b c.
(a -> b -> c) -> Complete a -> Complete b -> Complete c
forall (f :: * -> *).
Functor f
-> (forall a. a -> f a)
-> (forall a b. f (a -> b) -> f a -> f b)
-> (forall a b c. (a -> b -> c) -> f a -> f b -> f c)
-> (forall a b. f a -> f b -> f b)
-> (forall a b. f a -> f b -> f a)
-> Applicative f
<* :: Complete a -> Complete b -> Complete a
$c<* :: forall a b. Complete a -> Complete b -> Complete a
*> :: Complete a -> Complete b -> Complete b
$c*> :: forall a b. Complete a -> Complete b -> Complete b
liftA2 :: (a -> b -> c) -> Complete a -> Complete b -> Complete c
$cliftA2 :: forall a b c.
(a -> b -> c) -> Complete a -> Complete b -> Complete c
<*> :: Complete (a -> b) -> Complete a -> Complete b
$c<*> :: forall a b. Complete (a -> b) -> Complete a -> Complete b
pure :: a -> Complete a
$cpure :: forall a. a -> Complete a
$cp1Applicative :: Functor Complete
Applicative
           , Monad Complete
Monad Complete
-> (forall a. (a -> Complete a) -> Complete a) -> MonadFix Complete
(a -> Complete a) -> Complete a
forall a. (a -> Complete a) -> Complete a
forall (m :: * -> *).
Monad m -> (forall a. (a -> m a) -> m a) -> MonadFix m
mfix :: (a -> Complete a) -> Complete a
$cmfix :: forall a. (a -> Complete a) -> Complete a
$cp1MonadFix :: Monad Complete
MonadFix
           , Applicative Complete
a -> Complete a
Applicative Complete
-> (forall a b. Complete a -> (a -> Complete b) -> Complete b)
-> (forall a b. Complete a -> Complete b -> Complete b)
-> (forall a. a -> Complete a)
-> Monad Complete
Complete a -> (a -> Complete b) -> Complete b
Complete a -> Complete b -> Complete b
forall a. a -> Complete a
forall a b. Complete a -> Complete b -> Complete b
forall a b. Complete a -> (a -> Complete b) -> Complete b
forall (m :: * -> *).
Applicative m
-> (forall a b. m a -> (a -> m b) -> m b)
-> (forall a b. m a -> m b -> m b)
-> (forall a. a -> m a)
-> Monad m
return :: a -> Complete a
$creturn :: forall a. a -> Complete a
>> :: Complete a -> Complete b -> Complete b
$c>> :: forall a b. Complete a -> Complete b -> Complete b
>>= :: Complete a -> (a -> Complete b) -> Complete b
$c>>= :: forall a b. Complete a -> (a -> Complete b) -> Complete b
$cp1Monad :: Applicative Complete
Monad
           , Monad Complete
Monad Complete
-> (forall a b. Complete a -> Complete b -> Complete (a, b))
-> (forall a b c.
    (a -> b -> c) -> Complete a -> Complete b -> Complete c)
-> (forall a b. Complete (a, b) -> (Complete a, Complete b))
-> MonadZip Complete
Complete a -> Complete b -> Complete (a, b)
Complete (a, b) -> (Complete a, Complete b)
(a -> b -> c) -> Complete a -> Complete b -> Complete c
forall a b. Complete a -> Complete b -> Complete (a, b)
forall a b. Complete (a, b) -> (Complete a, Complete b)
forall a b c.
(a -> b -> c) -> Complete a -> Complete b -> Complete c
forall (m :: * -> *).
Monad m
-> (forall a b. m a -> m b -> m (a, b))
-> (forall a b c. (a -> b -> c) -> m a -> m b -> m c)
-> (forall a b. m (a, b) -> (m a, m b))
-> MonadZip m
munzip :: Complete (a, b) -> (Complete a, Complete b)
$cmunzip :: forall a b. Complete (a, b) -> (Complete a, Complete b)
mzipWith :: (a -> b -> c) -> Complete a -> Complete b -> Complete c
$cmzipWith :: forall a b c.
(a -> b -> c) -> Complete a -> Complete b -> Complete c
mzip :: Complete a -> Complete b -> Complete (a, b)
$cmzip :: forall a b. Complete a -> Complete b -> Complete (a, b)
$cp1MonadZip :: Monad Complete
MonadZip
           , Functor Complete
Functor Complete
-> (forall a. Complete a -> a)
-> (forall a. Complete a -> Complete (Complete a))
-> (forall a b. (Complete a -> b) -> Complete a -> Complete b)
-> Comonad Complete
Complete a -> a
Complete a -> Complete (Complete a)
(Complete a -> b) -> Complete a -> Complete b
forall a. Complete a -> a
forall a. Complete a -> Complete (Complete a)
forall a b. (Complete a -> b) -> Complete a -> Complete b
forall (w :: * -> *).
Functor w
-> (forall a. w a -> a)
-> (forall a. w a -> w (w a))
-> (forall a b. (w a -> b) -> w a -> w b)
-> Comonad w
extend :: (Complete a -> b) -> Complete a -> Complete b
$cextend :: forall a b. (Complete a -> b) -> Complete a -> Complete b
duplicate :: Complete a -> Complete (Complete a)
$cduplicate :: forall a. Complete a -> Complete (Complete a)
extract :: Complete a -> a
$cextract :: forall a. Complete a -> a
$cp1Comonad :: Functor Complete
Comonad
           )
           via Identity

_theComplete :: Complete x -> x
_theComplete :: Complete x -> x
_theComplete (Complete !x
x) = x
x
{-# INLINE _theComplete #-}

theComplete :: forall a b p f. (Profunctor p, Functor f) => p a (f b) -> p (Complete a) (f (Complete b))
theComplete :: p a (f b) -> p (Complete a) (f (Complete b))
theComplete = (Complete a -> a)
-> (f b -> f (Complete b))
-> p a (f b)
-> p (Complete a) (f (Complete b))
forall (p :: * -> * -> *) a b c d.
Profunctor p =>
(a -> b) -> (c -> d) -> p b c -> p a d
dimap Complete a -> a
forall a. Complete a -> a
_theComplete ((b -> Complete b) -> f b -> f (Complete b)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap b -> Complete b
forall a. a -> Complete a
Complete)
{-# INLINE theComplete #-}