singletons-2.2: A framework for generating singleton types

Copyright(C) 2014 Jan Stolarek
LicenseBSD-style (see LICENSE)
MaintainerJan Stolarek (jan.stolarek@p.lodz.pl)
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Data.Promotion.Prelude

Contents

Description

Mimics the Haskell Prelude, but with promoted types.

Synopsis

Standard types, classes and related functions

Basic data types

type family If k (cond :: Bool) (tru :: k) (fls :: k) :: k where ... #

Type-level If. If True a b ==> a; If False a b ==> b

Equations

If k True tru fls = tru 
If k False tru fls = fls 

type family Not (a :: Bool) :: Bool where ... #

type family (a :: Bool) :&& (a :: Bool) :: Bool where ... infixr 3 #

Equations

False :&& _z_6989586621679479432 = FalseSym0 
True :&& x = x 

type family (a :: Bool) :|| (a :: Bool) :: Bool where ... infixr 2 #

Equations

False :|| x = x 
True :|| _z_6989586621679479420 = TrueSym0 

type family Otherwise :: Bool where ... #

Equations

Otherwise = TrueSym0 

maybe_ :: forall b a. b -> (a -> b) -> Maybe a -> b #

type family Maybe_ (a :: b) (a :: TyFun a b -> Type) (a :: Maybe a) :: b where ... #

Equations

Maybe_ n _z_6989586621679676169 Nothing = n 
Maybe_ _z_6989586621679676172 f (Just x) = Apply f x 

either_ :: forall a c b. (a -> c) -> (b -> c) -> Either a b -> c #

type family Either_ (a :: TyFun a c -> Type) (a :: TyFun b c -> Type) (a :: Either a b) :: c where ... #

Equations

Either_ f _z_6989586621679667687 (Left x) = Apply f x 
Either_ _z_6989586621679667691 g (Right y) = Apply g y 

data Symbol :: * #

(Kind) This is the kind of type-level symbols. Declared here because class IP needs it

Instances

KnownSymbol a => SingI Symbol a 

Methods

sing :: Sing a a

SingKind Symbol (KProxy Symbol) 

Associated Types

type DemoteRep (KProxy Symbol) (kparam :: KProxy (KProxy Symbol)) :: *

Methods

fromSing :: Sing (KProxy Symbol) a -> DemoteRep (KProxy Symbol) kparam

data Sing Symbol 
data Sing Symbol where
type DemoteRep Symbol # 
data Sing Symbol # 
data Sing Symbol where
type (==) Symbol a b 
type (==) Symbol a b = EqSymbol a b
type (:==) Symbol a b # 
type (:==) Symbol a b = (==) Symbol a b
type (:/=) Symbol x y # 
type (:/=) Symbol x y = Not ((:==) Symbol x y)
type Compare Symbol a b # 
type Compare Symbol a b = CmpSymbol a b
type (:<) Symbol arg0 arg1 # 
type (:<) Symbol arg0 arg1
type (:<=) Symbol arg0 arg1 # 
type (:<=) Symbol arg0 arg1
type (:>) Symbol arg0 arg1 # 
type (:>) Symbol arg0 arg1
type (:>=) Symbol arg0 arg1 # 
type (:>=) Symbol arg0 arg1
type Max Symbol arg0 arg1 # 
type Max Symbol arg0 arg1
type Min Symbol arg0 arg1 # 
type Min Symbol arg0 arg1
type DemoteRep Symbol (KProxy Symbol) 
type DemoteRep Symbol (KProxy Symbol) = String

type family Fst (a :: (a, b)) :: a where ... #

Equations

Fst '(x, _z_6989586621679686109) = x 

type family Snd (a :: (a, b)) :: b where ... #

Equations

Snd '(_z_6989586621679686100, y) = y 

type family Curry (a :: TyFun (a, b) c -> Type) (a :: a) (a :: b) :: c where ... #

Equations

Curry f x y = Apply f (Apply (Apply Tuple2Sym0 x) y) 

type family Uncurry (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: (a, b)) :: c where ... #

Equations

Uncurry f p = Apply (Apply f (Apply FstSym0 p)) (Apply SndSym0 p) 

Error reporting

type family Error (str :: k0) :: k #

The promotion of error. This version is more poly-kinded for easier use.

data ErrorSym0 l #

Instances

SuppressUnusedWarnings (TyFun k06989586621679591922 k6989586621679591924 -> *) (ErrorSym0 k06989586621679591922 k6989586621679591924) # 

Methods

suppressUnusedWarnings :: Proxy (ErrorSym0 k06989586621679591922 k6989586621679591924) t -> () #

type Apply k06989586621679591922 k2 (ErrorSym0 k06989586621679591922 k2) l0 # 
type Apply k06989586621679591922 k2 (ErrorSym0 k06989586621679591922 k2) l0 = ErrorSym1 k2 k06989586621679591922 l0

Promoted equality

Promoted comparisons

Promoted enumerations

As a matter of convenience, the promoted Prelude does not export promoted succ and pred, due to likely conflicts with unary numbers. Please import Enum directly if you want these.

Promoted numbers

Miscellaneous functions

type family Id (a :: a) :: a where ... #

Equations

Id x = x 

type family Const (a :: a) (a :: b) :: a where ... #

Equations

Const x _z_6989586621679482654 = x 

type family ((a :: TyFun b c -> Type) :. (a :: TyFun a b -> Type)) (a :: a) :: c where ... infixr 9 #

Equations

(f :. g) a_6989586621679482617 = Apply (Apply (Apply (Apply Lambda_6989586621679482622Sym0 f) g) a_6989586621679482617) a_6989586621679482617 

type family (f :: TyFun a b -> *) $ (x :: a) :: b infixr 0 #

Instances

type ($) k1 k2 f x # 
type ($) k1 k2 f x = (@@) k1 k2 f x

type family (f :: TyFun a b -> *) $! (x :: a) :: b infixr 0 #

Instances

type ($!) k1 k2 f x # 
type ($!) k1 k2 f x = (@@) k1 k2 f x

type family Flip (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: b) (a :: a) :: c where ... #

Equations

Flip f x y = Apply (Apply f y) x 

type family AsTypeOf (a :: a) (a :: a) :: a where ... #

Equations

AsTypeOf a_6989586621679482657 a_6989586621679482659 = Apply (Apply ConstSym0 a_6989586621679482657) a_6989586621679482659 

type family Until (a :: TyFun a Bool -> Type) (a :: TyFun a a -> Type) (a :: a) :: a where ... #

Equations

Until p f a_6989586621679941980 = Apply (Let6989586621679941985GoSym3 p f a_6989586621679941980) a_6989586621679941980 

type family Seq (a :: a) (a :: b) :: b where ... infixr 0 #

Equations

Seq _z_6989586621679482580 x = x 

List operations

type family Map (a :: TyFun a b -> Type) (a :: [a]) :: [b] where ... #

Equations

Map _z_6989586621679482699 '[] = '[] 
Map f ((:) x xs) = Apply (Apply (:$) (Apply f x)) (Apply (Apply MapSym0 f) xs) 

type family (a :: [a]) :++ (a :: [a]) :: [a] where ... infixr 5 #

Equations

'[] :++ ys = ys 
((:) x xs) :++ ys = Apply (Apply (:$) x) (Apply (Apply (:++$) xs) ys) 

type family Filter (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ... #

Equations

Filter _p '[] = '[] 
Filter p ((:) x xs) = Case_6989586621679702238 p x xs (Let6989586621679702225Scrutinee_6989586621679700672Sym3 p x xs) 

type family Head (a :: [a]) :: a where ... #

Equations

Head ((:) a _z_6989586621679704843) = a 
Head '[] = Apply ErrorSym0 "Data.Singletons.List.head: empty list" 

type family Last (a :: [a]) :: a where ... #

Equations

Last '[] = Apply ErrorSym0 "Data.Singletons.List.last: empty list" 
Last '[x] = x 
Last ((:) _z_6989586621679704833 ((:) x xs)) = Apply LastSym0 (Apply (Apply (:$) x) xs) 

type family Tail (a :: [a]) :: [a] where ... #

Equations

Tail ((:) _z_6989586621679704824 t) = t 
Tail '[] = Apply ErrorSym0 "Data.Singletons.List.tail: empty list" 

type family Init (a :: [a]) :: [a] where ... #

Equations

Init '[] = Apply ErrorSym0 "Data.Singletons.List.init: empty list" 
Init ((:) x xs) = Apply (Apply (Let6989586621679704793Init'Sym2 x xs) x) xs 

type family Null (a :: [a]) :: Bool where ... #

Equations

Null '[] = TrueSym0 
Null ((:) _z_6989586621679704722 _z_6989586621679704725) = FalseSym0 

type family Length (a :: [a]) :: Nat where ... #

Equations

Length '[] = FromInteger 0 
Length ((:) _z_6989586621679701637 xs) = Apply (Apply (:+$) (FromInteger 1)) (Apply LengthSym0 xs) 

type family (a :: [a]) :!! (a :: Nat) :: a where ... #

Equations

'[] :!! _z_6989586621679701589 = Apply ErrorSym0 "Data.Singletons.List.!!: index too large" 
((:) x xs) :!! n = Case_6989586621679701608 x xs n (Let6989586621679701595Scrutinee_6989586621679700712Sym3 x xs n) 

type family Reverse (a :: [a]) :: [a] where ... #

Equations

Reverse l = Apply (Apply (Let6989586621679704688RevSym1 l) l) '[] 

Reducing lists (folds)

type family Foldl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ... #

Equations

Foldl f z0 xs0 = Apply (Apply (Let6989586621679448376LgoSym3 f z0 xs0) z0) xs0 

type family Foldl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ... #

Equations

Foldl1 f ((:) x xs) = Apply (Apply (Apply FoldlSym0 f) x) xs 
Foldl1 _z_6989586621679703932 '[] = Apply ErrorSym0 "Data.Singletons.List.foldl1: empty list" 

type family Foldr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ... #

Equations

Foldr k z a_6989586621679482720 = Apply (Let6989586621679482725GoSym3 k z a_6989586621679482720) a_6989586621679482720 

type family Foldr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ... #

Equations

Foldr1 _z_6989586621679703890 '[x] = x 
Foldr1 f ((:) x ((:) wild_6989586621679700618 wild_6989586621679700620)) = Apply (Apply f x) (Apply (Apply Foldr1Sym0 f) (Let6989586621679703898XsSym4 f x wild_6989586621679700618 wild_6989586621679700620)) 
Foldr1 _z_6989586621679703917 '[] = Apply ErrorSym0 "Data.Singletons.List.foldr1: empty list" 

Special folds

type family And (a :: [Bool]) :: Bool where ... #

Equations

And '[] = TrueSym0 
And ((:) x xs) = Apply (Apply (:&&$) x) (Apply AndSym0 xs) 

type family Or (a :: [Bool]) :: Bool where ... #

Equations

Or '[] = FalseSym0 
Or ((:) x xs) = Apply (Apply (:||$) x) (Apply OrSym0 xs) 

any_ :: forall a. (a -> Bool) -> [a] -> Bool #

type family Any_ (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ... #

Equations

Any_ _z_6989586621679689481 '[] = FalseSym0 
Any_ p ((:) x xs) = Apply (Apply (:||$) (Apply p x)) (Apply (Apply Any_Sym0 p) xs) 

type family All (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ... #

Equations

All _z_6989586621679703843 '[] = TrueSym0 
All p ((:) x xs) = Apply (Apply (:&&$) (Apply p x)) (Apply (Apply AllSym0 p) xs) 

type family Sum (a :: [a]) :: a where ... #

Equations

Sum l = Apply (Apply (Let6989586621679701670Sum'Sym1 l) l) (FromInteger 0) 

type family Product (a :: [a]) :: a where ... #

Equations

Product l = Apply (Apply (Let6989586621679701646ProdSym1 l) l) (FromInteger 1) 

type family Concat (a :: [[a]]) :: [a] where ... #

Equations

Concat a_6989586621679703874 = Apply (Apply (Apply FoldrSym0 (:++$)) '[]) a_6989586621679703874 

type family ConcatMap (a :: TyFun a [b] -> Type) (a :: [a]) :: [b] where ... #

Equations

ConcatMap f a_6989586621679703870 = Apply (Apply (Apply FoldrSym0 (Apply (Apply (:.$) (:++$)) f)) '[]) a_6989586621679703870 

type family Maximum (a :: [a]) :: a where ... #

Equations

Maximum '[] = Apply ErrorSym0 "Data.Singletons.List.maximum: empty list" 
Maximum ((:) wild_6989586621679700698 wild_6989586621679700700) = Apply (Apply Foldl1Sym0 MaxSym0) (Let6989586621679704115XsSym2 wild_6989586621679700698 wild_6989586621679700700) 

type family Minimum (a :: [a]) :: a where ... #

Equations

Minimum '[] = Apply ErrorSym0 "Data.Singletons.List.minimum: empty list" 
Minimum ((:) wild_6989586621679700702 wild_6989586621679700704) = Apply (Apply Foldl1Sym0 MinSym0) (Let6989586621679704129XsSym2 wild_6989586621679700702 wild_6989586621679700704) 

Building lists

Scans

type family Scanl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ... #

Equations

Scanl f q ls = Apply (Apply (:$) q) (Case_6989586621679703814 f q ls ls) 

type family Scanl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ... #

Equations

Scanl1 f ((:) x xs) = Apply (Apply (Apply ScanlSym0 f) x) xs 
Scanl1 _z_6989586621679703831 '[] = '[] 

type family Scanr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ... #

Equations

Scanr _z_6989586621679703764 q0 '[] = Apply (Apply (:$) q0) '[] 
Scanr f q0 ((:) x xs) = Case_6989586621679703791 f q0 x xs (Let6989586621679703772Scrutinee_6989586621679700622Sym4 f q0 x xs) 

type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ... #

Equations

Scanr1 _z_6989586621679703695 '[] = '[] 
Scanr1 _z_6989586621679703698 '[x] = Apply (Apply (:$) x) '[] 
Scanr1 f ((:) x ((:) wild_6989586621679700626 wild_6989586621679700628)) = Case_6989586621679703744 f x wild_6989586621679700626 wild_6989586621679700628 (Let6989586621679703725Scrutinee_6989586621679700624Sym4 f x wild_6989586621679700626 wild_6989586621679700628) 

Infinite lists

type family Replicate (a :: Nat) (a :: a) :: [a] where ... #

Equations

Replicate n x = Case_6989586621679701630 n x (Let6989586621679701622Scrutinee_6989586621679700710Sym2 n x) 

Sublists

type family Take (a :: Nat) (a :: [a]) :: [a] where ... #

Equations

Take _z_6989586621679701817 '[] = '[] 
Take n ((:) x xs) = Case_6989586621679701836 n x xs (Let6989586621679701823Scrutinee_6989586621679700694Sym3 n x xs) 

type family Drop (a :: Nat) (a :: [a]) :: [a] where ... #

Equations

Drop _z_6989586621679701786 '[] = '[] 
Drop n ((:) x xs) = Case_6989586621679701805 n x xs (Let6989586621679701792Scrutinee_6989586621679700696Sym3 n x xs) 

type family SplitAt (a :: Nat) (a :: [a]) :: ([a], [a]) where ... #

Equations

SplitAt n xs = Apply (Apply Tuple2Sym0 (Apply (Apply TakeSym0 n) xs)) (Apply (Apply DropSym0 n) xs) 

type family TakeWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ... #

Equations

TakeWhile _z_6989586621679702190 '[] = '[] 
TakeWhile p ((:) x xs) = Case_6989586621679702209 p x xs (Let6989586621679702196Scrutinee_6989586621679700684Sym3 p x xs) 

type family DropWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ... #

Equations

DropWhile _z_6989586621679702146 '[] = '[] 
DropWhile p ((:) x xs') = Case_6989586621679702178 p x xs' (Let6989586621679702165Scrutinee_6989586621679700686Sym3 p x xs') 

type family Span (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ... #

Equations

Span _z_6989586621679701964 '[] = Apply (Apply Tuple2Sym0 (Let6989586621679701967XsSym1 _z_6989586621679701964)) (Let6989586621679701967XsSym1 _z_6989586621679701964) 
Span p ((:) x xs') = Case_6989586621679702000 p x xs' (Let6989586621679701987Scrutinee_6989586621679700690Sym3 p x xs') 

type family Break (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ... #

Equations

Break _z_6989586621679701859 '[] = Apply (Apply Tuple2Sym0 (Let6989586621679701862XsSym1 _z_6989586621679701859)) (Let6989586621679701862XsSym1 _z_6989586621679701859) 
Break p ((:) x xs') = Case_6989586621679701895 p x xs' (Let6989586621679701882Scrutinee_6989586621679700692Sym3 p x xs') 

Searching lists

type family Elem (a :: a) (a :: [a]) :: Bool where ... #

Equations

Elem _z_6989586621679703206 '[] = FalseSym0 
Elem x ((:) y ys) = Apply (Apply (:||$) (Apply (Apply (:==$) x) y)) (Apply (Apply ElemSym0 x) ys) 

type family NotElem (a :: a) (a :: [a]) :: Bool where ... #

Equations

NotElem _z_6989586621679703191 '[] = TrueSym0 
NotElem x ((:) y ys) = Apply (Apply (:&&$) (Apply (Apply (:/=$) x) y)) (Apply (Apply NotElemSym0 x) ys) 

type family Lookup (a :: a) (a :: [(a, b)]) :: Maybe b where ... #

Equations

Lookup _key '[] = NothingSym0 
Lookup key ((:) '(x, y) xys) = Case_6989586621679701774 key x y xys (Let6989586621679701755Scrutinee_6989586621679700706Sym4 key x y xys) 

Zipping and unzipping lists

type family Zip (a :: [a]) (a :: [b]) :: [(a, b)] where ... #

Equations

Zip ((:) x xs) ((:) y ys) = Apply (Apply (:$) (Apply (Apply Tuple2Sym0 x) y)) (Apply (Apply ZipSym0 xs) ys) 
Zip '[] '[] = '[] 
Zip ((:) _z_6989586621679703068 _z_6989586621679703071) '[] = '[] 
Zip '[] ((:) _z_6989586621679703074 _z_6989586621679703077) = '[] 

type family Zip3 (a :: [a]) (a :: [b]) (a :: [c]) :: [(a, b, c)] where ... #

Equations

Zip3 ((:) a as) ((:) b bs) ((:) c cs) = Apply (Apply (:$) (Apply (Apply (Apply Tuple3Sym0 a) b) c)) (Apply (Apply (Apply Zip3Sym0 as) bs) cs) 
Zip3 '[] '[] '[] = '[] 
Zip3 '[] '[] ((:) _z_6989586621679703001 _z_6989586621679703004) = '[] 
Zip3 '[] ((:) _z_6989586621679703007 _z_6989586621679703010) '[] = '[] 
Zip3 '[] ((:) _z_6989586621679703013 _z_6989586621679703016) ((:) _z_6989586621679703019 _z_6989586621679703022) = '[] 
Zip3 ((:) _z_6989586621679703025 _z_6989586621679703028) '[] '[] = '[] 
Zip3 ((:) _z_6989586621679703031 _z_6989586621679703034) '[] ((:) _z_6989586621679703037 _z_6989586621679703040) = '[] 
Zip3 ((:) _z_6989586621679703043 _z_6989586621679703046) ((:) _z_6989586621679703049 _z_6989586621679703052) '[] = '[] 

type family ZipWith (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: [a]) (a :: [b]) :: [c] where ... #

Equations

ZipWith f ((:) x xs) ((:) y ys) = Apply (Apply (:$) (Apply (Apply f x) y)) (Apply (Apply (Apply ZipWithSym0 f) xs) ys) 
ZipWith _z_6989586621679702959 '[] '[] = '[] 
ZipWith _z_6989586621679702962 ((:) _z_6989586621679702965 _z_6989586621679702968) '[] = '[] 
ZipWith _z_6989586621679702971 '[] ((:) _z_6989586621679702974 _z_6989586621679702977) = '[] 

type family ZipWith3 (a :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) :: [d] where ... #

Equations

ZipWith3 z ((:) a as) ((:) b bs) ((:) c cs) = Apply (Apply (:$) (Apply (Apply (Apply z a) b) c)) (Apply (Apply (Apply (Apply ZipWith3Sym0 z) as) bs) cs) 
ZipWith3 _z_6989586621679702864 '[] '[] '[] = '[] 
ZipWith3 _z_6989586621679702867 '[] '[] ((:) _z_6989586621679702870 _z_6989586621679702873) = '[] 
ZipWith3 _z_6989586621679702876 '[] ((:) _z_6989586621679702879 _z_6989586621679702882) '[] = '[] 
ZipWith3 _z_6989586621679702885 '[] ((:) _z_6989586621679702888 _z_6989586621679702891) ((:) _z_6989586621679702894 _z_6989586621679702897) = '[] 
ZipWith3 _z_6989586621679702900 ((:) _z_6989586621679702903 _z_6989586621679702906) '[] '[] = '[] 
ZipWith3 _z_6989586621679702909 ((:) _z_6989586621679702912 _z_6989586621679702915) '[] ((:) _z_6989586621679702918 _z_6989586621679702921) = '[] 
ZipWith3 _z_6989586621679702924 ((:) _z_6989586621679702927 _z_6989586621679702930) ((:) _z_6989586621679702933 _z_6989586621679702936) '[] = '[] 

type family Unzip (a :: [(a, b)]) :: ([a], [b]) where ... #

Equations

Unzip xs = Apply (Apply (Apply FoldrSym0 (Apply Lambda_6989586621679702810Sym0 xs)) (Apply (Apply Tuple2Sym0 '[]) '[])) xs 

type family Unzip3 (a :: [(a, b, c)]) :: ([a], [b], [c]) where ... #

Equations

Unzip3 xs = Apply (Apply (Apply FoldrSym0 (Apply Lambda_6989586621679702778Sym0 xs)) (Apply (Apply (Apply Tuple3Sym0 '[]) '[]) '[])) xs 

Other datatypes

data Proxy k t :: forall k. k -> * #

A concrete, poly-kinded proxy type

Constructors

Proxy 

Instances

Monad (Proxy *) 

Methods

(>>=) :: Proxy * a -> (a -> Proxy * b) -> Proxy * b #

(>>) :: Proxy * a -> Proxy * b -> Proxy * b #

return :: a -> Proxy * a #

fail :: String -> Proxy * a #

Functor (Proxy *) 

Methods

fmap :: (a -> b) -> Proxy * a -> Proxy * b #

(<$) :: a -> Proxy * b -> Proxy * a #

Applicative (Proxy *) 

Methods

pure :: a -> Proxy * a #

(<*>) :: Proxy * (a -> b) -> Proxy * a -> Proxy * b #

(*>) :: Proxy * a -> Proxy * b -> Proxy * b #

(<*) :: Proxy * a -> Proxy * b -> Proxy * a #

Foldable (Proxy *) 

Methods

fold :: Monoid m => Proxy * m -> m #

foldMap :: Monoid m => (a -> m) -> Proxy * a -> m #

foldr :: (a -> b -> b) -> b -> Proxy * a -> b #

foldr' :: (a -> b -> b) -> b -> Proxy * a -> b #

foldl :: (b -> a -> b) -> b -> Proxy * a -> b #

foldl' :: (b -> a -> b) -> b -> Proxy * a -> b #

foldr1 :: (a -> a -> a) -> Proxy * a -> a #

foldl1 :: (a -> a -> a) -> Proxy * a -> a #

toList :: Proxy * a -> [a] #

null :: Proxy * a -> Bool #

length :: Proxy * a -> Int #

elem :: Eq a => a -> Proxy * a -> Bool #

maximum :: Ord a => Proxy * a -> a #

minimum :: Ord a => Proxy * a -> a #

sum :: Num a => Proxy * a -> a #

product :: Num a => Proxy * a -> a #

Traversable (Proxy *) 

Methods

traverse :: Applicative f => (a -> f b) -> Proxy * a -> f (Proxy * b) #

sequenceA :: Applicative f => Proxy * (f a) -> f (Proxy * a) #

mapM :: Monad m => (a -> m b) -> Proxy * a -> m (Proxy * b) #

sequence :: Monad m => Proxy * (m a) -> m (Proxy * a) #

Generic1 (Proxy *) 

Associated Types

type Rep1 (Proxy * :: * -> *) :: * -> * #

Methods

from1 :: Proxy * a -> Rep1 (Proxy *) a #

to1 :: Rep1 (Proxy *) a -> Proxy * a #

Eq1 (Proxy *)

Since: 4.9.0.0

Methods

liftEq :: (a -> b -> Bool) -> Proxy * a -> Proxy * b -> Bool #

Ord1 (Proxy *)

Since: 4.9.0.0

Methods

liftCompare :: (a -> b -> Ordering) -> Proxy * a -> Proxy * b -> Ordering #

Read1 (Proxy *)

Since: 4.9.0.0

Methods

liftReadsPrec :: (Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (Proxy * a) #

liftReadList :: (Int -> ReadS a) -> ReadS [a] -> ReadS [Proxy * a] #

Show1 (Proxy *)

Since: 4.9.0.0

Methods

liftShowsPrec :: (Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> Proxy * a -> ShowS #

liftShowList :: (Int -> a -> ShowS) -> ([a] -> ShowS) -> [Proxy * a] -> ShowS #

Alternative (Proxy *) 

Methods

empty :: Proxy * a #

(<|>) :: Proxy * a -> Proxy * a -> Proxy * a #

some :: Proxy * a -> Proxy * [a] #

many :: Proxy * a -> Proxy * [a] #

MonadPlus (Proxy *) 

Methods

mzero :: Proxy * a #

mplus :: Proxy * a -> Proxy * a -> Proxy * a #

Bounded (Proxy k s) 

Methods

minBound :: Proxy k s #

maxBound :: Proxy k s #

Enum (Proxy k s) 

Methods

succ :: Proxy k s -> Proxy k s #

pred :: Proxy k s -> Proxy k s #

toEnum :: Int -> Proxy k s #

fromEnum :: Proxy k s -> Int #

enumFrom :: Proxy k s -> [Proxy k s] #

enumFromThen :: Proxy k s -> Proxy k s -> [Proxy k s] #

enumFromTo :: Proxy k s -> Proxy k s -> [Proxy k s] #

enumFromThenTo :: Proxy k s -> Proxy k s -> Proxy k s -> [Proxy k s] #

Eq (Proxy k s) 

Methods

(==) :: Proxy k s -> Proxy k s -> Bool #

(/=) :: Proxy k s -> Proxy k s -> Bool #

Data t => Data (Proxy * t) 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Proxy * t -> c (Proxy * t) #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (Proxy * t) #

toConstr :: Proxy * t -> Constr #

dataTypeOf :: Proxy * t -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (Proxy * t)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (Proxy * t)) #

gmapT :: (forall b. Data b => b -> b) -> Proxy * t -> Proxy * t #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Proxy * t -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Proxy * t -> r #

gmapQ :: (forall d. Data d => d -> u) -> Proxy * t -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Proxy * t -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Proxy * t -> m (Proxy * t) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Proxy * t -> m (Proxy * t) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Proxy * t -> m (Proxy * t) #

Ord (Proxy k s) 

Methods

compare :: Proxy k s -> Proxy k s -> Ordering #

(<) :: Proxy k s -> Proxy k s -> Bool #

(<=) :: Proxy k s -> Proxy k s -> Bool #

(>) :: Proxy k s -> Proxy k s -> Bool #

(>=) :: Proxy k s -> Proxy k s -> Bool #

max :: Proxy k s -> Proxy k s -> Proxy k s #

min :: Proxy k s -> Proxy k s -> Proxy k s #

Read (Proxy k s) 
Show (Proxy k s) 

Methods

showsPrec :: Int -> Proxy k s -> ShowS #

show :: Proxy k s -> String #

showList :: [Proxy k s] -> ShowS #

Ix (Proxy k s) 

Methods

range :: (Proxy k s, Proxy k s) -> [Proxy k s] #

index :: (Proxy k s, Proxy k s) -> Proxy k s -> Int #

unsafeIndex :: (Proxy k s, Proxy k s) -> Proxy k s -> Int

inRange :: (Proxy k s, Proxy k s) -> Proxy k s -> Bool #

rangeSize :: (Proxy k s, Proxy k s) -> Int #

unsafeRangeSize :: (Proxy k s, Proxy k s) -> Int

Generic (Proxy k t) 

Associated Types

type Rep (Proxy k t) :: * -> * #

Methods

from :: Proxy k t -> Rep (Proxy k t) x #

to :: Rep (Proxy k t) x -> Proxy k t #

Semigroup (Proxy k s) 

Methods

(<>) :: Proxy k s -> Proxy k s -> Proxy k s #

sconcat :: NonEmpty (Proxy k s) -> Proxy k s #

stimes :: Integral b => b -> Proxy k s -> Proxy k s #

Monoid (Proxy k s) 

Methods

mempty :: Proxy k s #

mappend :: Proxy k s -> Proxy k s -> Proxy k s #

mconcat :: [Proxy k s] -> Proxy k s #

type Rep1 (Proxy *) 
type Rep1 (Proxy *) = D1 (MetaData "Proxy" "Data.Proxy" "base" False) (C1 (MetaCons "Proxy" PrefixI False) U1)
type Rep (Proxy k t) 
type Rep (Proxy k t) = D1 (MetaData "Proxy" "Data.Proxy" "base" False) (C1 (MetaCons "Proxy" PrefixI False) U1)

Defunctionalization symbols

type TrueSym0 = True #

type NotSym1 t = Not t #

data l :&&$$ l #

Instances

type (:&&$$$) t t = (:&&) t t #

data l :||$$ l #

Instances

type (:||$$$) t t = (:||) t t #

data JustSym0 l #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468866 (Maybe a3530822107858468866) -> *) (JustSym0 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (JustSym0 a3530822107858468866) t -> () #

type Apply a3530822107858468866 (Maybe a3530822107858468866) (JustSym0 a3530822107858468866) l0 # 
type Apply a3530822107858468866 (Maybe a3530822107858468866) (JustSym0 a3530822107858468866) l0 = JustSym1 a3530822107858468866 l0

type JustSym1 t = Just t #

data Maybe_Sym0 l #

Instances

SuppressUnusedWarnings (TyFun b6989586621679676147 (TyFun (TyFun a6989586621679676148 b6989586621679676147 -> Type) (TyFun (Maybe a6989586621679676148) b6989586621679676147 -> Type) -> Type) -> *) (Maybe_Sym0 a6989586621679676148 b6989586621679676147) # 

Methods

suppressUnusedWarnings :: Proxy (Maybe_Sym0 a6989586621679676148 b6989586621679676147) t -> () #

type Apply b6989586621679676147 (TyFun (TyFun a6989586621679676148 b6989586621679676147 -> Type) (TyFun (Maybe a6989586621679676148) b6989586621679676147 -> Type) -> Type) (Maybe_Sym0 a6989586621679676148 b6989586621679676147) l0 # 
type Apply b6989586621679676147 (TyFun (TyFun a6989586621679676148 b6989586621679676147 -> Type) (TyFun (Maybe a6989586621679676148) b6989586621679676147 -> Type) -> Type) (Maybe_Sym0 a6989586621679676148 b6989586621679676147) l0 = Maybe_Sym1 a6989586621679676148 b6989586621679676147 l0

data Maybe_Sym1 l l #

Instances

SuppressUnusedWarnings (b6989586621679676147 -> TyFun (TyFun a6989586621679676148 b6989586621679676147 -> Type) (TyFun (Maybe a6989586621679676148) b6989586621679676147 -> Type) -> *) (Maybe_Sym1 a6989586621679676148 b6989586621679676147) # 

Methods

suppressUnusedWarnings :: Proxy (Maybe_Sym1 a6989586621679676148 b6989586621679676147) t -> () #

type Apply (TyFun a6989586621679676148 b6989586621679676147 -> Type) (TyFun (Maybe a6989586621679676148) b6989586621679676147 -> Type) (Maybe_Sym1 a6989586621679676148 b6989586621679676147 l0) l1 # 
type Apply (TyFun a6989586621679676148 b6989586621679676147 -> Type) (TyFun (Maybe a6989586621679676148) b6989586621679676147 -> Type) (Maybe_Sym1 a6989586621679676148 b6989586621679676147 l0) l1 = Maybe_Sym2 a6989586621679676148 b6989586621679676147 l0 l1

data Maybe_Sym2 l l l #

Instances

SuppressUnusedWarnings (b6989586621679676147 -> (TyFun a6989586621679676148 b6989586621679676147 -> Type) -> TyFun (Maybe a6989586621679676148) b6989586621679676147 -> *) (Maybe_Sym2 a6989586621679676148 b6989586621679676147) # 

Methods

suppressUnusedWarnings :: Proxy (Maybe_Sym2 a6989586621679676148 b6989586621679676147) t -> () #

type Apply (Maybe a6989586621679676148) b6989586621679676147 (Maybe_Sym2 a6989586621679676148 b6989586621679676147 l1 l0) l2 # 
type Apply (Maybe a6989586621679676148) b6989586621679676147 (Maybe_Sym2 a6989586621679676148 b6989586621679676147 l1 l0) l2 = Maybe_Sym3 a6989586621679676148 b6989586621679676147 l1 l0 l2

type Maybe_Sym3 t t t = Maybe_ t t t #

data LeftSym0 l #

Instances

SuppressUnusedWarnings (TyFun a6989586621679054100 (Either a6989586621679054100 b6989586621679054101) -> *) (LeftSym0 a6989586621679054100 b6989586621679054101) # 

Methods

suppressUnusedWarnings :: Proxy (LeftSym0 a6989586621679054100 b6989586621679054101) t -> () #

type Apply a6989586621679054100 (Either a6989586621679054100 b6989586621679054101) (LeftSym0 a6989586621679054100 b6989586621679054101) l0 # 
type Apply a6989586621679054100 (Either a6989586621679054100 b6989586621679054101) (LeftSym0 a6989586621679054100 b6989586621679054101) l0 = LeftSym1 b6989586621679054101 a6989586621679054100 l0

type LeftSym1 t = Left t #

data RightSym0 l #

Instances

SuppressUnusedWarnings (TyFun b6989586621679054101 (Either a6989586621679054100 b6989586621679054101) -> *) (RightSym0 a6989586621679054100 b6989586621679054101) # 

Methods

suppressUnusedWarnings :: Proxy (RightSym0 a6989586621679054100 b6989586621679054101) t -> () #

type Apply b6989586621679054101 (Either a6989586621679054100 b6989586621679054101) (RightSym0 a6989586621679054100 b6989586621679054101) l0 # 
type Apply b6989586621679054101 (Either a6989586621679054100 b6989586621679054101) (RightSym0 a6989586621679054100 b6989586621679054101) l0 = RightSym1 a6989586621679054100 b6989586621679054101 l0

type RightSym1 t = Right t #

data Either_Sym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679667663 c6989586621679667664 -> Type) (TyFun (TyFun b6989586621679667665 c6989586621679667664 -> Type) (TyFun (Either a6989586621679667663 b6989586621679667665) c6989586621679667664 -> Type) -> Type) -> *) (Either_Sym0 a6989586621679667663 b6989586621679667665 c6989586621679667664) # 

Methods

suppressUnusedWarnings :: Proxy (Either_Sym0 a6989586621679667663 b6989586621679667665 c6989586621679667664) t -> () #

type Apply (TyFun a6989586621679667663 c6989586621679667664 -> Type) (TyFun (TyFun b6989586621679667665 c6989586621679667664 -> Type) (TyFun (Either a6989586621679667663 b6989586621679667665) c6989586621679667664 -> Type) -> Type) (Either_Sym0 a6989586621679667663 b6989586621679667665 c6989586621679667664) l0 # 
type Apply (TyFun a6989586621679667663 c6989586621679667664 -> Type) (TyFun (TyFun b6989586621679667665 c6989586621679667664 -> Type) (TyFun (Either a6989586621679667663 b6989586621679667665) c6989586621679667664 -> Type) -> Type) (Either_Sym0 a6989586621679667663 b6989586621679667665 c6989586621679667664) l0 = Either_Sym1 b6989586621679667665 a6989586621679667663 c6989586621679667664 l0

data Either_Sym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679667663 c6989586621679667664 -> Type) -> TyFun (TyFun b6989586621679667665 c6989586621679667664 -> Type) (TyFun (Either a6989586621679667663 b6989586621679667665) c6989586621679667664 -> Type) -> *) (Either_Sym1 b6989586621679667665 a6989586621679667663 c6989586621679667664) # 

Methods

suppressUnusedWarnings :: Proxy (Either_Sym1 b6989586621679667665 a6989586621679667663 c6989586621679667664) t -> () #

type Apply (TyFun b6989586621679667665 c6989586621679667664 -> Type) (TyFun (Either a6989586621679667663 b6989586621679667665) c6989586621679667664 -> Type) (Either_Sym1 b6989586621679667665 a6989586621679667663 c6989586621679667664 l0) l1 # 
type Apply (TyFun b6989586621679667665 c6989586621679667664 -> Type) (TyFun (Either a6989586621679667663 b6989586621679667665) c6989586621679667664 -> Type) (Either_Sym1 b6989586621679667665 a6989586621679667663 c6989586621679667664 l0) l1 = Either_Sym2 b6989586621679667665 a6989586621679667663 c6989586621679667664 l0 l1

data Either_Sym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679667663 c6989586621679667664 -> Type) -> (TyFun b6989586621679667665 c6989586621679667664 -> Type) -> TyFun (Either a6989586621679667663 b6989586621679667665) c6989586621679667664 -> *) (Either_Sym2 b6989586621679667665 a6989586621679667663 c6989586621679667664) # 

Methods

suppressUnusedWarnings :: Proxy (Either_Sym2 b6989586621679667665 a6989586621679667663 c6989586621679667664) t -> () #

type Apply (Either a6989586621679667663 b6989586621679667665) c6989586621679667664 (Either_Sym2 b6989586621679667665 a6989586621679667663 c6989586621679667664 l1 l0) l2 # 
type Apply (Either a6989586621679667663 b6989586621679667665) c6989586621679667664 (Either_Sym2 b6989586621679667665 a6989586621679667663 c6989586621679667664 l1 l0) l2 = Either_Sym3 b6989586621679667665 a6989586621679667663 c6989586621679667664 l1 l0 l2

type Either_Sym3 t t t = Either_ t t t #

type Tuple0Sym0 = '() #

data Tuple2Sym0 l #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468866 (TyFun b3530822107858468867 (a3530822107858468866, b3530822107858468867) -> Type) -> *) (Tuple2Sym0 a3530822107858468866 b3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple2Sym0 a3530822107858468866 b3530822107858468867) t -> () #

type Apply a3530822107858468866 (TyFun b3530822107858468867 (a3530822107858468866, b3530822107858468867) -> Type) (Tuple2Sym0 a3530822107858468866 b3530822107858468867) l0 # 
type Apply a3530822107858468866 (TyFun b3530822107858468867 (a3530822107858468866, b3530822107858468867) -> Type) (Tuple2Sym0 a3530822107858468866 b3530822107858468867) l0 = Tuple2Sym1 b3530822107858468867 a3530822107858468866 l0

data Tuple2Sym1 l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> TyFun b3530822107858468867 (a3530822107858468866, b3530822107858468867) -> *) (Tuple2Sym1 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple2Sym1 b3530822107858468867 a3530822107858468866) t -> () #

type Apply b3530822107858468867 (a3530822107858468866, b3530822107858468867) (Tuple2Sym1 b3530822107858468867 a3530822107858468866 l0) l1 # 
type Apply b3530822107858468867 (a3530822107858468866, b3530822107858468867) (Tuple2Sym1 b3530822107858468867 a3530822107858468866 l0) l1 = Tuple2Sym2 b3530822107858468867 a3530822107858468866 l0 l1

type Tuple2Sym2 t t = '(t, t) #

data Tuple3Sym0 l #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (a3530822107858468866, b3530822107858468867, c3530822107858468868) -> Type) -> Type) -> *) (Tuple3Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868) t -> () #

type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (a3530822107858468866, b3530822107858468867, c3530822107858468868) -> Type) -> Type) (Tuple3Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868) l0 # 
type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (a3530822107858468866, b3530822107858468867, c3530822107858468868) -> Type) -> Type) (Tuple3Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868) l0 = Tuple3Sym1 b3530822107858468867 c3530822107858468868 a3530822107858468866 l0

data Tuple3Sym1 l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> TyFun b3530822107858468867 (TyFun c3530822107858468868 (a3530822107858468866, b3530822107858468867, c3530822107858468868) -> Type) -> *) (Tuple3Sym1 b3530822107858468867 c3530822107858468868 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym1 b3530822107858468867 c3530822107858468868 a3530822107858468866) t -> () #

type Apply b3530822107858468867 (TyFun c3530822107858468868 (a3530822107858468866, b3530822107858468867, c3530822107858468868) -> Type) (Tuple3Sym1 b3530822107858468867 c3530822107858468868 a3530822107858468866 l0) l1 # 
type Apply b3530822107858468867 (TyFun c3530822107858468868 (a3530822107858468866, b3530822107858468867, c3530822107858468868) -> Type) (Tuple3Sym1 b3530822107858468867 c3530822107858468868 a3530822107858468866 l0) l1 = Tuple3Sym2 c3530822107858468868 b3530822107858468867 a3530822107858468866 l0 l1

data Tuple3Sym2 l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> TyFun c3530822107858468868 (a3530822107858468866, b3530822107858468867, c3530822107858468868) -> *) (Tuple3Sym2 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym2 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply c3530822107858468868 (a3530822107858468866, b3530822107858468867, c3530822107858468868) (Tuple3Sym2 c3530822107858468868 b3530822107858468867 a3530822107858468866 l1 l0) l2 # 
type Apply c3530822107858468868 (a3530822107858468866, b3530822107858468867, c3530822107858468868) (Tuple3Sym2 c3530822107858468868 b3530822107858468867 a3530822107858468866 l1 l0) l2 = Tuple3Sym3 c3530822107858468868 b3530822107858468867 a3530822107858468866 l1 l0 l2

type Tuple3Sym3 t t t = '(t, t, t) #

data Tuple4Sym0 l #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> Type) -> Type) -> Type) -> *) (Tuple4Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869) t -> () #

type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> Type) -> Type) -> Type) (Tuple4Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869) l0 # 
type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> Type) -> Type) -> Type) (Tuple4Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869) l0 = Tuple4Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 a3530822107858468866 l0

data Tuple4Sym1 l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> Type) -> Type) -> *) (Tuple4Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 a3530822107858468866) t -> () #

type Apply b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> Type) -> Type) (Tuple4Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 a3530822107858468866 l0) l1 # 
type Apply b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> Type) -> Type) (Tuple4Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 a3530822107858468866 l0) l1 = Tuple4Sym2 c3530822107858468868 d3530822107858468869 b3530822107858468867 a3530822107858468866 l0 l1

data Tuple4Sym2 l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> TyFun c3530822107858468868 (TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> Type) -> *) (Tuple4Sym2 c3530822107858468868 d3530822107858468869 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym2 c3530822107858468868 d3530822107858468869 b3530822107858468867 a3530822107858468866) t -> () #

type Apply c3530822107858468868 (TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> Type) (Tuple4Sym2 c3530822107858468868 d3530822107858468869 b3530822107858468867 a3530822107858468866 l1 l0) l2 # 
type Apply c3530822107858468868 (TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> Type) (Tuple4Sym2 c3530822107858468868 d3530822107858468869 b3530822107858468867 a3530822107858468866 l1 l0) l2 = Tuple4Sym3 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l1 l0 l2

data Tuple4Sym3 l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> TyFun d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) -> *) (Tuple4Sym3 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym3 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) (Tuple4Sym3 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0) l3 # 
type Apply d3530822107858468869 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869) (Tuple4Sym3 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0) l3 = Tuple4Sym4 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0 l3

type Tuple4Sym4 t t t t = '(t, t, t, t) #

data Tuple5Sym0 l #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple5Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870) t -> () #

type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> Type) -> Type) -> Type) (Tuple5Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870) l0 # 
type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> Type) -> Type) -> Type) (Tuple5Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870) l0 = Tuple5Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 a3530822107858468866 l0

data Tuple5Sym1 l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> Type) -> Type) -> *) (Tuple5Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 a3530822107858468866) t -> () #

type Apply b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> Type) -> Type) (Tuple5Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 a3530822107858468866 l0) l1 # 
type Apply b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> Type) -> Type) (Tuple5Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 a3530822107858468866 l0) l1 = Tuple5Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 b3530822107858468867 a3530822107858468866 l0 l1

data Tuple5Sym2 l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> Type) -> *) (Tuple5Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 b3530822107858468867 a3530822107858468866) t -> () #

type Apply c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> Type) (Tuple5Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 b3530822107858468867 a3530822107858468866 l1 l0) l2 # 
type Apply c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> Type) (Tuple5Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 b3530822107858468867 a3530822107858468866 l1 l0) l2 = Tuple5Sym3 d3530822107858468869 e3530822107858468870 c3530822107858468868 b3530822107858468867 a3530822107858468866 l1 l0 l2

data Tuple5Sym3 l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> TyFun d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) -> *) (Tuple5Sym3 d3530822107858468869 e3530822107858468870 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym3 d3530822107858468869 e3530822107858468870 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) (Tuple5Sym3 d3530822107858468869 e3530822107858468870 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0) l3 # 
type Apply d3530822107858468869 (TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> Type) (Tuple5Sym3 d3530822107858468869 e3530822107858468870 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0) l3 = Tuple5Sym4 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0 l3

data Tuple5Sym4 l l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> d3530822107858468869 -> TyFun e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) -> *) (Tuple5Sym4 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym4 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) (Tuple5Sym4 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l3 l2 l1 l0) l4 # 
type Apply e3530822107858468870 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870) (Tuple5Sym4 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l3 l2 l1 l0) l4 = Tuple5Sym5 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l3 l2 l1 l0 l4

type Tuple5Sym5 t t t t t = '(t, t, t, t, t) #

data Tuple6Sym0 l #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple6Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871) t -> () #

type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871) l0 # 
type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871) l0 = Tuple6Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 a3530822107858468866 l0

data Tuple6Sym1 l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple6Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 a3530822107858468866) t -> () #

type Apply b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 a3530822107858468866 l0) l1 # 
type Apply b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 a3530822107858468866 l0) l1 = Tuple6Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 b3530822107858468867 a3530822107858468866 l0 l1

data Tuple6Sym2 l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> Type) -> *) (Tuple6Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 b3530822107858468867 a3530822107858468866) t -> () #

type Apply c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> Type) (Tuple6Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 b3530822107858468867 a3530822107858468866 l1 l0) l2 # 
type Apply c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> Type) (Tuple6Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 b3530822107858468867 a3530822107858468866 l1 l0) l2 = Tuple6Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 c3530822107858468868 b3530822107858468867 a3530822107858468866 l1 l0 l2

data Tuple6Sym3 l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) -> *) (Tuple6Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) (Tuple6Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0) l3 # 
type Apply d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> Type) (Tuple6Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0) l3 = Tuple6Sym4 e3530822107858468870 f3530822107858468871 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0 l3

data Tuple6Sym4 l l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> d3530822107858468869 -> TyFun e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) -> *) (Tuple6Sym4 e3530822107858468870 f3530822107858468871 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym4 e3530822107858468870 f3530822107858468871 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) (Tuple6Sym4 e3530822107858468870 f3530822107858468871 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l3 l2 l1 l0) l4 # 
type Apply e3530822107858468870 (TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> Type) (Tuple6Sym4 e3530822107858468870 f3530822107858468871 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l3 l2 l1 l0) l4 = Tuple6Sym5 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l3 l2 l1 l0 l4

data Tuple6Sym5 l l l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> d3530822107858468869 -> e3530822107858468870 -> TyFun f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) -> *) (Tuple6Sym5 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym5 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) (Tuple6Sym5 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l4 l3 l2 l1 l0) l5 # 
type Apply f3530822107858468871 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871) (Tuple6Sym5 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l4 l3 l2 l1 l0) l5 = Tuple6Sym6 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l4 l3 l2 l1 l0 l5

type Tuple6Sym6 t t t t t t = '(t, t, t, t, t, t) #

data Tuple7Sym0 l #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple7Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872) t -> () #

type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872) l0 # 
type Apply a3530822107858468866 (TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym0 a3530822107858468866 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872) l0 = Tuple7Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 a3530822107858468866 l0

data Tuple7Sym1 l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> TyFun b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple7Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 a3530822107858468866) t -> () #

type Apply b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 a3530822107858468866 l0) l1 # 
type Apply b3530822107858468867 (TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym1 b3530822107858468867 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 a3530822107858468866 l0) l1 = Tuple7Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 b3530822107858468867 a3530822107858468866 l0 l1

data Tuple7Sym2 l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> TyFun c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple7Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 b3530822107858468867 a3530822107858468866) t -> () #

type Apply c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 b3530822107858468867 a3530822107858468866 l1 l0) l2 # 
type Apply c3530822107858468868 (TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym2 c3530822107858468868 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 b3530822107858468867 a3530822107858468866 l1 l0) l2 = Tuple7Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 c3530822107858468868 b3530822107858468867 a3530822107858468866 l1 l0 l2

data Tuple7Sym3 l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> TyFun d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) -> *) (Tuple7Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) (Tuple7Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0) l3 # 
type Apply d3530822107858468869 (TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> Type) (Tuple7Sym3 d3530822107858468869 e3530822107858468870 f3530822107858468871 g3530822107858468872 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0) l3 = Tuple7Sym4 e3530822107858468870 f3530822107858468871 g3530822107858468872 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l2 l1 l0 l3

data Tuple7Sym4 l l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> d3530822107858468869 -> TyFun e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) -> *) (Tuple7Sym4 e3530822107858468870 f3530822107858468871 g3530822107858468872 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym4 e3530822107858468870 f3530822107858468871 g3530822107858468872 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) (Tuple7Sym4 e3530822107858468870 f3530822107858468871 g3530822107858468872 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l3 l2 l1 l0) l4 # 
type Apply e3530822107858468870 (TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> Type) (Tuple7Sym4 e3530822107858468870 f3530822107858468871 g3530822107858468872 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l3 l2 l1 l0) l4 = Tuple7Sym5 f3530822107858468871 g3530822107858468872 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l3 l2 l1 l0 l4

data Tuple7Sym5 l l l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> d3530822107858468869 -> e3530822107858468870 -> TyFun f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) -> *) (Tuple7Sym5 f3530822107858468871 g3530822107858468872 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym5 f3530822107858468871 g3530822107858468872 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) (Tuple7Sym5 f3530822107858468871 g3530822107858468872 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l4 l3 l2 l1 l0) l5 # 
type Apply f3530822107858468871 (TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> Type) (Tuple7Sym5 f3530822107858468871 g3530822107858468872 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l4 l3 l2 l1 l0) l5 = Tuple7Sym6 g3530822107858468872 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l4 l3 l2 l1 l0 l5

data Tuple7Sym6 l l l l l l l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> b3530822107858468867 -> c3530822107858468868 -> d3530822107858468869 -> e3530822107858468870 -> f3530822107858468871 -> TyFun g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) -> *) (Tuple7Sym6 g3530822107858468872 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym6 g3530822107858468872 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866) t -> () #

type Apply g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) (Tuple7Sym6 g3530822107858468872 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l5 l4 l3 l2 l1 l0) l6 # 
type Apply g3530822107858468872 (a3530822107858468866, b3530822107858468867, c3530822107858468868, d3530822107858468869, e3530822107858468870, f3530822107858468871, g3530822107858468872) (Tuple7Sym6 g3530822107858468872 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l5 l4 l3 l2 l1 l0) l6 = Tuple7Sym7 g3530822107858468872 f3530822107858468871 e3530822107858468870 d3530822107858468869 c3530822107858468868 b3530822107858468867 a3530822107858468866 l5 l4 l3 l2 l1 l0 l6

type Tuple7Sym7 t t t t t t t = '(t, t, t, t, t, t, t) #

data FstSym0 l #

Instances

SuppressUnusedWarnings (TyFun (a6989586621679686056, b6989586621679686057) a6989586621679686056 -> *) (FstSym0 b6989586621679686057 a6989586621679686056) # 

Methods

suppressUnusedWarnings :: Proxy (FstSym0 b6989586621679686057 a6989586621679686056) t -> () #

type Apply (a6989586621679686056, b6989586621679686057) a6989586621679686056 (FstSym0 b6989586621679686057 a6989586621679686056) l0 # 
type Apply (a6989586621679686056, b6989586621679686057) a6989586621679686056 (FstSym0 b6989586621679686057 a6989586621679686056) l0 = FstSym1 a6989586621679686056 b6989586621679686057 l0

type FstSym1 t = Fst t #

data SndSym0 l #

Instances

SuppressUnusedWarnings (TyFun (a6989586621679686054, b6989586621679686055) b6989586621679686055 -> *) (SndSym0 a6989586621679686054 b6989586621679686055) # 

Methods

suppressUnusedWarnings :: Proxy (SndSym0 a6989586621679686054 b6989586621679686055) t -> () #

type Apply (a6989586621679686054, b6989586621679686055) b6989586621679686055 (SndSym0 a6989586621679686054 b6989586621679686055) l0 # 
type Apply (a6989586621679686054, b6989586621679686055) b6989586621679686055 (SndSym0 a6989586621679686054 b6989586621679686055) l0 = SndSym1 a6989586621679686054 b6989586621679686055 l0

type SndSym1 t = Snd t #

data CurrySym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun (a6989586621679686051, b6989586621679686052) c6989586621679686053 -> Type) (TyFun a6989586621679686051 (TyFun b6989586621679686052 c6989586621679686053 -> Type) -> Type) -> *) (CurrySym0 a6989586621679686051 b6989586621679686052 c6989586621679686053) # 

Methods

suppressUnusedWarnings :: Proxy (CurrySym0 a6989586621679686051 b6989586621679686052 c6989586621679686053) t -> () #

type Apply (TyFun (a6989586621679686051, b6989586621679686052) c6989586621679686053 -> Type) (TyFun a6989586621679686051 (TyFun b6989586621679686052 c6989586621679686053 -> Type) -> Type) (CurrySym0 a6989586621679686051 b6989586621679686052 c6989586621679686053) l0 # 
type Apply (TyFun (a6989586621679686051, b6989586621679686052) c6989586621679686053 -> Type) (TyFun a6989586621679686051 (TyFun b6989586621679686052 c6989586621679686053 -> Type) -> Type) (CurrySym0 a6989586621679686051 b6989586621679686052 c6989586621679686053) l0 = CurrySym1 a6989586621679686051 b6989586621679686052 c6989586621679686053 l0

data CurrySym1 l l #

Instances

SuppressUnusedWarnings ((TyFun (a6989586621679686051, b6989586621679686052) c6989586621679686053 -> Type) -> TyFun a6989586621679686051 (TyFun b6989586621679686052 c6989586621679686053 -> Type) -> *) (CurrySym1 a6989586621679686051 b6989586621679686052 c6989586621679686053) # 

Methods

suppressUnusedWarnings :: Proxy (CurrySym1 a6989586621679686051 b6989586621679686052 c6989586621679686053) t -> () #

type Apply a6989586621679686051 (TyFun b6989586621679686052 c6989586621679686053 -> Type) (CurrySym1 a6989586621679686051 b6989586621679686052 c6989586621679686053 l0) l1 # 
type Apply a6989586621679686051 (TyFun b6989586621679686052 c6989586621679686053 -> Type) (CurrySym1 a6989586621679686051 b6989586621679686052 c6989586621679686053 l0) l1 = CurrySym2 a6989586621679686051 b6989586621679686052 c6989586621679686053 l0 l1

data CurrySym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun (a6989586621679686051, b6989586621679686052) c6989586621679686053 -> Type) -> a6989586621679686051 -> TyFun b6989586621679686052 c6989586621679686053 -> *) (CurrySym2 a6989586621679686051 b6989586621679686052 c6989586621679686053) # 

Methods

suppressUnusedWarnings :: Proxy (CurrySym2 a6989586621679686051 b6989586621679686052 c6989586621679686053) t -> () #

type Apply b6989586621679686052 c6989586621679686053 (CurrySym2 a6989586621679686051 b6989586621679686052 c6989586621679686053 l1 l0) l2 # 
type Apply b6989586621679686052 c6989586621679686053 (CurrySym2 a6989586621679686051 b6989586621679686052 c6989586621679686053 l1 l0) l2 = CurrySym3 a6989586621679686051 b6989586621679686052 c6989586621679686053 l1 l0 l2

type CurrySym3 t t t = Curry t t t #

data UncurrySym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679686048 (TyFun b6989586621679686049 c6989586621679686050 -> Type) -> Type) (TyFun (a6989586621679686048, b6989586621679686049) c6989586621679686050 -> Type) -> *) (UncurrySym0 a6989586621679686048 b6989586621679686049 c6989586621679686050) # 

Methods

suppressUnusedWarnings :: Proxy (UncurrySym0 a6989586621679686048 b6989586621679686049 c6989586621679686050) t -> () #

type Apply (TyFun a6989586621679686048 (TyFun b6989586621679686049 c6989586621679686050 -> Type) -> Type) (TyFun (a6989586621679686048, b6989586621679686049) c6989586621679686050 -> Type) (UncurrySym0 a6989586621679686048 b6989586621679686049 c6989586621679686050) l0 # 
type Apply (TyFun a6989586621679686048 (TyFun b6989586621679686049 c6989586621679686050 -> Type) -> Type) (TyFun (a6989586621679686048, b6989586621679686049) c6989586621679686050 -> Type) (UncurrySym0 a6989586621679686048 b6989586621679686049 c6989586621679686050) l0 = UncurrySym1 a6989586621679686048 b6989586621679686049 c6989586621679686050 l0

data UncurrySym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679686048 (TyFun b6989586621679686049 c6989586621679686050 -> Type) -> Type) -> TyFun (a6989586621679686048, b6989586621679686049) c6989586621679686050 -> *) (UncurrySym1 a6989586621679686048 b6989586621679686049 c6989586621679686050) # 

Methods

suppressUnusedWarnings :: Proxy (UncurrySym1 a6989586621679686048 b6989586621679686049 c6989586621679686050) t -> () #

type Apply (a6989586621679686048, b6989586621679686049) c6989586621679686050 (UncurrySym1 a6989586621679686048 b6989586621679686049 c6989586621679686050 l0) l1 # 
type Apply (a6989586621679686048, b6989586621679686049) c6989586621679686050 (UncurrySym1 a6989586621679686048 b6989586621679686049 c6989586621679686050 l0) l1 = UncurrySym2 a6989586621679686048 b6989586621679686049 c6989586621679686050 l0 l1

type UncurrySym2 t t = Uncurry t t #

data (:^$) l #

Instances

data l :^$$ l #

Instances

SuppressUnusedWarnings (Nat -> TyFun Nat Nat -> *) (:^$$) # 
type Apply Nat Nat ((:^$$) l1) l0 # 
type Apply Nat Nat ((:^$$) l1) l0 = (:^$$$) l1 l0

data IdSym0 l #

Instances

SuppressUnusedWarnings (TyFun a6989586621679482535 a6989586621679482535 -> *) (IdSym0 a6989586621679482535) # 

Methods

suppressUnusedWarnings :: Proxy (IdSym0 a6989586621679482535) t -> () #

type Apply a6989586621679482535 a6989586621679482535 (IdSym0 a6989586621679482535) l0 # 
type Apply a6989586621679482535 a6989586621679482535 (IdSym0 a6989586621679482535) l0 = IdSym1 a6989586621679482535 l0

type IdSym1 t = Id t #

data ConstSym0 l #

Instances

SuppressUnusedWarnings (TyFun a6989586621679482533 (TyFun b6989586621679482534 a6989586621679482533 -> Type) -> *) (ConstSym0 b6989586621679482534 a6989586621679482533) # 

Methods

suppressUnusedWarnings :: Proxy (ConstSym0 b6989586621679482534 a6989586621679482533) t -> () #

type Apply a6989586621679482533 (TyFun b6989586621679482534 a6989586621679482533 -> Type) (ConstSym0 b6989586621679482534 a6989586621679482533) l0 # 
type Apply a6989586621679482533 (TyFun b6989586621679482534 a6989586621679482533 -> Type) (ConstSym0 b6989586621679482534 a6989586621679482533) l0 = ConstSym1 b6989586621679482534 a6989586621679482533 l0

data ConstSym1 l l #

Instances

SuppressUnusedWarnings (a6989586621679482533 -> TyFun b6989586621679482534 a6989586621679482533 -> *) (ConstSym1 b6989586621679482534 a6989586621679482533) # 

Methods

suppressUnusedWarnings :: Proxy (ConstSym1 b6989586621679482534 a6989586621679482533) t -> () #

type Apply b6989586621679482534 a6989586621679482533 (ConstSym1 b6989586621679482534 a6989586621679482533 l0) l1 # 
type Apply b6989586621679482534 a6989586621679482533 (ConstSym1 b6989586621679482534 a6989586621679482533 l0) l1 = ConstSym2 b6989586621679482534 a6989586621679482533 l0 l1

type ConstSym2 t t = Const t t #

data (:.$) l #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679482530 c6989586621679482531 -> Type) (TyFun (TyFun a6989586621679482532 b6989586621679482530 -> Type) (TyFun a6989586621679482532 c6989586621679482531 -> Type) -> Type) -> *) ((:.$) b6989586621679482530 a6989586621679482532 c6989586621679482531) # 

Methods

suppressUnusedWarnings :: Proxy ((b6989586621679482530 :.$ a6989586621679482532) c6989586621679482531) t -> () #

type Apply (TyFun b6989586621679482530 c6989586621679482531 -> Type) (TyFun (TyFun a6989586621679482532 b6989586621679482530 -> Type) (TyFun a6989586621679482532 c6989586621679482531 -> Type) -> Type) ((:.$) b6989586621679482530 a6989586621679482532 c6989586621679482531) l0 # 
type Apply (TyFun b6989586621679482530 c6989586621679482531 -> Type) (TyFun (TyFun a6989586621679482532 b6989586621679482530 -> Type) (TyFun a6989586621679482532 c6989586621679482531 -> Type) -> Type) ((:.$) b6989586621679482530 a6989586621679482532 c6989586621679482531) l0 = (:.$$) a6989586621679482532 b6989586621679482530 c6989586621679482531 l0

data l :.$$ l #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679482530 c6989586621679482531 -> Type) -> TyFun (TyFun a6989586621679482532 b6989586621679482530 -> Type) (TyFun a6989586621679482532 c6989586621679482531 -> Type) -> *) ((:.$$) a6989586621679482532 b6989586621679482530 c6989586621679482531) # 

Methods

suppressUnusedWarnings :: Proxy ((a6989586621679482532 :.$$ b6989586621679482530) c6989586621679482531) t -> () #

type Apply (TyFun a6989586621679482532 b6989586621679482530 -> Type) (TyFun a6989586621679482532 c6989586621679482531 -> Type) ((:.$$) a6989586621679482532 b6989586621679482530 c6989586621679482531 l0) l1 # 
type Apply (TyFun a6989586621679482532 b6989586621679482530 -> Type) (TyFun a6989586621679482532 c6989586621679482531 -> Type) ((:.$$) a6989586621679482532 b6989586621679482530 c6989586621679482531 l0) l1 = (:.$$$) a6989586621679482532 b6989586621679482530 c6989586621679482531 l0 l1

data (l :.$$$ l) l #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679482530 c6989586621679482531 -> Type) -> (TyFun a6989586621679482532 b6989586621679482530 -> Type) -> TyFun a6989586621679482532 c6989586621679482531 -> *) ((:.$$$) a6989586621679482532 b6989586621679482530 c6989586621679482531) # 

Methods

suppressUnusedWarnings :: Proxy ((a6989586621679482532 :.$$$ b6989586621679482530) c6989586621679482531) t -> () #

type Apply a6989586621679482532 c6989586621679482531 ((:.$$$) a6989586621679482532 b6989586621679482530 c6989586621679482531 l1 l0) l2 # 
type Apply a6989586621679482532 c6989586621679482531 ((:.$$$) a6989586621679482532 b6989586621679482530 c6989586621679482531 l1 l0) l2 = (:.$$$$) a6989586621679482532 b6989586621679482530 c6989586621679482531 l1 l0 l2

data ($$) :: TyFun (TyFun a b -> *) (TyFun a b -> *) -> * #

Instances

type Apply (TyFun a b -> *) (TyFun a b -> *) (($$) a b) arg # 
type Apply (TyFun a b -> *) (TyFun a b -> *) (($$) a b) arg = ($$$) a b arg

data ($$$) :: (TyFun a b -> *) -> TyFun a b -> * #

Instances

type Apply a b (($$$) a b f) arg # 
type Apply a b (($$$) a b f) arg = ($$$$) a b f arg

type ($$$$) a b = ($) a b #

data ($!$) :: TyFun (TyFun a b -> *) (TyFun a b -> *) -> * #

Instances

type Apply (TyFun a b -> *) (TyFun a b -> *) (($!$) a b) arg # 
type Apply (TyFun a b -> *) (TyFun a b -> *) (($!$) a b) arg = ($!$$) a b arg

data ($!$$) :: (TyFun a b -> *) -> TyFun a b -> * #

Instances

type Apply a b (($!$$) a b f) arg # 
type Apply a b (($!$$) a b f) arg = ($!$$$) a b f arg

type ($!$$$) a b = ($!) a b #

data FlipSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679482527 (TyFun b6989586621679482528 c6989586621679482529 -> Type) -> Type) (TyFun b6989586621679482528 (TyFun a6989586621679482527 c6989586621679482529 -> Type) -> Type) -> *) (FlipSym0 b6989586621679482528 a6989586621679482527 c6989586621679482529) # 

Methods

suppressUnusedWarnings :: Proxy (FlipSym0 b6989586621679482528 a6989586621679482527 c6989586621679482529) t -> () #

type Apply (TyFun a6989586621679482527 (TyFun b6989586621679482528 c6989586621679482529 -> Type) -> Type) (TyFun b6989586621679482528 (TyFun a6989586621679482527 c6989586621679482529 -> Type) -> Type) (FlipSym0 b6989586621679482528 a6989586621679482527 c6989586621679482529) l0 # 
type Apply (TyFun a6989586621679482527 (TyFun b6989586621679482528 c6989586621679482529 -> Type) -> Type) (TyFun b6989586621679482528 (TyFun a6989586621679482527 c6989586621679482529 -> Type) -> Type) (FlipSym0 b6989586621679482528 a6989586621679482527 c6989586621679482529) l0 = FlipSym1 a6989586621679482527 b6989586621679482528 c6989586621679482529 l0

data FlipSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679482527 (TyFun b6989586621679482528 c6989586621679482529 -> Type) -> Type) -> TyFun b6989586621679482528 (TyFun a6989586621679482527 c6989586621679482529 -> Type) -> *) (FlipSym1 a6989586621679482527 b6989586621679482528 c6989586621679482529) # 

Methods

suppressUnusedWarnings :: Proxy (FlipSym1 a6989586621679482527 b6989586621679482528 c6989586621679482529) t -> () #

type Apply b6989586621679482528 (TyFun a6989586621679482527 c6989586621679482529 -> Type) (FlipSym1 a6989586621679482527 b6989586621679482528 c6989586621679482529 l0) l1 # 
type Apply b6989586621679482528 (TyFun a6989586621679482527 c6989586621679482529 -> Type) (FlipSym1 a6989586621679482527 b6989586621679482528 c6989586621679482529 l0) l1 = FlipSym2 a6989586621679482527 b6989586621679482528 c6989586621679482529 l0 l1

data FlipSym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679482527 (TyFun b6989586621679482528 c6989586621679482529 -> Type) -> Type) -> b6989586621679482528 -> TyFun a6989586621679482527 c6989586621679482529 -> *) (FlipSym2 a6989586621679482527 b6989586621679482528 c6989586621679482529) # 

Methods

suppressUnusedWarnings :: Proxy (FlipSym2 a6989586621679482527 b6989586621679482528 c6989586621679482529) t -> () #

type Apply a6989586621679482527 c6989586621679482529 (FlipSym2 a6989586621679482527 b6989586621679482528 c6989586621679482529 l1 l0) l2 # 
type Apply a6989586621679482527 c6989586621679482529 (FlipSym2 a6989586621679482527 b6989586621679482528 c6989586621679482529 l1 l0) l2 = FlipSym3 a6989586621679482527 b6989586621679482528 c6989586621679482529 l1 l0 l2

data AsTypeOfSym0 l #

Instances

SuppressUnusedWarnings (TyFun a6989586621679482526 (TyFun a6989586621679482526 a6989586621679482526 -> Type) -> *) (AsTypeOfSym0 a6989586621679482526) # 

Methods

suppressUnusedWarnings :: Proxy (AsTypeOfSym0 a6989586621679482526) t -> () #

type Apply a6989586621679482526 (TyFun a6989586621679482526 a6989586621679482526 -> Type) (AsTypeOfSym0 a6989586621679482526) l0 # 
type Apply a6989586621679482526 (TyFun a6989586621679482526 a6989586621679482526 -> Type) (AsTypeOfSym0 a6989586621679482526) l0 = AsTypeOfSym1 a6989586621679482526 l0

data AsTypeOfSym1 l l #

Instances

SuppressUnusedWarnings (a6989586621679482526 -> TyFun a6989586621679482526 a6989586621679482526 -> *) (AsTypeOfSym1 a6989586621679482526) # 

Methods

suppressUnusedWarnings :: Proxy (AsTypeOfSym1 a6989586621679482526) t -> () #

type Apply a6989586621679482526 a6989586621679482526 (AsTypeOfSym1 a6989586621679482526 l0) l1 # 
type Apply a6989586621679482526 a6989586621679482526 (AsTypeOfSym1 a6989586621679482526 l0) l1 = AsTypeOfSym2 a6989586621679482526 l0 l1

type AsTypeOfSym2 t t = AsTypeOf t t #

data SeqSym0 l #

Instances

SuppressUnusedWarnings (TyFun a6989586621679482524 (TyFun b6989586621679482525 b6989586621679482525 -> Type) -> *) (SeqSym0 a6989586621679482524 b6989586621679482525) # 

Methods

suppressUnusedWarnings :: Proxy (SeqSym0 a6989586621679482524 b6989586621679482525) t -> () #

type Apply a6989586621679482524 (TyFun b6989586621679482525 b6989586621679482525 -> Type) (SeqSym0 a6989586621679482524 b6989586621679482525) l0 # 
type Apply a6989586621679482524 (TyFun b6989586621679482525 b6989586621679482525 -> Type) (SeqSym0 a6989586621679482524 b6989586621679482525) l0 = SeqSym1 b6989586621679482525 a6989586621679482524 l0

data SeqSym1 l l #

Instances

SuppressUnusedWarnings (a6989586621679482524 -> TyFun b6989586621679482525 b6989586621679482525 -> *) (SeqSym1 b6989586621679482525 a6989586621679482524) # 

Methods

suppressUnusedWarnings :: Proxy (SeqSym1 b6989586621679482525 a6989586621679482524) t -> () #

type Apply b6989586621679482525 b6989586621679482525 (SeqSym1 b6989586621679482525 a6989586621679482524 l0) l1 # 
type Apply b6989586621679482525 b6989586621679482525 (SeqSym1 b6989586621679482525 a6989586621679482524 l0) l1 = SeqSym2 b6989586621679482525 a6989586621679482524 l0 l1

type SeqSym2 t t = Seq t t #

data (:$) l #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468866 (TyFun [a3530822107858468866] [a3530822107858468866] -> Type) -> *) ((:$) a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy ((:$) a3530822107858468866) t -> () #

type Apply a3530822107858468866 (TyFun [a3530822107858468866] [a3530822107858468866] -> Type) ((:$) a3530822107858468866) l0 # 
type Apply a3530822107858468866 (TyFun [a3530822107858468866] [a3530822107858468866] -> Type) ((:$) a3530822107858468866) l0 = (:$$) a3530822107858468866 l0

data l :$$ l #

Instances

SuppressUnusedWarnings (a3530822107858468866 -> TyFun [a3530822107858468866] [a3530822107858468866] -> *) ((:$$) a3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy ((:$$) a3530822107858468866) t -> () #

type Apply [a3530822107858468866] [a3530822107858468866] ((:$$) a3530822107858468866 l0) l1 # 
type Apply [a3530822107858468866] [a3530822107858468866] ((:$$) a3530822107858468866 l0) l1 = (:$$$) a3530822107858468866 l0 l1

type (:$$$) t t = (:) t t #

type NilSym0 = '[] #

data MapSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679482537 b6989586621679482538 -> Type) (TyFun [a6989586621679482537] [b6989586621679482538] -> Type) -> *) (MapSym0 a6989586621679482537 b6989586621679482538) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym0 a6989586621679482537 b6989586621679482538) t -> () #

type Apply (TyFun a6989586621679482537 b6989586621679482538 -> Type) (TyFun [a6989586621679482537] [b6989586621679482538] -> Type) (MapSym0 a6989586621679482537 b6989586621679482538) l0 # 
type Apply (TyFun a6989586621679482537 b6989586621679482538 -> Type) (TyFun [a6989586621679482537] [b6989586621679482538] -> Type) (MapSym0 a6989586621679482537 b6989586621679482538) l0 = MapSym1 a6989586621679482537 b6989586621679482538 l0

data MapSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679482537 b6989586621679482538 -> Type) -> TyFun [a6989586621679482537] [b6989586621679482538] -> *) (MapSym1 a6989586621679482537 b6989586621679482538) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym1 a6989586621679482537 b6989586621679482538) t -> () #

type Apply [a6989586621679482537] [b6989586621679482538] (MapSym1 a6989586621679482537 b6989586621679482538 l0) l1 # 
type Apply [a6989586621679482537] [b6989586621679482538] (MapSym1 a6989586621679482537 b6989586621679482538 l0) l1 = MapSym2 a6989586621679482537 b6989586621679482538 l0 l1

type MapSym2 t t = Map t t #

data ReverseSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700166] [a6989586621679700166] -> *) (ReverseSym0 a6989586621679700166) # 

Methods

suppressUnusedWarnings :: Proxy (ReverseSym0 a6989586621679700166) t -> () #

type Apply [a6989586621679700166] [a6989586621679700166] (ReverseSym0 a6989586621679700166) l0 # 
type Apply [a6989586621679700166] [a6989586621679700166] (ReverseSym0 a6989586621679700166) l0 = ReverseSym1 a6989586621679700166 l0

type ReverseSym1 t = Reverse t #

data l :++$$ l #

Instances

SuppressUnusedWarnings ([a6989586621679482536] -> TyFun [a6989586621679482536] [a6989586621679482536] -> *) ((:++$$) a6989586621679482536) # 

Methods

suppressUnusedWarnings :: Proxy ((:++$$) a6989586621679482536) t -> () #

type Apply [a6989586621679482536] [a6989586621679482536] ((:++$$) a6989586621679482536 l0) l1 # 
type Apply [a6989586621679482536] [a6989586621679482536] ((:++$$) a6989586621679482536 l0) l1 = (:++$$$) a6989586621679482536 l0 l1

data (:++$) l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679482536] (TyFun [a6989586621679482536] [a6989586621679482536] -> Type) -> *) ((:++$) a6989586621679482536) # 

Methods

suppressUnusedWarnings :: Proxy ((:++$) a6989586621679482536) t -> () #

type Apply [a6989586621679482536] (TyFun [a6989586621679482536] [a6989586621679482536] -> Type) ((:++$) a6989586621679482536) l0 # 
type Apply [a6989586621679482536] (TyFun [a6989586621679482536] [a6989586621679482536] -> Type) ((:++$) a6989586621679482536) l0 = (:++$$) a6989586621679482536 l0

data HeadSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700171] a6989586621679700171 -> *) (HeadSym0 a6989586621679700171) # 

Methods

suppressUnusedWarnings :: Proxy (HeadSym0 a6989586621679700171) t -> () #

type Apply [a6989586621679700171] a6989586621679700171 (HeadSym0 a6989586621679700171) l0 # 
type Apply [a6989586621679700171] a6989586621679700171 (HeadSym0 a6989586621679700171) l0 = HeadSym1 a6989586621679700171 l0

type HeadSym1 t = Head t #

data LastSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700170] a6989586621679700170 -> *) (LastSym0 a6989586621679700170) # 

Methods

suppressUnusedWarnings :: Proxy (LastSym0 a6989586621679700170) t -> () #

type Apply [a6989586621679700170] a6989586621679700170 (LastSym0 a6989586621679700170) l0 # 
type Apply [a6989586621679700170] a6989586621679700170 (LastSym0 a6989586621679700170) l0 = LastSym1 a6989586621679700170 l0

type LastSym1 t = Last t #

data TailSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700169] [a6989586621679700169] -> *) (TailSym0 a6989586621679700169) # 

Methods

suppressUnusedWarnings :: Proxy (TailSym0 a6989586621679700169) t -> () #

type Apply [a6989586621679700169] [a6989586621679700169] (TailSym0 a6989586621679700169) l0 # 
type Apply [a6989586621679700169] [a6989586621679700169] (TailSym0 a6989586621679700169) l0 = TailSym1 a6989586621679700169 l0

type TailSym1 t = Tail t #

data InitSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700168] [a6989586621679700168] -> *) (InitSym0 a6989586621679700168) # 

Methods

suppressUnusedWarnings :: Proxy (InitSym0 a6989586621679700168) t -> () #

type Apply [a6989586621679700168] [a6989586621679700168] (InitSym0 a6989586621679700168) l0 # 
type Apply [a6989586621679700168] [a6989586621679700168] (InitSym0 a6989586621679700168) l0 = InitSym1 a6989586621679700168 l0

type InitSym1 t = Init t #

data NullSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700167] Bool -> *) (NullSym0 a6989586621679700167) # 

Methods

suppressUnusedWarnings :: Proxy (NullSym0 a6989586621679700167) t -> () #

type Apply [a6989586621679700167] Bool (NullSym0 a6989586621679700167) l0 # 
type Apply [a6989586621679700167] Bool (NullSym0 a6989586621679700167) l0 = NullSym1 a6989586621679700167 l0

type NullSym1 t = Null t #

data FoldlSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679448348 (TyFun a6989586621679448347 b6989586621679448348 -> Type) -> Type) (TyFun b6989586621679448348 (TyFun [a6989586621679448347] b6989586621679448348 -> Type) -> Type) -> *) (FoldlSym0 a6989586621679448347 b6989586621679448348) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym0 a6989586621679448347 b6989586621679448348) t -> () #

type Apply (TyFun b6989586621679448348 (TyFun a6989586621679448347 b6989586621679448348 -> Type) -> Type) (TyFun b6989586621679448348 (TyFun [a6989586621679448347] b6989586621679448348 -> Type) -> Type) (FoldlSym0 a6989586621679448347 b6989586621679448348) l0 # 
type Apply (TyFun b6989586621679448348 (TyFun a6989586621679448347 b6989586621679448348 -> Type) -> Type) (TyFun b6989586621679448348 (TyFun [a6989586621679448347] b6989586621679448348 -> Type) -> Type) (FoldlSym0 a6989586621679448347 b6989586621679448348) l0 = FoldlSym1 a6989586621679448347 b6989586621679448348 l0

data FoldlSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679448348 (TyFun a6989586621679448347 b6989586621679448348 -> Type) -> Type) -> TyFun b6989586621679448348 (TyFun [a6989586621679448347] b6989586621679448348 -> Type) -> *) (FoldlSym1 a6989586621679448347 b6989586621679448348) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym1 a6989586621679448347 b6989586621679448348) t -> () #

type Apply b6989586621679448348 (TyFun [a6989586621679448347] b6989586621679448348 -> Type) (FoldlSym1 a6989586621679448347 b6989586621679448348 l0) l1 # 
type Apply b6989586621679448348 (TyFun [a6989586621679448347] b6989586621679448348 -> Type) (FoldlSym1 a6989586621679448347 b6989586621679448348 l0) l1 = FoldlSym2 a6989586621679448347 b6989586621679448348 l0 l1

data FoldlSym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679448348 (TyFun a6989586621679448347 b6989586621679448348 -> Type) -> Type) -> b6989586621679448348 -> TyFun [a6989586621679448347] b6989586621679448348 -> *) (FoldlSym2 a6989586621679448347 b6989586621679448348) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym2 a6989586621679448347 b6989586621679448348) t -> () #

type Apply [a6989586621679448347] b6989586621679448348 (FoldlSym2 a6989586621679448347 b6989586621679448348 l1 l0) l2 # 
type Apply [a6989586621679448347] b6989586621679448348 (FoldlSym2 a6989586621679448347 b6989586621679448348 l1 l0) l2 = FoldlSym3 a6989586621679448347 b6989586621679448348 l1 l0 l2

type FoldlSym3 t t t = Foldl t t t #

data Foldl1Sym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700157 (TyFun a6989586621679700157 a6989586621679700157 -> Type) -> Type) (TyFun [a6989586621679700157] a6989586621679700157 -> Type) -> *) (Foldl1Sym0 a6989586621679700157) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl1Sym0 a6989586621679700157) t -> () #

type Apply (TyFun a6989586621679700157 (TyFun a6989586621679700157 a6989586621679700157 -> Type) -> Type) (TyFun [a6989586621679700157] a6989586621679700157 -> Type) (Foldl1Sym0 a6989586621679700157) l0 # 
type Apply (TyFun a6989586621679700157 (TyFun a6989586621679700157 a6989586621679700157 -> Type) -> Type) (TyFun [a6989586621679700157] a6989586621679700157 -> Type) (Foldl1Sym0 a6989586621679700157) l0 = Foldl1Sym1 a6989586621679700157 l0

data Foldl1Sym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700157 (TyFun a6989586621679700157 a6989586621679700157 -> Type) -> Type) -> TyFun [a6989586621679700157] a6989586621679700157 -> *) (Foldl1Sym1 a6989586621679700157) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl1Sym1 a6989586621679700157) t -> () #

type Apply [a6989586621679700157] a6989586621679700157 (Foldl1Sym1 a6989586621679700157 l0) l1 # 
type Apply [a6989586621679700157] a6989586621679700157 (Foldl1Sym1 a6989586621679700157 l0) l1 = Foldl1Sym2 a6989586621679700157 l0 l1

type Foldl1Sym2 t t = Foldl1 t t #

data FoldrSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679482539 (TyFun b6989586621679482540 b6989586621679482540 -> Type) -> Type) (TyFun b6989586621679482540 (TyFun [a6989586621679482539] b6989586621679482540 -> Type) -> Type) -> *) (FoldrSym0 a6989586621679482539 b6989586621679482540) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym0 a6989586621679482539 b6989586621679482540) t -> () #

type Apply (TyFun a6989586621679482539 (TyFun b6989586621679482540 b6989586621679482540 -> Type) -> Type) (TyFun b6989586621679482540 (TyFun [a6989586621679482539] b6989586621679482540 -> Type) -> Type) (FoldrSym0 a6989586621679482539 b6989586621679482540) l0 # 
type Apply (TyFun a6989586621679482539 (TyFun b6989586621679482540 b6989586621679482540 -> Type) -> Type) (TyFun b6989586621679482540 (TyFun [a6989586621679482539] b6989586621679482540 -> Type) -> Type) (FoldrSym0 a6989586621679482539 b6989586621679482540) l0 = FoldrSym1 a6989586621679482539 b6989586621679482540 l0

data FoldrSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679482539 (TyFun b6989586621679482540 b6989586621679482540 -> Type) -> Type) -> TyFun b6989586621679482540 (TyFun [a6989586621679482539] b6989586621679482540 -> Type) -> *) (FoldrSym1 a6989586621679482539 b6989586621679482540) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym1 a6989586621679482539 b6989586621679482540) t -> () #

type Apply b6989586621679482540 (TyFun [a6989586621679482539] b6989586621679482540 -> Type) (FoldrSym1 a6989586621679482539 b6989586621679482540 l0) l1 # 
type Apply b6989586621679482540 (TyFun [a6989586621679482539] b6989586621679482540 -> Type) (FoldrSym1 a6989586621679482539 b6989586621679482540 l0) l1 = FoldrSym2 a6989586621679482539 b6989586621679482540 l0 l1

data FoldrSym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679482539 (TyFun b6989586621679482540 b6989586621679482540 -> Type) -> Type) -> b6989586621679482540 -> TyFun [a6989586621679482539] b6989586621679482540 -> *) (FoldrSym2 a6989586621679482539 b6989586621679482540) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym2 a6989586621679482539 b6989586621679482540) t -> () #

type Apply [a6989586621679482539] b6989586621679482540 (FoldrSym2 a6989586621679482539 b6989586621679482540 l1 l0) l2 # 
type Apply [a6989586621679482539] b6989586621679482540 (FoldrSym2 a6989586621679482539 b6989586621679482540 l1 l0) l2 = FoldrSym3 a6989586621679482539 b6989586621679482540 l1 l0 l2

type FoldrSym3 t t t = Foldr t t t #

data Foldr1Sym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700155 (TyFun a6989586621679700155 a6989586621679700155 -> Type) -> Type) (TyFun [a6989586621679700155] a6989586621679700155 -> Type) -> *) (Foldr1Sym0 a6989586621679700155) # 

Methods

suppressUnusedWarnings :: Proxy (Foldr1Sym0 a6989586621679700155) t -> () #

type Apply (TyFun a6989586621679700155 (TyFun a6989586621679700155 a6989586621679700155 -> Type) -> Type) (TyFun [a6989586621679700155] a6989586621679700155 -> Type) (Foldr1Sym0 a6989586621679700155) l0 # 
type Apply (TyFun a6989586621679700155 (TyFun a6989586621679700155 a6989586621679700155 -> Type) -> Type) (TyFun [a6989586621679700155] a6989586621679700155 -> Type) (Foldr1Sym0 a6989586621679700155) l0 = Foldr1Sym1 a6989586621679700155 l0

data Foldr1Sym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700155 (TyFun a6989586621679700155 a6989586621679700155 -> Type) -> Type) -> TyFun [a6989586621679700155] a6989586621679700155 -> *) (Foldr1Sym1 a6989586621679700155) # 

Methods

suppressUnusedWarnings :: Proxy (Foldr1Sym1 a6989586621679700155) t -> () #

type Apply [a6989586621679700155] a6989586621679700155 (Foldr1Sym1 a6989586621679700155 l0) l1 # 
type Apply [a6989586621679700155] a6989586621679700155 (Foldr1Sym1 a6989586621679700155 l0) l1 = Foldr1Sym2 a6989586621679700155 l0 l1

type Foldr1Sym2 t t = Foldr1 t t #

data ConcatSym0 l #

Instances

SuppressUnusedWarnings (TyFun [[a6989586621679700154]] [a6989586621679700154] -> *) (ConcatSym0 a6989586621679700154) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatSym0 a6989586621679700154) t -> () #

type Apply [[a6989586621679700154]] [a6989586621679700154] (ConcatSym0 a6989586621679700154) l0 # 
type Apply [[a6989586621679700154]] [a6989586621679700154] (ConcatSym0 a6989586621679700154) l0 = ConcatSym1 a6989586621679700154 l0

type ConcatSym1 t = Concat t #

data ConcatMapSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700152 [b6989586621679700153] -> Type) (TyFun [a6989586621679700152] [b6989586621679700153] -> Type) -> *) (ConcatMapSym0 a6989586621679700152 b6989586621679700153) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatMapSym0 a6989586621679700152 b6989586621679700153) t -> () #

type Apply (TyFun a6989586621679700152 [b6989586621679700153] -> Type) (TyFun [a6989586621679700152] [b6989586621679700153] -> Type) (ConcatMapSym0 a6989586621679700152 b6989586621679700153) l0 # 
type Apply (TyFun a6989586621679700152 [b6989586621679700153] -> Type) (TyFun [a6989586621679700152] [b6989586621679700153] -> Type) (ConcatMapSym0 a6989586621679700152 b6989586621679700153) l0 = ConcatMapSym1 a6989586621679700152 b6989586621679700153 l0

data ConcatMapSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700152 [b6989586621679700153] -> Type) -> TyFun [a6989586621679700152] [b6989586621679700153] -> *) (ConcatMapSym1 a6989586621679700152 b6989586621679700153) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatMapSym1 a6989586621679700152 b6989586621679700153) t -> () #

type Apply [a6989586621679700152] [b6989586621679700153] (ConcatMapSym1 a6989586621679700152 b6989586621679700153 l0) l1 # 
type Apply [a6989586621679700152] [b6989586621679700153] (ConcatMapSym1 a6989586621679700152 b6989586621679700153 l0) l1 = ConcatMapSym2 a6989586621679700152 b6989586621679700153 l0 l1

type ConcatMapSym2 t t = ConcatMap t t #

data MaximumBySym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700084 (TyFun a6989586621679700084 Ordering -> Type) -> Type) (TyFun [a6989586621679700084] a6989586621679700084 -> Type) -> *) (MaximumBySym0 a6989586621679700084) # 

Methods

suppressUnusedWarnings :: Proxy (MaximumBySym0 a6989586621679700084) t -> () #

type Apply (TyFun a6989586621679700084 (TyFun a6989586621679700084 Ordering -> Type) -> Type) (TyFun [a6989586621679700084] a6989586621679700084 -> Type) (MaximumBySym0 a6989586621679700084) l0 # 
type Apply (TyFun a6989586621679700084 (TyFun a6989586621679700084 Ordering -> Type) -> Type) (TyFun [a6989586621679700084] a6989586621679700084 -> Type) (MaximumBySym0 a6989586621679700084) l0 = MaximumBySym1 a6989586621679700084 l0

data MaximumBySym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700084 (TyFun a6989586621679700084 Ordering -> Type) -> Type) -> TyFun [a6989586621679700084] a6989586621679700084 -> *) (MaximumBySym1 a6989586621679700084) # 

Methods

suppressUnusedWarnings :: Proxy (MaximumBySym1 a6989586621679700084) t -> () #

type Apply [a6989586621679700084] a6989586621679700084 (MaximumBySym1 a6989586621679700084 l0) l1 # 
type Apply [a6989586621679700084] a6989586621679700084 (MaximumBySym1 a6989586621679700084 l0) l1 = MaximumBySym2 a6989586621679700084 l0 l1

type MaximumBySym2 t t = MaximumBy t t #

data MinimumBySym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700083 (TyFun a6989586621679700083 Ordering -> Type) -> Type) (TyFun [a6989586621679700083] a6989586621679700083 -> Type) -> *) (MinimumBySym0 a6989586621679700083) # 

Methods

suppressUnusedWarnings :: Proxy (MinimumBySym0 a6989586621679700083) t -> () #

type Apply (TyFun a6989586621679700083 (TyFun a6989586621679700083 Ordering -> Type) -> Type) (TyFun [a6989586621679700083] a6989586621679700083 -> Type) (MinimumBySym0 a6989586621679700083) l0 # 
type Apply (TyFun a6989586621679700083 (TyFun a6989586621679700083 Ordering -> Type) -> Type) (TyFun [a6989586621679700083] a6989586621679700083 -> Type) (MinimumBySym0 a6989586621679700083) l0 = MinimumBySym1 a6989586621679700083 l0

data MinimumBySym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700083 (TyFun a6989586621679700083 Ordering -> Type) -> Type) -> TyFun [a6989586621679700083] a6989586621679700083 -> *) (MinimumBySym1 a6989586621679700083) # 

Methods

suppressUnusedWarnings :: Proxy (MinimumBySym1 a6989586621679700083) t -> () #

type Apply [a6989586621679700083] a6989586621679700083 (MinimumBySym1 a6989586621679700083 l0) l1 # 
type Apply [a6989586621679700083] a6989586621679700083 (MinimumBySym1 a6989586621679700083 l0) l1 = MinimumBySym2 a6989586621679700083 l0 l1

type MinimumBySym2 t t = MinimumBy t t #

data AndSym0 l #

type AndSym1 t = And t #

data OrSym0 l #

Instances

type OrSym1 t = Or t #

data Any_Sym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679689467 Bool -> Type) (TyFun [a6989586621679689467] Bool -> Type) -> *) (Any_Sym0 a6989586621679689467) # 

Methods

suppressUnusedWarnings :: Proxy (Any_Sym0 a6989586621679689467) t -> () #

type Apply (TyFun a6989586621679689467 Bool -> Type) (TyFun [a6989586621679689467] Bool -> Type) (Any_Sym0 a6989586621679689467) l0 # 
type Apply (TyFun a6989586621679689467 Bool -> Type) (TyFun [a6989586621679689467] Bool -> Type) (Any_Sym0 a6989586621679689467) l0 = Any_Sym1 a6989586621679689467 l0

data Any_Sym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679689467 Bool -> Type) -> TyFun [a6989586621679689467] Bool -> *) (Any_Sym1 a6989586621679689467) # 

Methods

suppressUnusedWarnings :: Proxy (Any_Sym1 a6989586621679689467) t -> () #

type Apply [a6989586621679689467] Bool (Any_Sym1 a6989586621679689467 l0) l1 # 
type Apply [a6989586621679689467] Bool (Any_Sym1 a6989586621679689467 l0) l1 = Any_Sym2 a6989586621679689467 l0 l1

type Any_Sym2 t t = Any_ t t #

data AllSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700151 Bool -> Type) (TyFun [a6989586621679700151] Bool -> Type) -> *) (AllSym0 a6989586621679700151) # 

Methods

suppressUnusedWarnings :: Proxy (AllSym0 a6989586621679700151) t -> () #

type Apply (TyFun a6989586621679700151 Bool -> Type) (TyFun [a6989586621679700151] Bool -> Type) (AllSym0 a6989586621679700151) l0 # 
type Apply (TyFun a6989586621679700151 Bool -> Type) (TyFun [a6989586621679700151] Bool -> Type) (AllSym0 a6989586621679700151) l0 = AllSym1 a6989586621679700151 l0

data AllSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700151 Bool -> Type) -> TyFun [a6989586621679700151] Bool -> *) (AllSym1 a6989586621679700151) # 

Methods

suppressUnusedWarnings :: Proxy (AllSym1 a6989586621679700151) t -> () #

type Apply [a6989586621679700151] Bool (AllSym1 a6989586621679700151 l0) l1 # 
type Apply [a6989586621679700151] Bool (AllSym1 a6989586621679700151 l0) l1 = AllSym2 a6989586621679700151 l0 l1

type AllSym2 t t = All t t #

data ScanlSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679700149 (TyFun a6989586621679700150 b6989586621679700149 -> Type) -> Type) (TyFun b6989586621679700149 (TyFun [a6989586621679700150] [b6989586621679700149] -> Type) -> Type) -> *) (ScanlSym0 a6989586621679700150 b6989586621679700149) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym0 a6989586621679700150 b6989586621679700149) t -> () #

type Apply (TyFun b6989586621679700149 (TyFun a6989586621679700150 b6989586621679700149 -> Type) -> Type) (TyFun b6989586621679700149 (TyFun [a6989586621679700150] [b6989586621679700149] -> Type) -> Type) (ScanlSym0 a6989586621679700150 b6989586621679700149) l0 # 
type Apply (TyFun b6989586621679700149 (TyFun a6989586621679700150 b6989586621679700149 -> Type) -> Type) (TyFun b6989586621679700149 (TyFun [a6989586621679700150] [b6989586621679700149] -> Type) -> Type) (ScanlSym0 a6989586621679700150 b6989586621679700149) l0 = ScanlSym1 a6989586621679700150 b6989586621679700149 l0

data ScanlSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679700149 (TyFun a6989586621679700150 b6989586621679700149 -> Type) -> Type) -> TyFun b6989586621679700149 (TyFun [a6989586621679700150] [b6989586621679700149] -> Type) -> *) (ScanlSym1 a6989586621679700150 b6989586621679700149) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym1 a6989586621679700150 b6989586621679700149) t -> () #

type Apply b6989586621679700149 (TyFun [a6989586621679700150] [b6989586621679700149] -> Type) (ScanlSym1 a6989586621679700150 b6989586621679700149 l0) l1 # 
type Apply b6989586621679700149 (TyFun [a6989586621679700150] [b6989586621679700149] -> Type) (ScanlSym1 a6989586621679700150 b6989586621679700149 l0) l1 = ScanlSym2 a6989586621679700150 b6989586621679700149 l0 l1

data ScanlSym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679700149 (TyFun a6989586621679700150 b6989586621679700149 -> Type) -> Type) -> b6989586621679700149 -> TyFun [a6989586621679700150] [b6989586621679700149] -> *) (ScanlSym2 a6989586621679700150 b6989586621679700149) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym2 a6989586621679700150 b6989586621679700149) t -> () #

type Apply [a6989586621679700150] [b6989586621679700149] (ScanlSym2 a6989586621679700150 b6989586621679700149 l1 l0) l2 # 
type Apply [a6989586621679700150] [b6989586621679700149] (ScanlSym2 a6989586621679700150 b6989586621679700149 l1 l0) l2 = ScanlSym3 a6989586621679700150 b6989586621679700149 l1 l0 l2

type ScanlSym3 t t t = Scanl t t t #

data Scanl1Sym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700148 (TyFun a6989586621679700148 a6989586621679700148 -> Type) -> Type) (TyFun [a6989586621679700148] [a6989586621679700148] -> Type) -> *) (Scanl1Sym0 a6989586621679700148) # 

Methods

suppressUnusedWarnings :: Proxy (Scanl1Sym0 a6989586621679700148) t -> () #

type Apply (TyFun a6989586621679700148 (TyFun a6989586621679700148 a6989586621679700148 -> Type) -> Type) (TyFun [a6989586621679700148] [a6989586621679700148] -> Type) (Scanl1Sym0 a6989586621679700148) l0 # 
type Apply (TyFun a6989586621679700148 (TyFun a6989586621679700148 a6989586621679700148 -> Type) -> Type) (TyFun [a6989586621679700148] [a6989586621679700148] -> Type) (Scanl1Sym0 a6989586621679700148) l0 = Scanl1Sym1 a6989586621679700148 l0

data Scanl1Sym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700148 (TyFun a6989586621679700148 a6989586621679700148 -> Type) -> Type) -> TyFun [a6989586621679700148] [a6989586621679700148] -> *) (Scanl1Sym1 a6989586621679700148) # 

Methods

suppressUnusedWarnings :: Proxy (Scanl1Sym1 a6989586621679700148) t -> () #

type Apply [a6989586621679700148] [a6989586621679700148] (Scanl1Sym1 a6989586621679700148 l0) l1 # 
type Apply [a6989586621679700148] [a6989586621679700148] (Scanl1Sym1 a6989586621679700148 l0) l1 = Scanl1Sym2 a6989586621679700148 l0 l1

type Scanl1Sym2 t t = Scanl1 t t #

data ScanrSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700146 (TyFun b6989586621679700147 b6989586621679700147 -> Type) -> Type) (TyFun b6989586621679700147 (TyFun [a6989586621679700146] [b6989586621679700147] -> Type) -> Type) -> *) (ScanrSym0 a6989586621679700146 b6989586621679700147) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym0 a6989586621679700146 b6989586621679700147) t -> () #

type Apply (TyFun a6989586621679700146 (TyFun b6989586621679700147 b6989586621679700147 -> Type) -> Type) (TyFun b6989586621679700147 (TyFun [a6989586621679700146] [b6989586621679700147] -> Type) -> Type) (ScanrSym0 a6989586621679700146 b6989586621679700147) l0 # 
type Apply (TyFun a6989586621679700146 (TyFun b6989586621679700147 b6989586621679700147 -> Type) -> Type) (TyFun b6989586621679700147 (TyFun [a6989586621679700146] [b6989586621679700147] -> Type) -> Type) (ScanrSym0 a6989586621679700146 b6989586621679700147) l0 = ScanrSym1 a6989586621679700146 b6989586621679700147 l0

data ScanrSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700146 (TyFun b6989586621679700147 b6989586621679700147 -> Type) -> Type) -> TyFun b6989586621679700147 (TyFun [a6989586621679700146] [b6989586621679700147] -> Type) -> *) (ScanrSym1 a6989586621679700146 b6989586621679700147) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym1 a6989586621679700146 b6989586621679700147) t -> () #

type Apply b6989586621679700147 (TyFun [a6989586621679700146] [b6989586621679700147] -> Type) (ScanrSym1 a6989586621679700146 b6989586621679700147 l0) l1 # 
type Apply b6989586621679700147 (TyFun [a6989586621679700146] [b6989586621679700147] -> Type) (ScanrSym1 a6989586621679700146 b6989586621679700147 l0) l1 = ScanrSym2 a6989586621679700146 b6989586621679700147 l0 l1

data ScanrSym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700146 (TyFun b6989586621679700147 b6989586621679700147 -> Type) -> Type) -> b6989586621679700147 -> TyFun [a6989586621679700146] [b6989586621679700147] -> *) (ScanrSym2 a6989586621679700146 b6989586621679700147) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym2 a6989586621679700146 b6989586621679700147) t -> () #

type Apply [a6989586621679700146] [b6989586621679700147] (ScanrSym2 a6989586621679700146 b6989586621679700147 l1 l0) l2 # 
type Apply [a6989586621679700146] [b6989586621679700147] (ScanrSym2 a6989586621679700146 b6989586621679700147 l1 l0) l2 = ScanrSym3 a6989586621679700146 b6989586621679700147 l1 l0 l2

type ScanrSym3 t t t = Scanr t t t #

data Scanr1Sym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700145 (TyFun a6989586621679700145 a6989586621679700145 -> Type) -> Type) (TyFun [a6989586621679700145] [a6989586621679700145] -> Type) -> *) (Scanr1Sym0 a6989586621679700145) # 

Methods

suppressUnusedWarnings :: Proxy (Scanr1Sym0 a6989586621679700145) t -> () #

type Apply (TyFun a6989586621679700145 (TyFun a6989586621679700145 a6989586621679700145 -> Type) -> Type) (TyFun [a6989586621679700145] [a6989586621679700145] -> Type) (Scanr1Sym0 a6989586621679700145) l0 # 
type Apply (TyFun a6989586621679700145 (TyFun a6989586621679700145 a6989586621679700145 -> Type) -> Type) (TyFun [a6989586621679700145] [a6989586621679700145] -> Type) (Scanr1Sym0 a6989586621679700145) l0 = Scanr1Sym1 a6989586621679700145 l0

data Scanr1Sym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700145 (TyFun a6989586621679700145 a6989586621679700145 -> Type) -> Type) -> TyFun [a6989586621679700145] [a6989586621679700145] -> *) (Scanr1Sym1 a6989586621679700145) # 

Methods

suppressUnusedWarnings :: Proxy (Scanr1Sym1 a6989586621679700145) t -> () #

type Apply [a6989586621679700145] [a6989586621679700145] (Scanr1Sym1 a6989586621679700145 l0) l1 # 
type Apply [a6989586621679700145] [a6989586621679700145] (Scanr1Sym1 a6989586621679700145 l0) l1 = Scanr1Sym2 a6989586621679700145 l0 l1

type Scanr1Sym2 t t = Scanr1 t t #

data ElemSym0 l #

Instances

SuppressUnusedWarnings (TyFun a6989586621679700131 (TyFun [a6989586621679700131] Bool -> Type) -> *) (ElemSym0 a6989586621679700131) # 

Methods

suppressUnusedWarnings :: Proxy (ElemSym0 a6989586621679700131) t -> () #

type Apply a6989586621679700131 (TyFun [a6989586621679700131] Bool -> Type) (ElemSym0 a6989586621679700131) l0 # 
type Apply a6989586621679700131 (TyFun [a6989586621679700131] Bool -> Type) (ElemSym0 a6989586621679700131) l0 = ElemSym1 a6989586621679700131 l0

data ElemSym1 l l #

Instances

SuppressUnusedWarnings (a6989586621679700131 -> TyFun [a6989586621679700131] Bool -> *) (ElemSym1 a6989586621679700131) # 

Methods

suppressUnusedWarnings :: Proxy (ElemSym1 a6989586621679700131) t -> () #

type Apply [a6989586621679700131] Bool (ElemSym1 a6989586621679700131 l0) l1 # 
type Apply [a6989586621679700131] Bool (ElemSym1 a6989586621679700131 l0) l1 = ElemSym2 a6989586621679700131 l0 l1

type ElemSym2 t t = Elem t t #

data NotElemSym0 l #

Instances

SuppressUnusedWarnings (TyFun a6989586621679700130 (TyFun [a6989586621679700130] Bool -> Type) -> *) (NotElemSym0 a6989586621679700130) # 

Methods

suppressUnusedWarnings :: Proxy (NotElemSym0 a6989586621679700130) t -> () #

type Apply a6989586621679700130 (TyFun [a6989586621679700130] Bool -> Type) (NotElemSym0 a6989586621679700130) l0 # 
type Apply a6989586621679700130 (TyFun [a6989586621679700130] Bool -> Type) (NotElemSym0 a6989586621679700130) l0 = NotElemSym1 a6989586621679700130 l0

data NotElemSym1 l l #

Instances

SuppressUnusedWarnings (a6989586621679700130 -> TyFun [a6989586621679700130] Bool -> *) (NotElemSym1 a6989586621679700130) # 

Methods

suppressUnusedWarnings :: Proxy (NotElemSym1 a6989586621679700130) t -> () #

type Apply [a6989586621679700130] Bool (NotElemSym1 a6989586621679700130 l0) l1 # 
type Apply [a6989586621679700130] Bool (NotElemSym1 a6989586621679700130 l0) l1 = NotElemSym2 a6989586621679700130 l0 l1

type NotElemSym2 t t = NotElem t t #

data ZipSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700128] (TyFun [b6989586621679700129] [(a6989586621679700128, b6989586621679700129)] -> Type) -> *) (ZipSym0 a6989586621679700128 b6989586621679700129) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym0 a6989586621679700128 b6989586621679700129) t -> () #

type Apply [a6989586621679700128] (TyFun [b6989586621679700129] [(a6989586621679700128, b6989586621679700129)] -> Type) (ZipSym0 a6989586621679700128 b6989586621679700129) l0 # 
type Apply [a6989586621679700128] (TyFun [b6989586621679700129] [(a6989586621679700128, b6989586621679700129)] -> Type) (ZipSym0 a6989586621679700128 b6989586621679700129) l0 = ZipSym1 b6989586621679700129 a6989586621679700128 l0

data ZipSym1 l l #

Instances

SuppressUnusedWarnings ([a6989586621679700128] -> TyFun [b6989586621679700129] [(a6989586621679700128, b6989586621679700129)] -> *) (ZipSym1 b6989586621679700129 a6989586621679700128) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym1 b6989586621679700129 a6989586621679700128) t -> () #

type Apply [b6989586621679700129] [(a6989586621679700128, b6989586621679700129)] (ZipSym1 b6989586621679700129 a6989586621679700128 l0) l1 # 
type Apply [b6989586621679700129] [(a6989586621679700128, b6989586621679700129)] (ZipSym1 b6989586621679700129 a6989586621679700128 l0) l1 = ZipSym2 b6989586621679700129 a6989586621679700128 l0 l1

type ZipSym2 t t = Zip t t #

data Zip3Sym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700125] (TyFun [b6989586621679700126] (TyFun [c6989586621679700127] [(a6989586621679700125, b6989586621679700126, c6989586621679700127)] -> Type) -> Type) -> *) (Zip3Sym0 a6989586621679700125 b6989586621679700126 c6989586621679700127) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym0 a6989586621679700125 b6989586621679700126 c6989586621679700127) t -> () #

type Apply [a6989586621679700125] (TyFun [b6989586621679700126] (TyFun [c6989586621679700127] [(a6989586621679700125, b6989586621679700126, c6989586621679700127)] -> Type) -> Type) (Zip3Sym0 a6989586621679700125 b6989586621679700126 c6989586621679700127) l0 # 
type Apply [a6989586621679700125] (TyFun [b6989586621679700126] (TyFun [c6989586621679700127] [(a6989586621679700125, b6989586621679700126, c6989586621679700127)] -> Type) -> Type) (Zip3Sym0 a6989586621679700125 b6989586621679700126 c6989586621679700127) l0 = Zip3Sym1 b6989586621679700126 c6989586621679700127 a6989586621679700125 l0

data Zip3Sym1 l l #

Instances

SuppressUnusedWarnings ([a6989586621679700125] -> TyFun [b6989586621679700126] (TyFun [c6989586621679700127] [(a6989586621679700125, b6989586621679700126, c6989586621679700127)] -> Type) -> *) (Zip3Sym1 b6989586621679700126 c6989586621679700127 a6989586621679700125) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym1 b6989586621679700126 c6989586621679700127 a6989586621679700125) t -> () #

type Apply [b6989586621679700126] (TyFun [c6989586621679700127] [(a6989586621679700125, b6989586621679700126, c6989586621679700127)] -> Type) (Zip3Sym1 b6989586621679700126 c6989586621679700127 a6989586621679700125 l0) l1 # 
type Apply [b6989586621679700126] (TyFun [c6989586621679700127] [(a6989586621679700125, b6989586621679700126, c6989586621679700127)] -> Type) (Zip3Sym1 b6989586621679700126 c6989586621679700127 a6989586621679700125 l0) l1 = Zip3Sym2 c6989586621679700127 b6989586621679700126 a6989586621679700125 l0 l1

data Zip3Sym2 l l l #

Instances

SuppressUnusedWarnings ([a6989586621679700125] -> [b6989586621679700126] -> TyFun [c6989586621679700127] [(a6989586621679700125, b6989586621679700126, c6989586621679700127)] -> *) (Zip3Sym2 c6989586621679700127 b6989586621679700126 a6989586621679700125) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym2 c6989586621679700127 b6989586621679700126 a6989586621679700125) t -> () #

type Apply [c6989586621679700127] [(a6989586621679700125, b6989586621679700126, c6989586621679700127)] (Zip3Sym2 c6989586621679700127 b6989586621679700126 a6989586621679700125 l1 l0) l2 # 
type Apply [c6989586621679700127] [(a6989586621679700125, b6989586621679700126, c6989586621679700127)] (Zip3Sym2 c6989586621679700127 b6989586621679700126 a6989586621679700125 l1 l0) l2 = Zip3Sym3 c6989586621679700127 b6989586621679700126 a6989586621679700125 l1 l0 l2

type Zip3Sym3 t t t = Zip3 t t t #

data ZipWithSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700122 (TyFun b6989586621679700123 c6989586621679700124 -> Type) -> Type) (TyFun [a6989586621679700122] (TyFun [b6989586621679700123] [c6989586621679700124] -> Type) -> Type) -> *) (ZipWithSym0 a6989586621679700122 b6989586621679700123 c6989586621679700124) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym0 a6989586621679700122 b6989586621679700123 c6989586621679700124) t -> () #

type Apply (TyFun a6989586621679700122 (TyFun b6989586621679700123 c6989586621679700124 -> Type) -> Type) (TyFun [a6989586621679700122] (TyFun [b6989586621679700123] [c6989586621679700124] -> Type) -> Type) (ZipWithSym0 a6989586621679700122 b6989586621679700123 c6989586621679700124) l0 # 
type Apply (TyFun a6989586621679700122 (TyFun b6989586621679700123 c6989586621679700124 -> Type) -> Type) (TyFun [a6989586621679700122] (TyFun [b6989586621679700123] [c6989586621679700124] -> Type) -> Type) (ZipWithSym0 a6989586621679700122 b6989586621679700123 c6989586621679700124) l0 = ZipWithSym1 a6989586621679700122 b6989586621679700123 c6989586621679700124 l0

data ZipWithSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700122 (TyFun b6989586621679700123 c6989586621679700124 -> Type) -> Type) -> TyFun [a6989586621679700122] (TyFun [b6989586621679700123] [c6989586621679700124] -> Type) -> *) (ZipWithSym1 a6989586621679700122 b6989586621679700123 c6989586621679700124) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym1 a6989586621679700122 b6989586621679700123 c6989586621679700124) t -> () #

type Apply [a6989586621679700122] (TyFun [b6989586621679700123] [c6989586621679700124] -> Type) (ZipWithSym1 a6989586621679700122 b6989586621679700123 c6989586621679700124 l0) l1 # 
type Apply [a6989586621679700122] (TyFun [b6989586621679700123] [c6989586621679700124] -> Type) (ZipWithSym1 a6989586621679700122 b6989586621679700123 c6989586621679700124 l0) l1 = ZipWithSym2 a6989586621679700122 b6989586621679700123 c6989586621679700124 l0 l1

data ZipWithSym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700122 (TyFun b6989586621679700123 c6989586621679700124 -> Type) -> Type) -> [a6989586621679700122] -> TyFun [b6989586621679700123] [c6989586621679700124] -> *) (ZipWithSym2 a6989586621679700122 b6989586621679700123 c6989586621679700124) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym2 a6989586621679700122 b6989586621679700123 c6989586621679700124) t -> () #

type Apply [b6989586621679700123] [c6989586621679700124] (ZipWithSym2 a6989586621679700122 b6989586621679700123 c6989586621679700124 l1 l0) l2 # 
type Apply [b6989586621679700123] [c6989586621679700124] (ZipWithSym2 a6989586621679700122 b6989586621679700123 c6989586621679700124 l1 l0) l2 = ZipWithSym3 a6989586621679700122 b6989586621679700123 c6989586621679700124 l1 l0 l2

type ZipWithSym3 t t t = ZipWith t t t #

data ZipWith3Sym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700118 (TyFun b6989586621679700119 (TyFun c6989586621679700120 d6989586621679700121 -> Type) -> Type) -> Type) (TyFun [a6989586621679700118] (TyFun [b6989586621679700119] (TyFun [c6989586621679700120] [d6989586621679700121] -> Type) -> Type) -> Type) -> *) (ZipWith3Sym0 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym0 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) t -> () #

type Apply (TyFun a6989586621679700118 (TyFun b6989586621679700119 (TyFun c6989586621679700120 d6989586621679700121 -> Type) -> Type) -> Type) (TyFun [a6989586621679700118] (TyFun [b6989586621679700119] (TyFun [c6989586621679700120] [d6989586621679700121] -> Type) -> Type) -> Type) (ZipWith3Sym0 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) l0 # 
type Apply (TyFun a6989586621679700118 (TyFun b6989586621679700119 (TyFun c6989586621679700120 d6989586621679700121 -> Type) -> Type) -> Type) (TyFun [a6989586621679700118] (TyFun [b6989586621679700119] (TyFun [c6989586621679700120] [d6989586621679700121] -> Type) -> Type) -> Type) (ZipWith3Sym0 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) l0 = ZipWith3Sym1 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l0

data ZipWith3Sym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700118 (TyFun b6989586621679700119 (TyFun c6989586621679700120 d6989586621679700121 -> Type) -> Type) -> Type) -> TyFun [a6989586621679700118] (TyFun [b6989586621679700119] (TyFun [c6989586621679700120] [d6989586621679700121] -> Type) -> Type) -> *) (ZipWith3Sym1 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym1 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) t -> () #

type Apply [a6989586621679700118] (TyFun [b6989586621679700119] (TyFun [c6989586621679700120] [d6989586621679700121] -> Type) -> Type) (ZipWith3Sym1 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l0) l1 # 
type Apply [a6989586621679700118] (TyFun [b6989586621679700119] (TyFun [c6989586621679700120] [d6989586621679700121] -> Type) -> Type) (ZipWith3Sym1 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l0) l1 = ZipWith3Sym2 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l0 l1

data ZipWith3Sym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700118 (TyFun b6989586621679700119 (TyFun c6989586621679700120 d6989586621679700121 -> Type) -> Type) -> Type) -> [a6989586621679700118] -> TyFun [b6989586621679700119] (TyFun [c6989586621679700120] [d6989586621679700121] -> Type) -> *) (ZipWith3Sym2 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym2 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) t -> () #

type Apply [b6989586621679700119] (TyFun [c6989586621679700120] [d6989586621679700121] -> Type) (ZipWith3Sym2 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l1 l0) l2 # 
type Apply [b6989586621679700119] (TyFun [c6989586621679700120] [d6989586621679700121] -> Type) (ZipWith3Sym2 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l1 l0) l2 = ZipWith3Sym3 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l1 l0 l2

data ZipWith3Sym3 l l l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700118 (TyFun b6989586621679700119 (TyFun c6989586621679700120 d6989586621679700121 -> Type) -> Type) -> Type) -> [a6989586621679700118] -> [b6989586621679700119] -> TyFun [c6989586621679700120] [d6989586621679700121] -> *) (ZipWith3Sym3 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym3 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121) t -> () #

type Apply [c6989586621679700120] [d6989586621679700121] (ZipWith3Sym3 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l2 l1 l0) l3 # 
type Apply [c6989586621679700120] [d6989586621679700121] (ZipWith3Sym3 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l2 l1 l0) l3 = ZipWith3Sym4 a6989586621679700118 b6989586621679700119 c6989586621679700120 d6989586621679700121 l2 l1 l0 l3

data UnzipSym0 l #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679700116, b6989586621679700117)] ([a6989586621679700116], [b6989586621679700117]) -> *) (UnzipSym0 a6989586621679700116 b6989586621679700117) # 

Methods

suppressUnusedWarnings :: Proxy (UnzipSym0 a6989586621679700116 b6989586621679700117) t -> () #

type Apply [(a6989586621679700116, b6989586621679700117)] ([a6989586621679700116], [b6989586621679700117]) (UnzipSym0 a6989586621679700116 b6989586621679700117) l0 # 
type Apply [(a6989586621679700116, b6989586621679700117)] ([a6989586621679700116], [b6989586621679700117]) (UnzipSym0 a6989586621679700116 b6989586621679700117) l0 = UnzipSym1 a6989586621679700116 b6989586621679700117 l0

type UnzipSym1 t = Unzip t #

data UntilSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679941957 Bool -> Type) (TyFun (TyFun a6989586621679941957 a6989586621679941957 -> Type) (TyFun a6989586621679941957 a6989586621679941957 -> Type) -> Type) -> *) (UntilSym0 a6989586621679941957) # 

Methods

suppressUnusedWarnings :: Proxy (UntilSym0 a6989586621679941957) t -> () #

type Apply (TyFun a6989586621679941957 Bool -> Type) (TyFun (TyFun a6989586621679941957 a6989586621679941957 -> Type) (TyFun a6989586621679941957 a6989586621679941957 -> Type) -> Type) (UntilSym0 a6989586621679941957) l0 # 
type Apply (TyFun a6989586621679941957 Bool -> Type) (TyFun (TyFun a6989586621679941957 a6989586621679941957 -> Type) (TyFun a6989586621679941957 a6989586621679941957 -> Type) -> Type) (UntilSym0 a6989586621679941957) l0 = UntilSym1 a6989586621679941957 l0

data UntilSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679941957 Bool -> Type) -> TyFun (TyFun a6989586621679941957 a6989586621679941957 -> Type) (TyFun a6989586621679941957 a6989586621679941957 -> Type) -> *) (UntilSym1 a6989586621679941957) # 

Methods

suppressUnusedWarnings :: Proxy (UntilSym1 a6989586621679941957) t -> () #

type Apply (TyFun a6989586621679941957 a6989586621679941957 -> Type) (TyFun a6989586621679941957 a6989586621679941957 -> Type) (UntilSym1 a6989586621679941957 l0) l1 # 
type Apply (TyFun a6989586621679941957 a6989586621679941957 -> Type) (TyFun a6989586621679941957 a6989586621679941957 -> Type) (UntilSym1 a6989586621679941957 l0) l1 = UntilSym2 a6989586621679941957 l0 l1

data UntilSym2 l l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679941957 Bool -> Type) -> (TyFun a6989586621679941957 a6989586621679941957 -> Type) -> TyFun a6989586621679941957 a6989586621679941957 -> *) (UntilSym2 a6989586621679941957) # 

Methods

suppressUnusedWarnings :: Proxy (UntilSym2 a6989586621679941957) t -> () #

type Apply a6989586621679941957 a6989586621679941957 (UntilSym2 a6989586621679941957 l1 l0) l2 # 
type Apply a6989586621679941957 a6989586621679941957 (UntilSym2 a6989586621679941957 l1 l0) l2 = UntilSym3 a6989586621679941957 l1 l0 l2

type UntilSym3 t t t = Until t t t #

data LengthSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700054] Nat -> *) (LengthSym0 a6989586621679700054) # 

Methods

suppressUnusedWarnings :: Proxy (LengthSym0 a6989586621679700054) t -> () #

type Apply [a6989586621679700054] Nat (LengthSym0 a6989586621679700054) l0 # 
type Apply [a6989586621679700054] Nat (LengthSym0 a6989586621679700054) l0 = LengthSym1 a6989586621679700054 l0

type LengthSym1 t = Length t #

data SumSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700056] a6989586621679700056 -> *) (SumSym0 a6989586621679700056) # 

Methods

suppressUnusedWarnings :: Proxy (SumSym0 a6989586621679700056) t -> () #

type Apply [a6989586621679700056] a6989586621679700056 (SumSym0 a6989586621679700056) l0 # 
type Apply [a6989586621679700056] a6989586621679700056 (SumSym0 a6989586621679700056) l0 = SumSym1 a6989586621679700056 l0

type SumSym1 t = Sum t #

data ProductSym0 l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700055] a6989586621679700055 -> *) (ProductSym0 a6989586621679700055) # 

Methods

suppressUnusedWarnings :: Proxy (ProductSym0 a6989586621679700055) t -> () #

type Apply [a6989586621679700055] a6989586621679700055 (ProductSym0 a6989586621679700055) l0 # 
type Apply [a6989586621679700055] a6989586621679700055 (ProductSym0 a6989586621679700055) l0 = ProductSym1 a6989586621679700055 l0

type ProductSym1 t = Product t #

data ReplicateSym0 l #

Instances

SuppressUnusedWarnings (TyFun Nat (TyFun a6989586621679700053 [a6989586621679700053] -> Type) -> *) (ReplicateSym0 a6989586621679700053) # 

Methods

suppressUnusedWarnings :: Proxy (ReplicateSym0 a6989586621679700053) t -> () #

type Apply Nat (TyFun a6989586621679700053 [a6989586621679700053] -> Type) (ReplicateSym0 a6989586621679700053) l0 # 
type Apply Nat (TyFun a6989586621679700053 [a6989586621679700053] -> Type) (ReplicateSym0 a6989586621679700053) l0 = ReplicateSym1 a6989586621679700053 l0

data ReplicateSym1 l l #

Instances

SuppressUnusedWarnings (Nat -> TyFun a6989586621679700053 [a6989586621679700053] -> *) (ReplicateSym1 a6989586621679700053) # 

Methods

suppressUnusedWarnings :: Proxy (ReplicateSym1 a6989586621679700053) t -> () #

type Apply a6989586621679700053 [a6989586621679700053] (ReplicateSym1 a6989586621679700053 l0) l1 # 
type Apply a6989586621679700053 [a6989586621679700053] (ReplicateSym1 a6989586621679700053 l0) l1 = ReplicateSym2 a6989586621679700053 l0 l1

type ReplicateSym2 t t = Replicate t t #

data TakeSym0 l #

Instances

SuppressUnusedWarnings (TyFun Nat (TyFun [a6989586621679700069] [a6989586621679700069] -> Type) -> *) (TakeSym0 a6989586621679700069) # 

Methods

suppressUnusedWarnings :: Proxy (TakeSym0 a6989586621679700069) t -> () #

type Apply Nat (TyFun [a6989586621679700069] [a6989586621679700069] -> Type) (TakeSym0 a6989586621679700069) l0 # 
type Apply Nat (TyFun [a6989586621679700069] [a6989586621679700069] -> Type) (TakeSym0 a6989586621679700069) l0 = TakeSym1 a6989586621679700069 l0

data TakeSym1 l l #

Instances

SuppressUnusedWarnings (Nat -> TyFun [a6989586621679700069] [a6989586621679700069] -> *) (TakeSym1 a6989586621679700069) # 

Methods

suppressUnusedWarnings :: Proxy (TakeSym1 a6989586621679700069) t -> () #

type Apply [a6989586621679700069] [a6989586621679700069] (TakeSym1 a6989586621679700069 l0) l1 # 
type Apply [a6989586621679700069] [a6989586621679700069] (TakeSym1 a6989586621679700069 l0) l1 = TakeSym2 a6989586621679700069 l0 l1

type TakeSym2 t t = Take t t #

data DropSym0 l #

Instances

SuppressUnusedWarnings (TyFun Nat (TyFun [a6989586621679700068] [a6989586621679700068] -> Type) -> *) (DropSym0 a6989586621679700068) # 

Methods

suppressUnusedWarnings :: Proxy (DropSym0 a6989586621679700068) t -> () #

type Apply Nat (TyFun [a6989586621679700068] [a6989586621679700068] -> Type) (DropSym0 a6989586621679700068) l0 # 
type Apply Nat (TyFun [a6989586621679700068] [a6989586621679700068] -> Type) (DropSym0 a6989586621679700068) l0 = DropSym1 a6989586621679700068 l0

data DropSym1 l l #

Instances

SuppressUnusedWarnings (Nat -> TyFun [a6989586621679700068] [a6989586621679700068] -> *) (DropSym1 a6989586621679700068) # 

Methods

suppressUnusedWarnings :: Proxy (DropSym1 a6989586621679700068) t -> () #

type Apply [a6989586621679700068] [a6989586621679700068] (DropSym1 a6989586621679700068 l0) l1 # 
type Apply [a6989586621679700068] [a6989586621679700068] (DropSym1 a6989586621679700068 l0) l1 = DropSym2 a6989586621679700068 l0 l1

type DropSym2 t t = Drop t t #

data SplitAtSym0 l #

Instances

SuppressUnusedWarnings (TyFun Nat (TyFun [a6989586621679700067] ([a6989586621679700067], [a6989586621679700067]) -> Type) -> *) (SplitAtSym0 a6989586621679700067) # 

Methods

suppressUnusedWarnings :: Proxy (SplitAtSym0 a6989586621679700067) t -> () #

type Apply Nat (TyFun [a6989586621679700067] ([a6989586621679700067], [a6989586621679700067]) -> Type) (SplitAtSym0 a6989586621679700067) l0 # 
type Apply Nat (TyFun [a6989586621679700067] ([a6989586621679700067], [a6989586621679700067]) -> Type) (SplitAtSym0 a6989586621679700067) l0 = SplitAtSym1 a6989586621679700067 l0

data SplitAtSym1 l l #

Instances

SuppressUnusedWarnings (Nat -> TyFun [a6989586621679700067] ([a6989586621679700067], [a6989586621679700067]) -> *) (SplitAtSym1 a6989586621679700067) # 

Methods

suppressUnusedWarnings :: Proxy (SplitAtSym1 a6989586621679700067) t -> () #

type Apply [a6989586621679700067] ([a6989586621679700067], [a6989586621679700067]) (SplitAtSym1 a6989586621679700067 l0) l1 # 
type Apply [a6989586621679700067] ([a6989586621679700067], [a6989586621679700067]) (SplitAtSym1 a6989586621679700067 l0) l1 = SplitAtSym2 a6989586621679700067 l0 l1

type SplitAtSym2 t t = SplitAt t t #

data TakeWhileSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700074 Bool -> Type) (TyFun [a6989586621679700074] [a6989586621679700074] -> Type) -> *) (TakeWhileSym0 a6989586621679700074) # 

Methods

suppressUnusedWarnings :: Proxy (TakeWhileSym0 a6989586621679700074) t -> () #

type Apply (TyFun a6989586621679700074 Bool -> Type) (TyFun [a6989586621679700074] [a6989586621679700074] -> Type) (TakeWhileSym0 a6989586621679700074) l0 # 
type Apply (TyFun a6989586621679700074 Bool -> Type) (TyFun [a6989586621679700074] [a6989586621679700074] -> Type) (TakeWhileSym0 a6989586621679700074) l0 = TakeWhileSym1 a6989586621679700074 l0

data TakeWhileSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700074 Bool -> Type) -> TyFun [a6989586621679700074] [a6989586621679700074] -> *) (TakeWhileSym1 a6989586621679700074) # 

Methods

suppressUnusedWarnings :: Proxy (TakeWhileSym1 a6989586621679700074) t -> () #

type Apply [a6989586621679700074] [a6989586621679700074] (TakeWhileSym1 a6989586621679700074 l0) l1 # 
type Apply [a6989586621679700074] [a6989586621679700074] (TakeWhileSym1 a6989586621679700074 l0) l1 = TakeWhileSym2 a6989586621679700074 l0 l1

type TakeWhileSym2 t t = TakeWhile t t #

data DropWhileSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700073 Bool -> Type) (TyFun [a6989586621679700073] [a6989586621679700073] -> Type) -> *) (DropWhileSym0 a6989586621679700073) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileSym0 a6989586621679700073) t -> () #

type Apply (TyFun a6989586621679700073 Bool -> Type) (TyFun [a6989586621679700073] [a6989586621679700073] -> Type) (DropWhileSym0 a6989586621679700073) l0 # 
type Apply (TyFun a6989586621679700073 Bool -> Type) (TyFun [a6989586621679700073] [a6989586621679700073] -> Type) (DropWhileSym0 a6989586621679700073) l0 = DropWhileSym1 a6989586621679700073 l0

data DropWhileSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700073 Bool -> Type) -> TyFun [a6989586621679700073] [a6989586621679700073] -> *) (DropWhileSym1 a6989586621679700073) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileSym1 a6989586621679700073) t -> () #

type Apply [a6989586621679700073] [a6989586621679700073] (DropWhileSym1 a6989586621679700073 l0) l1 # 
type Apply [a6989586621679700073] [a6989586621679700073] (DropWhileSym1 a6989586621679700073 l0) l1 = DropWhileSym2 a6989586621679700073 l0 l1

type DropWhileSym2 t t = DropWhile t t #

data SpanSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700071 Bool -> Type) (TyFun [a6989586621679700071] ([a6989586621679700071], [a6989586621679700071]) -> Type) -> *) (SpanSym0 a6989586621679700071) # 

Methods

suppressUnusedWarnings :: Proxy (SpanSym0 a6989586621679700071) t -> () #

type Apply (TyFun a6989586621679700071 Bool -> Type) (TyFun [a6989586621679700071] ([a6989586621679700071], [a6989586621679700071]) -> Type) (SpanSym0 a6989586621679700071) l0 # 
type Apply (TyFun a6989586621679700071 Bool -> Type) (TyFun [a6989586621679700071] ([a6989586621679700071], [a6989586621679700071]) -> Type) (SpanSym0 a6989586621679700071) l0 = SpanSym1 a6989586621679700071 l0

data SpanSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700071 Bool -> Type) -> TyFun [a6989586621679700071] ([a6989586621679700071], [a6989586621679700071]) -> *) (SpanSym1 a6989586621679700071) # 

Methods

suppressUnusedWarnings :: Proxy (SpanSym1 a6989586621679700071) t -> () #

type Apply [a6989586621679700071] ([a6989586621679700071], [a6989586621679700071]) (SpanSym1 a6989586621679700071 l0) l1 # 
type Apply [a6989586621679700071] ([a6989586621679700071], [a6989586621679700071]) (SpanSym1 a6989586621679700071 l0) l1 = SpanSym2 a6989586621679700071 l0 l1

type SpanSym2 t t = Span t t #

data BreakSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700070 Bool -> Type) (TyFun [a6989586621679700070] ([a6989586621679700070], [a6989586621679700070]) -> Type) -> *) (BreakSym0 a6989586621679700070) # 

Methods

suppressUnusedWarnings :: Proxy (BreakSym0 a6989586621679700070) t -> () #

type Apply (TyFun a6989586621679700070 Bool -> Type) (TyFun [a6989586621679700070] ([a6989586621679700070], [a6989586621679700070]) -> Type) (BreakSym0 a6989586621679700070) l0 # 
type Apply (TyFun a6989586621679700070 Bool -> Type) (TyFun [a6989586621679700070] ([a6989586621679700070], [a6989586621679700070]) -> Type) (BreakSym0 a6989586621679700070) l0 = BreakSym1 a6989586621679700070 l0

data BreakSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700070 Bool -> Type) -> TyFun [a6989586621679700070] ([a6989586621679700070], [a6989586621679700070]) -> *) (BreakSym1 a6989586621679700070) # 

Methods

suppressUnusedWarnings :: Proxy (BreakSym1 a6989586621679700070) t -> () #

type Apply [a6989586621679700070] ([a6989586621679700070], [a6989586621679700070]) (BreakSym1 a6989586621679700070 l0) l1 # 
type Apply [a6989586621679700070] ([a6989586621679700070], [a6989586621679700070]) (BreakSym1 a6989586621679700070 l0) l1 = BreakSym2 a6989586621679700070 l0 l1

type BreakSym2 t t = Break t t #

data LookupSym0 l #

Instances

SuppressUnusedWarnings (TyFun a6989586621679700059 (TyFun [(a6989586621679700059, b6989586621679700060)] (Maybe b6989586621679700060) -> Type) -> *) (LookupSym0 a6989586621679700059 b6989586621679700060) # 

Methods

suppressUnusedWarnings :: Proxy (LookupSym0 a6989586621679700059 b6989586621679700060) t -> () #

type Apply a6989586621679700059 (TyFun [(a6989586621679700059, b6989586621679700060)] (Maybe b6989586621679700060) -> Type) (LookupSym0 a6989586621679700059 b6989586621679700060) l0 # 
type Apply a6989586621679700059 (TyFun [(a6989586621679700059, b6989586621679700060)] (Maybe b6989586621679700060) -> Type) (LookupSym0 a6989586621679700059 b6989586621679700060) l0 = LookupSym1 b6989586621679700060 a6989586621679700059 l0

data LookupSym1 l l #

Instances

SuppressUnusedWarnings (a6989586621679700059 -> TyFun [(a6989586621679700059, b6989586621679700060)] (Maybe b6989586621679700060) -> *) (LookupSym1 b6989586621679700060 a6989586621679700059) # 

Methods

suppressUnusedWarnings :: Proxy (LookupSym1 b6989586621679700060 a6989586621679700059) t -> () #

type Apply [(a6989586621679700059, b6989586621679700060)] (Maybe b6989586621679700060) (LookupSym1 b6989586621679700060 a6989586621679700059 l0) l1 # 
type Apply [(a6989586621679700059, b6989586621679700060)] (Maybe b6989586621679700060) (LookupSym1 b6989586621679700060 a6989586621679700059 l0) l1 = LookupSym2 b6989586621679700060 a6989586621679700059 l0 l1

type LookupSym2 t t = Lookup t t #

data FilterSym0 l #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679700082 Bool -> Type) (TyFun [a6989586621679700082] [a6989586621679700082] -> Type) -> *) (FilterSym0 a6989586621679700082) # 

Methods

suppressUnusedWarnings :: Proxy (FilterSym0 a6989586621679700082) t -> () #

type Apply (TyFun a6989586621679700082 Bool -> Type) (TyFun [a6989586621679700082] [a6989586621679700082] -> Type) (FilterSym0 a6989586621679700082) l0 # 
type Apply (TyFun a6989586621679700082 Bool -> Type) (TyFun [a6989586621679700082] [a6989586621679700082] -> Type) (FilterSym0 a6989586621679700082) l0 = FilterSym1 a6989586621679700082 l0

data FilterSym1 l l #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679700082 Bool -> Type) -> TyFun [a6989586621679700082] [a6989586621679700082] -> *) (FilterSym1 a6989586621679700082) # 

Methods

suppressUnusedWarnings :: Proxy (FilterSym1 a6989586621679700082) t -> () #

type Apply [a6989586621679700082] [a6989586621679700082] (FilterSym1 a6989586621679700082 l0) l1 # 
type Apply [a6989586621679700082] [a6989586621679700082] (FilterSym1 a6989586621679700082 l0) l1 = FilterSym2 a6989586621679700082 l0 l1

type FilterSym2 t t = Filter t t #

data (:!!$) l #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679700051] (TyFun Nat a6989586621679700051 -> Type) -> *) ((:!!$) a6989586621679700051) # 

Methods

suppressUnusedWarnings :: Proxy ((:!!$) a6989586621679700051) t -> () #

type Apply [a6989586621679700051] (TyFun Nat a6989586621679700051 -> Type) ((:!!$) a6989586621679700051) l0 # 
type Apply [a6989586621679700051] (TyFun Nat a6989586621679700051 -> Type) ((:!!$) a6989586621679700051) l0 = (:!!$$) a6989586621679700051 l0

data l :!!$$ l #

Instances

SuppressUnusedWarnings ([a6989586621679700051] -> TyFun Nat a6989586621679700051 -> *) ((:!!$$) a6989586621679700051) # 

Methods

suppressUnusedWarnings :: Proxy ((:!!$$) a6989586621679700051) t -> () #

type Apply Nat a6989586621679700051 ((:!!$$) a6989586621679700051 l0) l1 # 
type Apply Nat a6989586621679700051 ((:!!$$) a6989586621679700051 l0) l1 = (:!!$$$) a6989586621679700051 l0 l1

type (:!!$$$) t t = (:!!) t t #