singletons-2.3.1: 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_6989586621679241433 = FalseSym0 
True :&& x = x 

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

Equations

False :|| x = x 
True :|| _z_6989586621679241421 = TrueSym0 

type family Otherwise :: Bool where ... #

Equations

Otherwise = TrueSym0 

maybe_ :: 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_6989586621679361487 Nothing = n 
Maybe_ _z_6989586621679361490 f (Just x) = Apply f x 

either_ :: (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_6989586621679369613 (Left x) = Apply f x 
Either_ _z_6989586621679369617 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

SingKind Symbol

Since: 4.9.0.0

Associated Types

type DemoteRep Symbol :: *

Methods

fromSing :: Sing Symbol a -> DemoteRep Symbol

KnownSymbol a => SingI Symbol a

Since: 4.9.0.0

Methods

sing :: Sing a a

SuppressUnusedWarnings (TyFun Symbol Constraint -> *) KnownSymbolSym0 # 
data Sing Symbol 
data Sing Symbol where
type DemoteRep Symbol 
type DemoteRep Symbol = String
type Demote 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 arg1 arg2 # 
type (:<) Symbol arg1 arg2
type (:<=) Symbol arg1 arg2 # 
type (:<=) Symbol arg1 arg2
type (:>) Symbol arg1 arg2 # 
type (:>) Symbol arg1 arg2
type (:>=) Symbol arg1 arg2 # 
type (:>=) Symbol arg1 arg2
type Max Symbol arg1 arg2 # 
type Max Symbol arg1 arg2
type Min Symbol arg1 arg2 # 
type Min Symbol arg1 arg2
type Apply Symbol Constraint KnownSymbolSym0 l # 

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

Equations

Fst '(x, _z_6989586621679358330) = x 

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

Equations

Snd '(_z_6989586621679358321, 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 :: TyFun k06989586621679342626 k6989586621679342628) #

Instances

SuppressUnusedWarnings (TyFun k06989586621679342626 k6989586621679342628 -> *) (ErrorSym0 k06989586621679342626 k6989586621679342628) # 

Methods

suppressUnusedWarnings :: Proxy (ErrorSym0 k06989586621679342626 k6989586621679342628) t -> () #

type Apply k0 k2 (ErrorSym0 k0 k2) l # 
type Apply k0 k2 (ErrorSym0 k0 k2) l = Error k0 k2 l

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_6989586621679244149 = x 

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

Equations

(f :. g) a_6989586621679244112 = Apply (Apply (Apply (Apply Lambda_6989586621679244117Sym0 f) g) a_6989586621679244112) a_6989586621679244112 

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

Instances

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

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

Instances

type ($!) k1 k f x # 
type ($!) k1 k f x = (@@) k1 k 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_6989586621679244152 a_6989586621679244154 = Apply (Apply ConstSym0 a_6989586621679244152) a_6989586621679244154 

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

Equations

Until p f a_6989586621679377382 = Apply (Let6989586621679377387GoSym3 p f a_6989586621679377382) a_6989586621679377382 

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

Equations

Seq _z_6989586621679244075 x = x 

List operations

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

Equations

Map _z_6989586621679244194 '[] = '[] 
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_6989586621679390690 p x xs (Let6989586621679390677Scrutinee_6989586621679389850Sym3 p x xs) 

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

Equations

Head ((:) a _z_6989586621679393295) = 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_6989586621679393285 ((:) x xs)) = Apply LastSym0 (Apply (Apply (:$) x) xs) 

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

Equations

Tail ((:) _z_6989586621679393276 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 (Let6989586621679393245Init'Sym2 x xs) x) xs 

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

Equations

Null '[] = TrueSym0 
Null ((:) _z_6989586621679393174 _z_6989586621679393177) = FalseSym0 

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

Equations

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

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

Equations

'[] :!! _z_6989586621679390047 = Apply ErrorSym0 "Data.Singletons.List.!!: index too large" 
((:) x xs) :!! n = Case_6989586621679390066 x xs n (Let6989586621679390053Scrutinee_6989586621679389890Sym3 x xs n) 

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

Equations

Reverse l = Apply (Apply (Let6989586621679393140RevSym1 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 (Let6989586621679213701LgoSym3 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_6989586621679392384 '[] = 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_6989586621679244215 = Apply (Let6989586621679244220GoSym3 k z a_6989586621679244215) a_6989586621679244215 

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

Equations

Foldr1 _z_6989586621679392342 '[x] = x 
Foldr1 f ((:) x ((:) wild_6989586621679389796 wild_6989586621679389798)) = Apply (Apply f x) (Apply (Apply Foldr1Sym0 f) (Let6989586621679392350XsSym4 f x wild_6989586621679389796 wild_6989586621679389798)) 
Foldr1 _z_6989586621679392369 '[] = 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_ :: (a -> Bool) -> [a] -> Bool #

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

Equations

Any_ _z_6989586621679379126 '[] = 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_6989586621679392295 '[] = 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 (Let6989586621679390128Sum'Sym1 l) l) (FromInteger 0) 

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

Maximum '[] = Apply ErrorSym0 "Data.Singletons.List.maximum: empty list" 
Maximum ((:) wild_6989586621679389876 wild_6989586621679389878) = Apply (Apply Foldl1Sym0 MaxSym0) (Let6989586621679392567XsSym2 wild_6989586621679389876 wild_6989586621679389878) 

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

Equations

Minimum '[] = Apply ErrorSym0 "Data.Singletons.List.minimum: empty list" 
Minimum ((:) wild_6989586621679389880 wild_6989586621679389882) = Apply (Apply Foldl1Sym0 MinSym0) (Let6989586621679392581XsSym2 wild_6989586621679389880 wild_6989586621679389882) 

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_6989586621679392266 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_6989586621679392283 '[] = '[] 

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

Equations

Scanr _z_6989586621679392216 q0 '[] = Apply (Apply (:$) q0) '[] 
Scanr f q0 ((:) x xs) = Case_6989586621679392243 f q0 x xs (Let6989586621679392224Scrutinee_6989586621679389800Sym4 f q0 x xs) 

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

Equations

Scanr1 _z_6989586621679392147 '[] = '[] 
Scanr1 _z_6989586621679392150 '[x] = Apply (Apply (:$) x) '[] 
Scanr1 f ((:) x ((:) wild_6989586621679389804 wild_6989586621679389806)) = Case_6989586621679392196 f x wild_6989586621679389804 wild_6989586621679389806 (Let6989586621679392177Scrutinee_6989586621679389802Sym4 f x wild_6989586621679389804 wild_6989586621679389806) 

Infinite lists

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

Equations

Replicate n x = Case_6989586621679390088 n x (Let6989586621679390080Scrutinee_6989586621679389888Sym2 n x) 

Sublists

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

Equations

Take _z_6989586621679390275 '[] = '[] 
Take n ((:) x xs) = Case_6989586621679390294 n x xs (Let6989586621679390281Scrutinee_6989586621679389872Sym3 n x xs) 

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

Equations

Drop _z_6989586621679390244 '[] = '[] 
Drop n ((:) x xs) = Case_6989586621679390263 n x xs (Let6989586621679390250Scrutinee_6989586621679389874Sym3 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_6989586621679390642 '[] = '[] 
TakeWhile p ((:) x xs) = Case_6989586621679390661 p x xs (Let6989586621679390648Scrutinee_6989586621679389862Sym3 p x xs) 

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

Equations

DropWhile _z_6989586621679390598 '[] = '[] 
DropWhile p ((:) x xs') = Case_6989586621679390630 p x xs' (Let6989586621679390617Scrutinee_6989586621679389864Sym3 p x xs') 

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

Equations

Span _z_6989586621679390419 '[] = Apply (Apply Tuple2Sym0 Let6989586621679390422XsSym0) Let6989586621679390422XsSym0 
Span p ((:) x xs') = Case_6989586621679390452 p x xs' (Let6989586621679390439Scrutinee_6989586621679389868Sym3 p x xs') 

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

Equations

Break _z_6989586621679390317 '[] = Apply (Apply Tuple2Sym0 Let6989586621679390320XsSym0) Let6989586621679390320XsSym0 
Break p ((:) x xs') = Case_6989586621679390350 p x xs' (Let6989586621679390337Scrutinee_6989586621679389870Sym3 p x xs') 

Searching lists

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

Equations

Elem _z_6989586621679391658 '[] = 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_6989586621679391643 '[] = 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_6989586621679390232 key x y xys (Let6989586621679390213Scrutinee_6989586621679389884Sym4 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_6989586621679391520 _z_6989586621679391523) '[] = '[] 
Zip '[] ((:) _z_6989586621679391526 _z_6989586621679391529) = '[] 

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_6989586621679391453 _z_6989586621679391456) = '[] 
Zip3 '[] ((:) _z_6989586621679391459 _z_6989586621679391462) '[] = '[] 
Zip3 '[] ((:) _z_6989586621679391465 _z_6989586621679391468) ((:) _z_6989586621679391471 _z_6989586621679391474) = '[] 
Zip3 ((:) _z_6989586621679391477 _z_6989586621679391480) '[] '[] = '[] 
Zip3 ((:) _z_6989586621679391483 _z_6989586621679391486) '[] ((:) _z_6989586621679391489 _z_6989586621679391492) = '[] 
Zip3 ((:) _z_6989586621679391495 _z_6989586621679391498) ((:) _z_6989586621679391501 _z_6989586621679391504) '[] = '[] 

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_6989586621679391411 '[] '[] = '[] 
ZipWith _z_6989586621679391414 ((:) _z_6989586621679391417 _z_6989586621679391420) '[] = '[] 
ZipWith _z_6989586621679391423 '[] ((:) _z_6989586621679391426 _z_6989586621679391429) = '[] 

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_6989586621679391316 '[] '[] '[] = '[] 
ZipWith3 _z_6989586621679391319 '[] '[] ((:) _z_6989586621679391322 _z_6989586621679391325) = '[] 
ZipWith3 _z_6989586621679391328 '[] ((:) _z_6989586621679391331 _z_6989586621679391334) '[] = '[] 
ZipWith3 _z_6989586621679391337 '[] ((:) _z_6989586621679391340 _z_6989586621679391343) ((:) _z_6989586621679391346 _z_6989586621679391349) = '[] 
ZipWith3 _z_6989586621679391352 ((:) _z_6989586621679391355 _z_6989586621679391358) '[] '[] = '[] 
ZipWith3 _z_6989586621679391361 ((:) _z_6989586621679391364 _z_6989586621679391367) '[] ((:) _z_6989586621679391370 _z_6989586621679391373) = '[] 
ZipWith3 _z_6989586621679391376 ((:) _z_6989586621679391379 _z_6989586621679391382) ((:) _z_6989586621679391385 _z_6989586621679391388) '[] = '[] 

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

Equations

Unzip xs = Apply (Apply (Apply FoldrSym0 (Apply Lambda_6989586621679391262Sym0 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_6989586621679391230Sym0 xs)) (Apply (Apply (Apply Tuple3Sym0 '[]) '[]) '[])) xs 

Defunctionalization symbols

type TrueSym0 = True #

type NotSym1 (t :: Bool) = Not t #

data (l :: Bool) :&&$$ (l :: TyFun Bool Bool) #

Instances

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

data (l :: Bool) :||$$ (l :: TyFun Bool Bool) #

Instances

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

data JustSym0 (l :: TyFun a3530822107858468865 (Maybe a3530822107858468865)) #

Instances

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

Methods

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

type Apply a (Maybe a) (JustSym0 a) l # 
type Apply a (Maybe a) (JustSym0 a) l = Just a l

type JustSym1 (t :: a3530822107858468865) = Just t #

data Maybe_Sym0 (l :: TyFun b6989586621679361465 (TyFun (TyFun a6989586621679361466 b6989586621679361465 -> Type) (TyFun (Maybe a6989586621679361466) b6989586621679361465 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun b6989586621679361465 (TyFun (TyFun a6989586621679361466 b6989586621679361465 -> Type) (TyFun (Maybe a6989586621679361466) b6989586621679361465 -> Type) -> Type) -> *) (Maybe_Sym0 a6989586621679361466 b6989586621679361465) # 

Methods

suppressUnusedWarnings :: Proxy (Maybe_Sym0 a6989586621679361466 b6989586621679361465) t -> () #

type Apply b6989586621679361465 (TyFun (TyFun a6989586621679361466 b6989586621679361465 -> Type) (TyFun (Maybe a6989586621679361466) b6989586621679361465 -> Type) -> Type) (Maybe_Sym0 a6989586621679361466 b6989586621679361465) l # 
type Apply b6989586621679361465 (TyFun (TyFun a6989586621679361466 b6989586621679361465 -> Type) (TyFun (Maybe a6989586621679361466) b6989586621679361465 -> Type) -> Type) (Maybe_Sym0 a6989586621679361466 b6989586621679361465) l = Maybe_Sym1 a6989586621679361466 b6989586621679361465 l

data Maybe_Sym1 (l :: b6989586621679361465) (l :: TyFun (TyFun a6989586621679361466 b6989586621679361465 -> Type) (TyFun (Maybe a6989586621679361466) b6989586621679361465 -> Type)) #

Instances

SuppressUnusedWarnings (b6989586621679361465 -> TyFun (TyFun a6989586621679361466 b6989586621679361465 -> Type) (TyFun (Maybe a6989586621679361466) b6989586621679361465 -> Type) -> *) (Maybe_Sym1 a6989586621679361466 b6989586621679361465) # 

Methods

suppressUnusedWarnings :: Proxy (Maybe_Sym1 a6989586621679361466 b6989586621679361465) t -> () #

type Apply (TyFun a6989586621679361466 b6989586621679361465 -> Type) (TyFun (Maybe a6989586621679361466) b6989586621679361465 -> Type) (Maybe_Sym1 a6989586621679361466 b6989586621679361465 l1) l2 # 
type Apply (TyFun a6989586621679361466 b6989586621679361465 -> Type) (TyFun (Maybe a6989586621679361466) b6989586621679361465 -> Type) (Maybe_Sym1 a6989586621679361466 b6989586621679361465 l1) l2 = Maybe_Sym2 a6989586621679361466 b6989586621679361465 l1 l2

data Maybe_Sym2 (l :: b6989586621679361465) (l :: TyFun a6989586621679361466 b6989586621679361465 -> Type) (l :: TyFun (Maybe a6989586621679361466) b6989586621679361465) #

Instances

SuppressUnusedWarnings (b6989586621679361465 -> (TyFun a6989586621679361466 b6989586621679361465 -> Type) -> TyFun (Maybe a6989586621679361466) b6989586621679361465 -> *) (Maybe_Sym2 a6989586621679361466 b6989586621679361465) # 

Methods

suppressUnusedWarnings :: Proxy (Maybe_Sym2 a6989586621679361466 b6989586621679361465) t -> () #

type Apply (Maybe a) b (Maybe_Sym2 a b l1 l2) l3 # 
type Apply (Maybe a) b (Maybe_Sym2 a b l1 l2) l3 = Maybe_ a b l1 l2 l3

type Maybe_Sym3 (t :: b6989586621679361465) (t :: TyFun a6989586621679361466 b6989586621679361465 -> Type) (t :: Maybe a6989586621679361466) = Maybe_ t t t #

data LeftSym0 (l :: TyFun a6989586621679073591 (Either a6989586621679073591 b6989586621679073592)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679073591 (Either a6989586621679073591 b6989586621679073592) -> *) (LeftSym0 a6989586621679073591 b6989586621679073592) # 

Methods

suppressUnusedWarnings :: Proxy (LeftSym0 a6989586621679073591 b6989586621679073592) t -> () #

type Apply a (Either a b6989586621679073592) (LeftSym0 a b6989586621679073592) l # 
type Apply a (Either a b6989586621679073592) (LeftSym0 a b6989586621679073592) l = Left a b6989586621679073592 l

type LeftSym1 (t :: a6989586621679073591) = Left t #

data RightSym0 (l :: TyFun b6989586621679073592 (Either a6989586621679073591 b6989586621679073592)) #

Instances

SuppressUnusedWarnings (TyFun b6989586621679073592 (Either a6989586621679073591 b6989586621679073592) -> *) (RightSym0 a6989586621679073591 b6989586621679073592) # 

Methods

suppressUnusedWarnings :: Proxy (RightSym0 a6989586621679073591 b6989586621679073592) t -> () #

type Apply b (Either a6989586621679073591 b) (RightSym0 a6989586621679073591 b) l # 
type Apply b (Either a6989586621679073591 b) (RightSym0 a6989586621679073591 b) l = Right a6989586621679073591 b l

type RightSym1 (t :: b6989586621679073592) = Right t #

data Either_Sym0 (l :: TyFun (TyFun a6989586621679369589 c6989586621679369590 -> Type) (TyFun (TyFun b6989586621679369591 c6989586621679369590 -> Type) (TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679369589 c6989586621679369590 -> Type) (TyFun (TyFun b6989586621679369591 c6989586621679369590 -> Type) (TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590 -> Type) -> Type) -> *) (Either_Sym0 a6989586621679369589 b6989586621679369591 c6989586621679369590) # 

Methods

suppressUnusedWarnings :: Proxy (Either_Sym0 a6989586621679369589 b6989586621679369591 c6989586621679369590) t -> () #

type Apply (TyFun a6989586621679369589 c6989586621679369590 -> Type) (TyFun (TyFun b6989586621679369591 c6989586621679369590 -> Type) (TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590 -> Type) -> Type) (Either_Sym0 a6989586621679369589 b6989586621679369591 c6989586621679369590) l # 
type Apply (TyFun a6989586621679369589 c6989586621679369590 -> Type) (TyFun (TyFun b6989586621679369591 c6989586621679369590 -> Type) (TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590 -> Type) -> Type) (Either_Sym0 a6989586621679369589 b6989586621679369591 c6989586621679369590) l = Either_Sym1 a6989586621679369589 b6989586621679369591 c6989586621679369590 l

data Either_Sym1 (l :: TyFun a6989586621679369589 c6989586621679369590 -> Type) (l :: TyFun (TyFun b6989586621679369591 c6989586621679369590 -> Type) (TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679369589 c6989586621679369590 -> Type) -> TyFun (TyFun b6989586621679369591 c6989586621679369590 -> Type) (TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590 -> Type) -> *) (Either_Sym1 a6989586621679369589 b6989586621679369591 c6989586621679369590) # 

Methods

suppressUnusedWarnings :: Proxy (Either_Sym1 a6989586621679369589 b6989586621679369591 c6989586621679369590) t -> () #

type Apply (TyFun b6989586621679369591 c6989586621679369590 -> Type) (TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590 -> Type) (Either_Sym1 a6989586621679369589 b6989586621679369591 c6989586621679369590 l1) l2 # 
type Apply (TyFun b6989586621679369591 c6989586621679369590 -> Type) (TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590 -> Type) (Either_Sym1 a6989586621679369589 b6989586621679369591 c6989586621679369590 l1) l2 = Either_Sym2 a6989586621679369589 b6989586621679369591 c6989586621679369590 l1 l2

data Either_Sym2 (l :: TyFun a6989586621679369589 c6989586621679369590 -> Type) (l :: TyFun b6989586621679369591 c6989586621679369590 -> Type) (l :: TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679369589 c6989586621679369590 -> Type) -> (TyFun b6989586621679369591 c6989586621679369590 -> Type) -> TyFun (Either a6989586621679369589 b6989586621679369591) c6989586621679369590 -> *) (Either_Sym2 a6989586621679369589 b6989586621679369591 c6989586621679369590) # 

Methods

suppressUnusedWarnings :: Proxy (Either_Sym2 a6989586621679369589 b6989586621679369591 c6989586621679369590) t -> () #

type Apply (Either a b) c (Either_Sym2 a b c l1 l2) l3 # 
type Apply (Either a b) c (Either_Sym2 a b c l1 l2) l3 = Either_ a b c l1 l2 l3

type Either_Sym3 (t :: TyFun a6989586621679369589 c6989586621679369590 -> Type) (t :: TyFun b6989586621679369591 c6989586621679369590 -> Type) (t :: Either a6989586621679369589 b6989586621679369591) = Either_ t t t #

type Tuple0Sym0 = '() #

data Tuple2Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (Tuple2Sym0 a3530822107858468865 b3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple2Sym0 a3530822107858468865 b3530822107858468866) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) (Tuple2Sym0 a3530822107858468865 b3530822107858468866) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) (Tuple2Sym0 a3530822107858468865 b3530822107858468866) l = Tuple2Sym1 a3530822107858468865 b3530822107858468866 l

data Tuple2Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) (Tuple2Sym1 a3530822107858468865 b3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple2Sym1 a3530822107858468865 b3530822107858468866) t -> () #

type Apply k1 (k2, k1) (Tuple2Sym1 k2 k1 l1) l2 # 
type Apply k1 (k2, k1) (Tuple2Sym1 k2 k1 l1) l2 = (,) k2 k1 l1 l2

type Tuple2Sym2 (t :: a3530822107858468865) (t :: b3530822107858468866) = '(t, t) #

data Tuple3Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) l = Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 l

data Tuple3Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 l1) l2 = Tuple3Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 l1 l2

data Tuple3Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) (Tuple3Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867) t -> () #

type Apply k3 (k2, k1, k3) (Tuple3Sym2 k2 k1 k3 l1 l2) l3 # 
type Apply k3 (k2, k1, k3) (Tuple3Sym2 k2 k1 k3 l1 l2) l3 = (,,) k2 k1 k3 l1 l2 l3

type Tuple3Sym3 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) = '(t, t, t) #

data Tuple4Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) l = Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l

data Tuple4Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1) l2 = Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1 l2

data Tuple4Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

type Apply c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1 l2) l3 # 
type Apply c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1 l2) l3 = Tuple4Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1 l2 l3

data Tuple4Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) (Tuple4Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

type Apply k4 (k2, k1, k3, k4) (Tuple4Sym3 k2 k1 k3 k4 l1 l2 l3) l4 # 
type Apply k4 (k2, k1, k3, k4) (Tuple4Sym3 k2 k1 k3 k4 l1 l2 l3) l4 = (,,,) k2 k1 k3 k4 l1 l2 l3 l4

type Tuple4Sym4 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) = '(t, t, t, t) #

data Tuple5Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) l = Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l

data Tuple5Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1) l2 = Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2

data Tuple5Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2) l3 # 
type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2) l3 = Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2 l3

data Tuple5Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2 l3) l4 # 
type Apply d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2 l3) l4 = Tuple5Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2 l3 l4

data Tuple5Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) (Tuple5Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply k5 (k2, k1, k3, k4, k5) (Tuple5Sym4 k2 k1 k3 k4 k5 l1 l2 l3 l4) l5 # 
type Apply k5 (k2, k1, k3, k4, k5) (Tuple5Sym4 k2 k1 k3 k4 k5 l1 l2 l3 l4) l5 = (,,,,) k2 k1 k3 k4 k5 l1 l2 l3 l4 l5

type Tuple5Sym5 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) = '(t, t, t, t, t) #

data Tuple6Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) l = Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l

data Tuple6Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1) l2 = Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2

data Tuple6Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2) l3 # 
type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2) l3 = Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3

data Tuple6Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3) l4 # 
type Apply d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3) l4 = Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3 l4

data Tuple6Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3 l4) l5 # 
type Apply e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3 l4) l5 = Tuple6Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3 l4 l5

data Tuple6Sym5 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) (Tuple6Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply k6 (k2, k1, k3, k4, k5, k6) (Tuple6Sym5 k2 k1 k3 k4 k5 k6 l1 l2 l3 l4 l5) l6 # 
type Apply k6 (k2, k1, k3, k4, k5, k6) (Tuple6Sym5 k2 k1 k3 k4 k5 k6 l1 l2 l3 l4 l5) l6 = (,,,,,) k2 k1 k3 k4 k5 k6 l1 l2 l3 l4 l5 l6

type Tuple6Sym6 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) (t :: f3530822107858468870) = '(t, t, t, t, t, t) #

data Tuple7Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) l = Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l

data Tuple7Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1) l2 = Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2

data Tuple7Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2) l3 # 
type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2) l3 = Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3

data Tuple7Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3) l4 # 
type Apply d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3) l4 = Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4

data Tuple7Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4) l5 # 
type Apply e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4) l5 = Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4 l5

data Tuple7Sym5 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4 l5) l6 # 
type Apply f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4 l5) l6 = Tuple7Sym6 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4 l5 l6

data Tuple7Sym6 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: f3530822107858468870) (l :: TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> f3530822107858468870 -> TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) (Tuple7Sym6 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym6 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply k7 (k2, k1, k3, k4, k5, k6, k7) (Tuple7Sym6 k2 k1 k3 k4 k5 k6 k7 l1 l2 l3 l4 l5 l6) l7 # 
type Apply k7 (k2, k1, k3, k4, k5, k6, k7) (Tuple7Sym6 k2 k1 k3 k4 k5 k6 k7 l1 l2 l3 l4 l5 l6) l7 = (,,,,,,) k2 k1 k3 k4 k5 k6 k7 l1 l2 l3 l4 l5 l6 l7

type Tuple7Sym7 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) (t :: f3530822107858468870) (t :: g3530822107858468871) = '(t, t, t, t, t, t, t) #

data FstSym0 (l :: TyFun (a6989586621679358277, b6989586621679358278) a6989586621679358277) #

Instances

SuppressUnusedWarnings (TyFun (a6989586621679358277, b6989586621679358278) a6989586621679358277 -> *) (FstSym0 b6989586621679358278 a6989586621679358277) # 

Methods

suppressUnusedWarnings :: Proxy (FstSym0 b6989586621679358278 a6989586621679358277) t -> () #

type Apply (a, b) a (FstSym0 b a) l # 
type Apply (a, b) a (FstSym0 b a) l = Fst b a l

type FstSym1 (t :: (a6989586621679358277, b6989586621679358278)) = Fst t #

data SndSym0 (l :: TyFun (a6989586621679358275, b6989586621679358276) b6989586621679358276) #

Instances

SuppressUnusedWarnings (TyFun (a6989586621679358275, b6989586621679358276) b6989586621679358276 -> *) (SndSym0 a6989586621679358275 b6989586621679358276) # 

Methods

suppressUnusedWarnings :: Proxy (SndSym0 a6989586621679358275 b6989586621679358276) t -> () #

type Apply (a, b) b (SndSym0 a b) l # 
type Apply (a, b) b (SndSym0 a b) l = Snd a b l

type SndSym1 (t :: (a6989586621679358275, b6989586621679358276)) = Snd t #

data CurrySym0 (l :: TyFun (TyFun (a6989586621679358272, b6989586621679358273) c6989586621679358274 -> Type) (TyFun a6989586621679358272 (TyFun b6989586621679358273 c6989586621679358274 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun (a6989586621679358272, b6989586621679358273) c6989586621679358274 -> Type) (TyFun a6989586621679358272 (TyFun b6989586621679358273 c6989586621679358274 -> Type) -> Type) -> *) (CurrySym0 a6989586621679358272 b6989586621679358273 c6989586621679358274) # 

Methods

suppressUnusedWarnings :: Proxy (CurrySym0 a6989586621679358272 b6989586621679358273 c6989586621679358274) t -> () #

type Apply (TyFun (a6989586621679358272, b6989586621679358273) c6989586621679358274 -> Type) (TyFun a6989586621679358272 (TyFun b6989586621679358273 c6989586621679358274 -> Type) -> Type) (CurrySym0 a6989586621679358272 b6989586621679358273 c6989586621679358274) l # 
type Apply (TyFun (a6989586621679358272, b6989586621679358273) c6989586621679358274 -> Type) (TyFun a6989586621679358272 (TyFun b6989586621679358273 c6989586621679358274 -> Type) -> Type) (CurrySym0 a6989586621679358272 b6989586621679358273 c6989586621679358274) l = CurrySym1 a6989586621679358272 b6989586621679358273 c6989586621679358274 l

data CurrySym1 (l :: TyFun (a6989586621679358272, b6989586621679358273) c6989586621679358274 -> Type) (l :: TyFun a6989586621679358272 (TyFun b6989586621679358273 c6989586621679358274 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun (a6989586621679358272, b6989586621679358273) c6989586621679358274 -> Type) -> TyFun a6989586621679358272 (TyFun b6989586621679358273 c6989586621679358274 -> Type) -> *) (CurrySym1 a6989586621679358272 b6989586621679358273 c6989586621679358274) # 

Methods

suppressUnusedWarnings :: Proxy (CurrySym1 a6989586621679358272 b6989586621679358273 c6989586621679358274) t -> () #

type Apply a6989586621679358272 (TyFun b6989586621679358273 c6989586621679358274 -> Type) (CurrySym1 a6989586621679358272 b6989586621679358273 c6989586621679358274 l1) l2 # 
type Apply a6989586621679358272 (TyFun b6989586621679358273 c6989586621679358274 -> Type) (CurrySym1 a6989586621679358272 b6989586621679358273 c6989586621679358274 l1) l2 = CurrySym2 a6989586621679358272 b6989586621679358273 c6989586621679358274 l1 l2

data CurrySym2 (l :: TyFun (a6989586621679358272, b6989586621679358273) c6989586621679358274 -> Type) (l :: a6989586621679358272) (l :: TyFun b6989586621679358273 c6989586621679358274) #

Instances

SuppressUnusedWarnings ((TyFun (a6989586621679358272, b6989586621679358273) c6989586621679358274 -> Type) -> a6989586621679358272 -> TyFun b6989586621679358273 c6989586621679358274 -> *) (CurrySym2 a6989586621679358272 b6989586621679358273 c6989586621679358274) # 

Methods

suppressUnusedWarnings :: Proxy (CurrySym2 a6989586621679358272 b6989586621679358273 c6989586621679358274) t -> () #

type Apply b c (CurrySym2 a b c l1 l2) l3 # 
type Apply b c (CurrySym2 a b c l1 l2) l3 = Curry a b c l1 l2 l3

type CurrySym3 (t :: TyFun (a6989586621679358272, b6989586621679358273) c6989586621679358274 -> Type) (t :: a6989586621679358272) (t :: b6989586621679358273) = Curry t t t #

data UncurrySym0 (l :: TyFun (TyFun a6989586621679358269 (TyFun b6989586621679358270 c6989586621679358271 -> Type) -> Type) (TyFun (a6989586621679358269, b6989586621679358270) c6989586621679358271 -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679358269 (TyFun b6989586621679358270 c6989586621679358271 -> Type) -> Type) (TyFun (a6989586621679358269, b6989586621679358270) c6989586621679358271 -> Type) -> *) (UncurrySym0 a6989586621679358269 b6989586621679358270 c6989586621679358271) # 

Methods

suppressUnusedWarnings :: Proxy (UncurrySym0 a6989586621679358269 b6989586621679358270 c6989586621679358271) t -> () #

type Apply (TyFun a6989586621679358269 (TyFun b6989586621679358270 c6989586621679358271 -> Type) -> Type) (TyFun (a6989586621679358269, b6989586621679358270) c6989586621679358271 -> Type) (UncurrySym0 a6989586621679358269 b6989586621679358270 c6989586621679358271) l # 
type Apply (TyFun a6989586621679358269 (TyFun b6989586621679358270 c6989586621679358271 -> Type) -> Type) (TyFun (a6989586621679358269, b6989586621679358270) c6989586621679358271 -> Type) (UncurrySym0 a6989586621679358269 b6989586621679358270 c6989586621679358271) l = UncurrySym1 a6989586621679358269 b6989586621679358270 c6989586621679358271 l

data UncurrySym1 (l :: TyFun a6989586621679358269 (TyFun b6989586621679358270 c6989586621679358271 -> Type) -> Type) (l :: TyFun (a6989586621679358269, b6989586621679358270) c6989586621679358271) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679358269 (TyFun b6989586621679358270 c6989586621679358271 -> Type) -> Type) -> TyFun (a6989586621679358269, b6989586621679358270) c6989586621679358271 -> *) (UncurrySym1 a6989586621679358269 b6989586621679358270 c6989586621679358271) # 

Methods

suppressUnusedWarnings :: Proxy (UncurrySym1 a6989586621679358269 b6989586621679358270 c6989586621679358271) t -> () #

type Apply (a, b) c (UncurrySym1 a b c l1) l2 # 
type Apply (a, b) c (UncurrySym1 a b c l1) l2 = Uncurry a b c l1 l2

type UncurrySym2 (t :: TyFun a6989586621679358269 (TyFun b6989586621679358270 c6989586621679358271 -> Type) -> Type) (t :: (a6989586621679358269, b6989586621679358270)) = Uncurry t t #

data (:^$) l #

Instances

data (l :: Nat) :^$$ l #

Instances

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

data IdSym0 (l :: TyFun a6989586621679244030 a6989586621679244030) #

Instances

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

Methods

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

type Apply a a (IdSym0 a) l # 
type Apply a a (IdSym0 a) l = Id a l

type IdSym1 (t :: a6989586621679244030) = Id t #

data ConstSym0 (l :: TyFun a6989586621679244028 (TyFun b6989586621679244029 a6989586621679244028 -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679244028 (TyFun b6989586621679244029 a6989586621679244028 -> Type) -> *) (ConstSym0 b6989586621679244029 a6989586621679244028) # 

Methods

suppressUnusedWarnings :: Proxy (ConstSym0 b6989586621679244029 a6989586621679244028) t -> () #

type Apply a6989586621679244028 (TyFun b6989586621679244029 a6989586621679244028 -> Type) (ConstSym0 b6989586621679244029 a6989586621679244028) l # 
type Apply a6989586621679244028 (TyFun b6989586621679244029 a6989586621679244028 -> Type) (ConstSym0 b6989586621679244029 a6989586621679244028) l = ConstSym1 b6989586621679244029 a6989586621679244028 l

data ConstSym1 (l :: a6989586621679244028) (l :: TyFun b6989586621679244029 a6989586621679244028) #

Instances

SuppressUnusedWarnings (a6989586621679244028 -> TyFun b6989586621679244029 a6989586621679244028 -> *) (ConstSym1 b6989586621679244029 a6989586621679244028) # 

Methods

suppressUnusedWarnings :: Proxy (ConstSym1 b6989586621679244029 a6989586621679244028) t -> () #

type Apply b a (ConstSym1 b a l1) l2 # 
type Apply b a (ConstSym1 b a l1) l2 = Const b a l1 l2

type ConstSym2 (t :: a6989586621679244028) (t :: b6989586621679244029) = Const t t #

data (:.$) (l :: TyFun (TyFun b6989586621679244025 c6989586621679244026 -> Type) (TyFun (TyFun a6989586621679244027 b6989586621679244025 -> Type) (TyFun a6989586621679244027 c6989586621679244026 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679244025 c6989586621679244026 -> Type) (TyFun (TyFun a6989586621679244027 b6989586621679244025 -> Type) (TyFun a6989586621679244027 c6989586621679244026 -> Type) -> Type) -> *) ((:.$) b6989586621679244025 a6989586621679244027 c6989586621679244026) # 

Methods

suppressUnusedWarnings :: Proxy ((b6989586621679244025 :.$ a6989586621679244027) c6989586621679244026) t -> () #

type Apply (TyFun b6989586621679244025 c6989586621679244026 -> Type) (TyFun (TyFun a6989586621679244027 b6989586621679244025 -> Type) (TyFun a6989586621679244027 c6989586621679244026 -> Type) -> Type) ((:.$) b6989586621679244025 a6989586621679244027 c6989586621679244026) l # 
type Apply (TyFun b6989586621679244025 c6989586621679244026 -> Type) (TyFun (TyFun a6989586621679244027 b6989586621679244025 -> Type) (TyFun a6989586621679244027 c6989586621679244026 -> Type) -> Type) ((:.$) b6989586621679244025 a6989586621679244027 c6989586621679244026) l = (:.$$) b6989586621679244025 a6989586621679244027 c6989586621679244026 l

data (l :: TyFun b6989586621679244025 c6989586621679244026 -> Type) :.$$ (l :: TyFun (TyFun a6989586621679244027 b6989586621679244025 -> Type) (TyFun a6989586621679244027 c6989586621679244026 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679244025 c6989586621679244026 -> Type) -> TyFun (TyFun a6989586621679244027 b6989586621679244025 -> Type) (TyFun a6989586621679244027 c6989586621679244026 -> Type) -> *) ((:.$$) b6989586621679244025 a6989586621679244027 c6989586621679244026) # 

Methods

suppressUnusedWarnings :: Proxy ((b6989586621679244025 :.$$ a6989586621679244027) c6989586621679244026) t -> () #

type Apply (TyFun a6989586621679244027 b6989586621679244025 -> Type) (TyFun a6989586621679244027 c6989586621679244026 -> Type) ((:.$$) b6989586621679244025 a6989586621679244027 c6989586621679244026 l1) l2 # 
type Apply (TyFun a6989586621679244027 b6989586621679244025 -> Type) (TyFun a6989586621679244027 c6989586621679244026 -> Type) ((:.$$) b6989586621679244025 a6989586621679244027 c6989586621679244026 l1) l2 = (:.$$$) b6989586621679244025 a6989586621679244027 c6989586621679244026 l1 l2

data ((l :: TyFun b6989586621679244025 c6989586621679244026 -> Type) :.$$$ (l :: TyFun a6989586621679244027 b6989586621679244025 -> Type)) (l :: TyFun a6989586621679244027 c6989586621679244026) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679244025 c6989586621679244026 -> Type) -> (TyFun a6989586621679244027 b6989586621679244025 -> Type) -> TyFun a6989586621679244027 c6989586621679244026 -> *) ((:.$$$) b6989586621679244025 a6989586621679244027 c6989586621679244026) # 

Methods

suppressUnusedWarnings :: Proxy ((b6989586621679244025 :.$$$ a6989586621679244027) c6989586621679244026) t -> () #

type Apply a c ((:.$$$) b a c l1 l2) l3 # 
type Apply a c ((:.$$$) b a c l1 l2) l3 = (:.) b a c l1 l2 l3

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 k (($$$) a k f) arg # 
type Apply a k (($$$) a k f) arg = ($$$$) a k 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 k (($!$$) a k f) arg # 
type Apply a k (($!$$) a k f) arg = ($!$$$) a k f arg

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

data FlipSym0 (l :: TyFun (TyFun a6989586621679244022 (TyFun b6989586621679244023 c6989586621679244024 -> Type) -> Type) (TyFun b6989586621679244023 (TyFun a6989586621679244022 c6989586621679244024 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679244022 (TyFun b6989586621679244023 c6989586621679244024 -> Type) -> Type) (TyFun b6989586621679244023 (TyFun a6989586621679244022 c6989586621679244024 -> Type) -> Type) -> *) (FlipSym0 b6989586621679244023 a6989586621679244022 c6989586621679244024) # 

Methods

suppressUnusedWarnings :: Proxy (FlipSym0 b6989586621679244023 a6989586621679244022 c6989586621679244024) t -> () #

type Apply (TyFun a6989586621679244022 (TyFun b6989586621679244023 c6989586621679244024 -> Type) -> Type) (TyFun b6989586621679244023 (TyFun a6989586621679244022 c6989586621679244024 -> Type) -> Type) (FlipSym0 b6989586621679244023 a6989586621679244022 c6989586621679244024) l # 
type Apply (TyFun a6989586621679244022 (TyFun b6989586621679244023 c6989586621679244024 -> Type) -> Type) (TyFun b6989586621679244023 (TyFun a6989586621679244022 c6989586621679244024 -> Type) -> Type) (FlipSym0 b6989586621679244023 a6989586621679244022 c6989586621679244024) l = FlipSym1 b6989586621679244023 a6989586621679244022 c6989586621679244024 l

data FlipSym1 (l :: TyFun a6989586621679244022 (TyFun b6989586621679244023 c6989586621679244024 -> Type) -> Type) (l :: TyFun b6989586621679244023 (TyFun a6989586621679244022 c6989586621679244024 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679244022 (TyFun b6989586621679244023 c6989586621679244024 -> Type) -> Type) -> TyFun b6989586621679244023 (TyFun a6989586621679244022 c6989586621679244024 -> Type) -> *) (FlipSym1 b6989586621679244023 a6989586621679244022 c6989586621679244024) # 

Methods

suppressUnusedWarnings :: Proxy (FlipSym1 b6989586621679244023 a6989586621679244022 c6989586621679244024) t -> () #

type Apply b6989586621679244023 (TyFun a6989586621679244022 c6989586621679244024 -> Type) (FlipSym1 b6989586621679244023 a6989586621679244022 c6989586621679244024 l1) l2 # 
type Apply b6989586621679244023 (TyFun a6989586621679244022 c6989586621679244024 -> Type) (FlipSym1 b6989586621679244023 a6989586621679244022 c6989586621679244024 l1) l2 = FlipSym2 b6989586621679244023 a6989586621679244022 c6989586621679244024 l1 l2

data FlipSym2 (l :: TyFun a6989586621679244022 (TyFun b6989586621679244023 c6989586621679244024 -> Type) -> Type) (l :: b6989586621679244023) (l :: TyFun a6989586621679244022 c6989586621679244024) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679244022 (TyFun b6989586621679244023 c6989586621679244024 -> Type) -> Type) -> b6989586621679244023 -> TyFun a6989586621679244022 c6989586621679244024 -> *) (FlipSym2 b6989586621679244023 a6989586621679244022 c6989586621679244024) # 

Methods

suppressUnusedWarnings :: Proxy (FlipSym2 b6989586621679244023 a6989586621679244022 c6989586621679244024) t -> () #

type Apply a c (FlipSym2 b a c l1 l2) l3 # 
type Apply a c (FlipSym2 b a c l1 l2) l3 = Flip b a c l1 l2 l3

data AsTypeOfSym0 (l :: TyFun a6989586621679244021 (TyFun a6989586621679244021 a6989586621679244021 -> Type)) #

Instances

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

Methods

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

type Apply a6989586621679244021 (TyFun a6989586621679244021 a6989586621679244021 -> Type) (AsTypeOfSym0 a6989586621679244021) l # 
type Apply a6989586621679244021 (TyFun a6989586621679244021 a6989586621679244021 -> Type) (AsTypeOfSym0 a6989586621679244021) l = AsTypeOfSym1 a6989586621679244021 l

data AsTypeOfSym1 (l :: a6989586621679244021) (l :: TyFun a6989586621679244021 a6989586621679244021) #

Instances

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

Methods

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

type Apply a a (AsTypeOfSym1 a l1) l2 # 
type Apply a a (AsTypeOfSym1 a l1) l2 = AsTypeOf a l1 l2

type AsTypeOfSym2 (t :: a6989586621679244021) (t :: a6989586621679244021) = AsTypeOf t t #

data SeqSym0 (l :: TyFun a6989586621679244019 (TyFun b6989586621679244020 b6989586621679244020 -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679244019 (TyFun b6989586621679244020 b6989586621679244020 -> Type) -> *) (SeqSym0 a6989586621679244019 b6989586621679244020) # 

Methods

suppressUnusedWarnings :: Proxy (SeqSym0 a6989586621679244019 b6989586621679244020) t -> () #

type Apply a6989586621679244019 (TyFun b6989586621679244020 b6989586621679244020 -> Type) (SeqSym0 a6989586621679244019 b6989586621679244020) l # 
type Apply a6989586621679244019 (TyFun b6989586621679244020 b6989586621679244020 -> Type) (SeqSym0 a6989586621679244019 b6989586621679244020) l = SeqSym1 a6989586621679244019 b6989586621679244020 l

data SeqSym1 (l :: a6989586621679244019) (l :: TyFun b6989586621679244020 b6989586621679244020) #

Instances

SuppressUnusedWarnings (a6989586621679244019 -> TyFun b6989586621679244020 b6989586621679244020 -> *) (SeqSym1 a6989586621679244019 b6989586621679244020) # 

Methods

suppressUnusedWarnings :: Proxy (SeqSym1 a6989586621679244019 b6989586621679244020) t -> () #

type Apply b b (SeqSym1 a b l1) l2 # 
type Apply b b (SeqSym1 a b l1) l2 = Seq a b l1 l2

type SeqSym2 (t :: a6989586621679244019) (t :: b6989586621679244020) = Seq t t #

data (:$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type)) #

Instances

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

Methods

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

type Apply a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) ((:$) a3530822107858468865) l # 
type Apply a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) ((:$) a3530822107858468865) l = (:$$) a3530822107858468865 l

data (l :: a3530822107858468865) :$$ (l :: TyFun [a3530822107858468865] [a3530822107858468865]) #

Instances

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

Methods

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

type Apply [a] [a] ((:$$) a l1) l2 # 
type Apply [a] [a] ((:$$) a l1) l2 = (:) a l1 l2

type (:$$$) (t :: a3530822107858468865) (t :: [a3530822107858468865]) = (:) t t #

type NilSym0 = '[] #

data MapSym0 (l :: TyFun (TyFun a6989586621679244032 b6989586621679244033 -> Type) (TyFun [a6989586621679244032] [b6989586621679244033] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679244032 b6989586621679244033 -> Type) (TyFun [a6989586621679244032] [b6989586621679244033] -> Type) -> *) (MapSym0 a6989586621679244032 b6989586621679244033) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym0 a6989586621679244032 b6989586621679244033) t -> () #

type Apply (TyFun a6989586621679244032 b6989586621679244033 -> Type) (TyFun [a6989586621679244032] [b6989586621679244033] -> Type) (MapSym0 a6989586621679244032 b6989586621679244033) l # 
type Apply (TyFun a6989586621679244032 b6989586621679244033 -> Type) (TyFun [a6989586621679244032] [b6989586621679244033] -> Type) (MapSym0 a6989586621679244032 b6989586621679244033) l = MapSym1 a6989586621679244032 b6989586621679244033 l

data MapSym1 (l :: TyFun a6989586621679244032 b6989586621679244033 -> Type) (l :: TyFun [a6989586621679244032] [b6989586621679244033]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679244032 b6989586621679244033 -> Type) -> TyFun [a6989586621679244032] [b6989586621679244033] -> *) (MapSym1 a6989586621679244032 b6989586621679244033) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym1 a6989586621679244032 b6989586621679244033) t -> () #

type Apply [a] [b] (MapSym1 a b l1) l2 # 
type Apply [a] [b] (MapSym1 a b l1) l2 = Map a b l1 l2

type MapSym2 (t :: TyFun a6989586621679244032 b6989586621679244033 -> Type) (t :: [a6989586621679244032]) = Map t t #

data ReverseSym0 (l :: TyFun [a6989586621679389343] [a6989586621679389343]) #

Instances

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

Methods

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

type Apply [a] [a] (ReverseSym0 a) l # 
type Apply [a] [a] (ReverseSym0 a) l = Reverse a l

type ReverseSym1 (t :: [a6989586621679389343]) = Reverse t #

data (l :: [a6989586621679244031]) :++$$ (l :: TyFun [a6989586621679244031] [a6989586621679244031]) #

Instances

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

Methods

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

type Apply [a] [a] ((:++$$) a l1) l2 # 
type Apply [a] [a] ((:++$$) a l1) l2 = (:++) a l1 l2

data (:++$) (l :: TyFun [a6989586621679244031] (TyFun [a6989586621679244031] [a6989586621679244031] -> Type)) #

Instances

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

Methods

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

type Apply [a6989586621679244031] (TyFun [a6989586621679244031] [a6989586621679244031] -> Type) ((:++$) a6989586621679244031) l # 
type Apply [a6989586621679244031] (TyFun [a6989586621679244031] [a6989586621679244031] -> Type) ((:++$) a6989586621679244031) l = (:++$$) a6989586621679244031 l

data HeadSym0 (l :: TyFun [a6989586621679389348] a6989586621679389348) #

Instances

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

Methods

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

type Apply [a] a (HeadSym0 a) l # 
type Apply [a] a (HeadSym0 a) l = Head a l

type HeadSym1 (t :: [a6989586621679389348]) = Head t #

data LastSym0 (l :: TyFun [a6989586621679389347] a6989586621679389347) #

Instances

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

Methods

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

type Apply [a] a (LastSym0 a) l # 
type Apply [a] a (LastSym0 a) l = Last a l

type LastSym1 (t :: [a6989586621679389347]) = Last t #

data TailSym0 (l :: TyFun [a6989586621679389346] [a6989586621679389346]) #

Instances

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

Methods

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

type Apply [a] [a] (TailSym0 a) l # 
type Apply [a] [a] (TailSym0 a) l = Tail a l

type TailSym1 (t :: [a6989586621679389346]) = Tail t #

data InitSym0 (l :: TyFun [a6989586621679389345] [a6989586621679389345]) #

Instances

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

Methods

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

type Apply [a] [a] (InitSym0 a) l # 
type Apply [a] [a] (InitSym0 a) l = Init a l

type InitSym1 (t :: [a6989586621679389345]) = Init t #

data NullSym0 (l :: TyFun [a6989586621679389344] Bool) #

Instances

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

Methods

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

type Apply [a] Bool (NullSym0 a) l # 
type Apply [a] Bool (NullSym0 a) l = Null a l

type NullSym1 (t :: [a6989586621679389344]) = Null t #

data FoldlSym0 (l :: TyFun (TyFun b6989586621679213673 (TyFun a6989586621679213672 b6989586621679213673 -> Type) -> Type) (TyFun b6989586621679213673 (TyFun [a6989586621679213672] b6989586621679213673 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679213673 (TyFun a6989586621679213672 b6989586621679213673 -> Type) -> Type) (TyFun b6989586621679213673 (TyFun [a6989586621679213672] b6989586621679213673 -> Type) -> Type) -> *) (FoldlSym0 a6989586621679213672 b6989586621679213673) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym0 a6989586621679213672 b6989586621679213673) t -> () #

type Apply (TyFun b6989586621679213673 (TyFun a6989586621679213672 b6989586621679213673 -> Type) -> Type) (TyFun b6989586621679213673 (TyFun [a6989586621679213672] b6989586621679213673 -> Type) -> Type) (FoldlSym0 a6989586621679213672 b6989586621679213673) l # 
type Apply (TyFun b6989586621679213673 (TyFun a6989586621679213672 b6989586621679213673 -> Type) -> Type) (TyFun b6989586621679213673 (TyFun [a6989586621679213672] b6989586621679213673 -> Type) -> Type) (FoldlSym0 a6989586621679213672 b6989586621679213673) l = FoldlSym1 a6989586621679213672 b6989586621679213673 l

data FoldlSym1 (l :: TyFun b6989586621679213673 (TyFun a6989586621679213672 b6989586621679213673 -> Type) -> Type) (l :: TyFun b6989586621679213673 (TyFun [a6989586621679213672] b6989586621679213673 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679213673 (TyFun a6989586621679213672 b6989586621679213673 -> Type) -> Type) -> TyFun b6989586621679213673 (TyFun [a6989586621679213672] b6989586621679213673 -> Type) -> *) (FoldlSym1 a6989586621679213672 b6989586621679213673) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym1 a6989586621679213672 b6989586621679213673) t -> () #

type Apply b6989586621679213673 (TyFun [a6989586621679213672] b6989586621679213673 -> Type) (FoldlSym1 a6989586621679213672 b6989586621679213673 l1) l2 # 
type Apply b6989586621679213673 (TyFun [a6989586621679213672] b6989586621679213673 -> Type) (FoldlSym1 a6989586621679213672 b6989586621679213673 l1) l2 = FoldlSym2 a6989586621679213672 b6989586621679213673 l1 l2

data FoldlSym2 (l :: TyFun b6989586621679213673 (TyFun a6989586621679213672 b6989586621679213673 -> Type) -> Type) (l :: b6989586621679213673) (l :: TyFun [a6989586621679213672] b6989586621679213673) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679213673 (TyFun a6989586621679213672 b6989586621679213673 -> Type) -> Type) -> b6989586621679213673 -> TyFun [a6989586621679213672] b6989586621679213673 -> *) (FoldlSym2 a6989586621679213672 b6989586621679213673) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym2 a6989586621679213672 b6989586621679213673) t -> () #

type Apply [a] b (FoldlSym2 a b l1 l2) l3 # 
type Apply [a] b (FoldlSym2 a b l1 l2) l3 = Foldl a b l1 l2 l3

type FoldlSym3 (t :: TyFun b6989586621679213673 (TyFun a6989586621679213672 b6989586621679213673 -> Type) -> Type) (t :: b6989586621679213673) (t :: [a6989586621679213672]) = Foldl t t t #

data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679389334 (TyFun a6989586621679389334 a6989586621679389334 -> Type) -> Type) (TyFun [a6989586621679389334] a6989586621679389334 -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389334 (TyFun a6989586621679389334 a6989586621679389334 -> Type) -> Type) (TyFun [a6989586621679389334] a6989586621679389334 -> Type) (Foldl1Sym0 a6989586621679389334) l # 
type Apply (TyFun a6989586621679389334 (TyFun a6989586621679389334 a6989586621679389334 -> Type) -> Type) (TyFun [a6989586621679389334] a6989586621679389334 -> Type) (Foldl1Sym0 a6989586621679389334) l = Foldl1Sym1 a6989586621679389334 l

data Foldl1Sym1 (l :: TyFun a6989586621679389334 (TyFun a6989586621679389334 a6989586621679389334 -> Type) -> Type) (l :: TyFun [a6989586621679389334] a6989586621679389334) #

Instances

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

Methods

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

type Apply [a] a (Foldl1Sym1 a l1) l2 # 
type Apply [a] a (Foldl1Sym1 a l1) l2 = Foldl1 a l1 l2

type Foldl1Sym2 (t :: TyFun a6989586621679389334 (TyFun a6989586621679389334 a6989586621679389334 -> Type) -> Type) (t :: [a6989586621679389334]) = Foldl1 t t #

data FoldrSym0 (l :: TyFun (TyFun a6989586621679244034 (TyFun b6989586621679244035 b6989586621679244035 -> Type) -> Type) (TyFun b6989586621679244035 (TyFun [a6989586621679244034] b6989586621679244035 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679244034 (TyFun b6989586621679244035 b6989586621679244035 -> Type) -> Type) (TyFun b6989586621679244035 (TyFun [a6989586621679244034] b6989586621679244035 -> Type) -> Type) -> *) (FoldrSym0 a6989586621679244034 b6989586621679244035) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym0 a6989586621679244034 b6989586621679244035) t -> () #

type Apply (TyFun a6989586621679244034 (TyFun b6989586621679244035 b6989586621679244035 -> Type) -> Type) (TyFun b6989586621679244035 (TyFun [a6989586621679244034] b6989586621679244035 -> Type) -> Type) (FoldrSym0 a6989586621679244034 b6989586621679244035) l # 
type Apply (TyFun a6989586621679244034 (TyFun b6989586621679244035 b6989586621679244035 -> Type) -> Type) (TyFun b6989586621679244035 (TyFun [a6989586621679244034] b6989586621679244035 -> Type) -> Type) (FoldrSym0 a6989586621679244034 b6989586621679244035) l = FoldrSym1 a6989586621679244034 b6989586621679244035 l

data FoldrSym1 (l :: TyFun a6989586621679244034 (TyFun b6989586621679244035 b6989586621679244035 -> Type) -> Type) (l :: TyFun b6989586621679244035 (TyFun [a6989586621679244034] b6989586621679244035 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679244034 (TyFun b6989586621679244035 b6989586621679244035 -> Type) -> Type) -> TyFun b6989586621679244035 (TyFun [a6989586621679244034] b6989586621679244035 -> Type) -> *) (FoldrSym1 a6989586621679244034 b6989586621679244035) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym1 a6989586621679244034 b6989586621679244035) t -> () #

type Apply b6989586621679244035 (TyFun [a6989586621679244034] b6989586621679244035 -> Type) (FoldrSym1 a6989586621679244034 b6989586621679244035 l1) l2 # 
type Apply b6989586621679244035 (TyFun [a6989586621679244034] b6989586621679244035 -> Type) (FoldrSym1 a6989586621679244034 b6989586621679244035 l1) l2 = FoldrSym2 a6989586621679244034 b6989586621679244035 l1 l2

data FoldrSym2 (l :: TyFun a6989586621679244034 (TyFun b6989586621679244035 b6989586621679244035 -> Type) -> Type) (l :: b6989586621679244035) (l :: TyFun [a6989586621679244034] b6989586621679244035) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679244034 (TyFun b6989586621679244035 b6989586621679244035 -> Type) -> Type) -> b6989586621679244035 -> TyFun [a6989586621679244034] b6989586621679244035 -> *) (FoldrSym2 a6989586621679244034 b6989586621679244035) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym2 a6989586621679244034 b6989586621679244035) t -> () #

type Apply [a] b (FoldrSym2 a b l1 l2) l3 # 
type Apply [a] b (FoldrSym2 a b l1 l2) l3 = Foldr a b l1 l2 l3

type FoldrSym3 (t :: TyFun a6989586621679244034 (TyFun b6989586621679244035 b6989586621679244035 -> Type) -> Type) (t :: b6989586621679244035) (t :: [a6989586621679244034]) = Foldr t t t #

data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679389332 (TyFun a6989586621679389332 a6989586621679389332 -> Type) -> Type) (TyFun [a6989586621679389332] a6989586621679389332 -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389332 (TyFun a6989586621679389332 a6989586621679389332 -> Type) -> Type) (TyFun [a6989586621679389332] a6989586621679389332 -> Type) (Foldr1Sym0 a6989586621679389332) l # 
type Apply (TyFun a6989586621679389332 (TyFun a6989586621679389332 a6989586621679389332 -> Type) -> Type) (TyFun [a6989586621679389332] a6989586621679389332 -> Type) (Foldr1Sym0 a6989586621679389332) l = Foldr1Sym1 a6989586621679389332 l

data Foldr1Sym1 (l :: TyFun a6989586621679389332 (TyFun a6989586621679389332 a6989586621679389332 -> Type) -> Type) (l :: TyFun [a6989586621679389332] a6989586621679389332) #

Instances

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

Methods

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

type Apply [a] a (Foldr1Sym1 a l1) l2 # 
type Apply [a] a (Foldr1Sym1 a l1) l2 = Foldr1 a l1 l2

type Foldr1Sym2 (t :: TyFun a6989586621679389332 (TyFun a6989586621679389332 a6989586621679389332 -> Type) -> Type) (t :: [a6989586621679389332]) = Foldr1 t t #

data ConcatSym0 (l :: TyFun [[a6989586621679389331]] [a6989586621679389331]) #

Instances

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

Methods

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

type Apply [[a]] [a] (ConcatSym0 a) l # 
type Apply [[a]] [a] (ConcatSym0 a) l = Concat a l

type ConcatSym1 (t :: [[a6989586621679389331]]) = Concat t #

data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679389329 [b6989586621679389330] -> Type) (TyFun [a6989586621679389329] [b6989586621679389330] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389329 [b6989586621679389330] -> Type) (TyFun [a6989586621679389329] [b6989586621679389330] -> Type) -> *) (ConcatMapSym0 a6989586621679389329 b6989586621679389330) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatMapSym0 a6989586621679389329 b6989586621679389330) t -> () #

type Apply (TyFun a6989586621679389329 [b6989586621679389330] -> Type) (TyFun [a6989586621679389329] [b6989586621679389330] -> Type) (ConcatMapSym0 a6989586621679389329 b6989586621679389330) l # 
type Apply (TyFun a6989586621679389329 [b6989586621679389330] -> Type) (TyFun [a6989586621679389329] [b6989586621679389330] -> Type) (ConcatMapSym0 a6989586621679389329 b6989586621679389330) l = ConcatMapSym1 a6989586621679389329 b6989586621679389330 l

data ConcatMapSym1 (l :: TyFun a6989586621679389329 [b6989586621679389330] -> Type) (l :: TyFun [a6989586621679389329] [b6989586621679389330]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389329 [b6989586621679389330] -> Type) -> TyFun [a6989586621679389329] [b6989586621679389330] -> *) (ConcatMapSym1 a6989586621679389329 b6989586621679389330) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatMapSym1 a6989586621679389329 b6989586621679389330) t -> () #

type Apply [a] [b] (ConcatMapSym1 a b l1) l2 # 
type Apply [a] [b] (ConcatMapSym1 a b l1) l2 = ConcatMap a b l1 l2

type ConcatMapSym2 (t :: TyFun a6989586621679389329 [b6989586621679389330] -> Type) (t :: [a6989586621679389329]) = ConcatMap t t #

data MaximumBySym0 (l :: TyFun (TyFun a6989586621679389261 (TyFun a6989586621679389261 Ordering -> Type) -> Type) (TyFun [a6989586621679389261] a6989586621679389261 -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389261 (TyFun a6989586621679389261 Ordering -> Type) -> Type) (TyFun [a6989586621679389261] a6989586621679389261 -> Type) (MaximumBySym0 a6989586621679389261) l # 
type Apply (TyFun a6989586621679389261 (TyFun a6989586621679389261 Ordering -> Type) -> Type) (TyFun [a6989586621679389261] a6989586621679389261 -> Type) (MaximumBySym0 a6989586621679389261) l = MaximumBySym1 a6989586621679389261 l

data MaximumBySym1 (l :: TyFun a6989586621679389261 (TyFun a6989586621679389261 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679389261] a6989586621679389261) #

Instances

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

Methods

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

type Apply [a] a (MaximumBySym1 a l1) l2 # 
type Apply [a] a (MaximumBySym1 a l1) l2 = MaximumBy a l1 l2

type MaximumBySym2 (t :: TyFun a6989586621679389261 (TyFun a6989586621679389261 Ordering -> Type) -> Type) (t :: [a6989586621679389261]) = MaximumBy t t #

data MinimumBySym0 (l :: TyFun (TyFun a6989586621679389260 (TyFun a6989586621679389260 Ordering -> Type) -> Type) (TyFun [a6989586621679389260] a6989586621679389260 -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389260 (TyFun a6989586621679389260 Ordering -> Type) -> Type) (TyFun [a6989586621679389260] a6989586621679389260 -> Type) (MinimumBySym0 a6989586621679389260) l # 
type Apply (TyFun a6989586621679389260 (TyFun a6989586621679389260 Ordering -> Type) -> Type) (TyFun [a6989586621679389260] a6989586621679389260 -> Type) (MinimumBySym0 a6989586621679389260) l = MinimumBySym1 a6989586621679389260 l

data MinimumBySym1 (l :: TyFun a6989586621679389260 (TyFun a6989586621679389260 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679389260] a6989586621679389260) #

Instances

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

Methods

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

type Apply [a] a (MinimumBySym1 a l1) l2 # 
type Apply [a] a (MinimumBySym1 a l1) l2 = MinimumBy a l1 l2

type MinimumBySym2 (t :: TyFun a6989586621679389260 (TyFun a6989586621679389260 Ordering -> Type) -> Type) (t :: [a6989586621679389260]) = MinimumBy t t #

data AndSym0 (l :: TyFun [Bool] Bool) #

type AndSym1 (t :: [Bool]) = And t #

data OrSym0 (l :: TyFun [Bool] Bool) #

Instances

type OrSym1 (t :: [Bool]) = Or t #

data Any_Sym0 (l :: TyFun (TyFun a6989586621679379112 Bool -> Type) (TyFun [a6989586621679379112] Bool -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679379112 Bool -> Type) (TyFun [a6989586621679379112] Bool -> Type) (Any_Sym0 a6989586621679379112) l # 
type Apply (TyFun a6989586621679379112 Bool -> Type) (TyFun [a6989586621679379112] Bool -> Type) (Any_Sym0 a6989586621679379112) l = Any_Sym1 a6989586621679379112 l

data Any_Sym1 (l :: TyFun a6989586621679379112 Bool -> Type) (l :: TyFun [a6989586621679379112] Bool) #

Instances

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

Methods

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

type Apply [a] Bool (Any_Sym1 a l1) l2 # 
type Apply [a] Bool (Any_Sym1 a l1) l2 = Any_ a l1 l2

type Any_Sym2 (t :: TyFun a6989586621679379112 Bool -> Type) (t :: [a6989586621679379112]) = Any_ t t #

data AllSym0 (l :: TyFun (TyFun a6989586621679389328 Bool -> Type) (TyFun [a6989586621679389328] Bool -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389328 Bool -> Type) (TyFun [a6989586621679389328] Bool -> Type) (AllSym0 a6989586621679389328) l # 
type Apply (TyFun a6989586621679389328 Bool -> Type) (TyFun [a6989586621679389328] Bool -> Type) (AllSym0 a6989586621679389328) l = AllSym1 a6989586621679389328 l

data AllSym1 (l :: TyFun a6989586621679389328 Bool -> Type) (l :: TyFun [a6989586621679389328] Bool) #

Instances

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

Methods

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

type Apply [a] Bool (AllSym1 a l1) l2 # 
type Apply [a] Bool (AllSym1 a l1) l2 = All a l1 l2

type AllSym2 (t :: TyFun a6989586621679389328 Bool -> Type) (t :: [a6989586621679389328]) = All t t #

data ScanlSym0 (l :: TyFun (TyFun b6989586621679389326 (TyFun a6989586621679389327 b6989586621679389326 -> Type) -> Type) (TyFun b6989586621679389326 (TyFun [a6989586621679389327] [b6989586621679389326] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679389326 (TyFun a6989586621679389327 b6989586621679389326 -> Type) -> Type) (TyFun b6989586621679389326 (TyFun [a6989586621679389327] [b6989586621679389326] -> Type) -> Type) -> *) (ScanlSym0 a6989586621679389327 b6989586621679389326) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym0 a6989586621679389327 b6989586621679389326) t -> () #

type Apply (TyFun b6989586621679389326 (TyFun a6989586621679389327 b6989586621679389326 -> Type) -> Type) (TyFun b6989586621679389326 (TyFun [a6989586621679389327] [b6989586621679389326] -> Type) -> Type) (ScanlSym0 a6989586621679389327 b6989586621679389326) l # 
type Apply (TyFun b6989586621679389326 (TyFun a6989586621679389327 b6989586621679389326 -> Type) -> Type) (TyFun b6989586621679389326 (TyFun [a6989586621679389327] [b6989586621679389326] -> Type) -> Type) (ScanlSym0 a6989586621679389327 b6989586621679389326) l = ScanlSym1 a6989586621679389327 b6989586621679389326 l

data ScanlSym1 (l :: TyFun b6989586621679389326 (TyFun a6989586621679389327 b6989586621679389326 -> Type) -> Type) (l :: TyFun b6989586621679389326 (TyFun [a6989586621679389327] [b6989586621679389326] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679389326 (TyFun a6989586621679389327 b6989586621679389326 -> Type) -> Type) -> TyFun b6989586621679389326 (TyFun [a6989586621679389327] [b6989586621679389326] -> Type) -> *) (ScanlSym1 a6989586621679389327 b6989586621679389326) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym1 a6989586621679389327 b6989586621679389326) t -> () #

type Apply b6989586621679389326 (TyFun [a6989586621679389327] [b6989586621679389326] -> Type) (ScanlSym1 a6989586621679389327 b6989586621679389326 l1) l2 # 
type Apply b6989586621679389326 (TyFun [a6989586621679389327] [b6989586621679389326] -> Type) (ScanlSym1 a6989586621679389327 b6989586621679389326 l1) l2 = ScanlSym2 a6989586621679389327 b6989586621679389326 l1 l2

data ScanlSym2 (l :: TyFun b6989586621679389326 (TyFun a6989586621679389327 b6989586621679389326 -> Type) -> Type) (l :: b6989586621679389326) (l :: TyFun [a6989586621679389327] [b6989586621679389326]) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679389326 (TyFun a6989586621679389327 b6989586621679389326 -> Type) -> Type) -> b6989586621679389326 -> TyFun [a6989586621679389327] [b6989586621679389326] -> *) (ScanlSym2 a6989586621679389327 b6989586621679389326) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym2 a6989586621679389327 b6989586621679389326) t -> () #

type Apply [a] [b] (ScanlSym2 a b l1 l2) l3 # 
type Apply [a] [b] (ScanlSym2 a b l1 l2) l3 = Scanl a b l1 l2 l3

type ScanlSym3 (t :: TyFun b6989586621679389326 (TyFun a6989586621679389327 b6989586621679389326 -> Type) -> Type) (t :: b6989586621679389326) (t :: [a6989586621679389327]) = Scanl t t t #

data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679389325 (TyFun a6989586621679389325 a6989586621679389325 -> Type) -> Type) (TyFun [a6989586621679389325] [a6989586621679389325] -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389325 (TyFun a6989586621679389325 a6989586621679389325 -> Type) -> Type) (TyFun [a6989586621679389325] [a6989586621679389325] -> Type) (Scanl1Sym0 a6989586621679389325) l # 
type Apply (TyFun a6989586621679389325 (TyFun a6989586621679389325 a6989586621679389325 -> Type) -> Type) (TyFun [a6989586621679389325] [a6989586621679389325] -> Type) (Scanl1Sym0 a6989586621679389325) l = Scanl1Sym1 a6989586621679389325 l

data Scanl1Sym1 (l :: TyFun a6989586621679389325 (TyFun a6989586621679389325 a6989586621679389325 -> Type) -> Type) (l :: TyFun [a6989586621679389325] [a6989586621679389325]) #

Instances

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

Methods

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

type Apply [a] [a] (Scanl1Sym1 a l1) l2 # 
type Apply [a] [a] (Scanl1Sym1 a l1) l2 = Scanl1 a l1 l2

type Scanl1Sym2 (t :: TyFun a6989586621679389325 (TyFun a6989586621679389325 a6989586621679389325 -> Type) -> Type) (t :: [a6989586621679389325]) = Scanl1 t t #

data ScanrSym0 (l :: TyFun (TyFun a6989586621679389323 (TyFun b6989586621679389324 b6989586621679389324 -> Type) -> Type) (TyFun b6989586621679389324 (TyFun [a6989586621679389323] [b6989586621679389324] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389323 (TyFun b6989586621679389324 b6989586621679389324 -> Type) -> Type) (TyFun b6989586621679389324 (TyFun [a6989586621679389323] [b6989586621679389324] -> Type) -> Type) -> *) (ScanrSym0 a6989586621679389323 b6989586621679389324) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym0 a6989586621679389323 b6989586621679389324) t -> () #

type Apply (TyFun a6989586621679389323 (TyFun b6989586621679389324 b6989586621679389324 -> Type) -> Type) (TyFun b6989586621679389324 (TyFun [a6989586621679389323] [b6989586621679389324] -> Type) -> Type) (ScanrSym0 a6989586621679389323 b6989586621679389324) l # 
type Apply (TyFun a6989586621679389323 (TyFun b6989586621679389324 b6989586621679389324 -> Type) -> Type) (TyFun b6989586621679389324 (TyFun [a6989586621679389323] [b6989586621679389324] -> Type) -> Type) (ScanrSym0 a6989586621679389323 b6989586621679389324) l = ScanrSym1 a6989586621679389323 b6989586621679389324 l

data ScanrSym1 (l :: TyFun a6989586621679389323 (TyFun b6989586621679389324 b6989586621679389324 -> Type) -> Type) (l :: TyFun b6989586621679389324 (TyFun [a6989586621679389323] [b6989586621679389324] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389323 (TyFun b6989586621679389324 b6989586621679389324 -> Type) -> Type) -> TyFun b6989586621679389324 (TyFun [a6989586621679389323] [b6989586621679389324] -> Type) -> *) (ScanrSym1 a6989586621679389323 b6989586621679389324) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym1 a6989586621679389323 b6989586621679389324) t -> () #

type Apply b6989586621679389324 (TyFun [a6989586621679389323] [b6989586621679389324] -> Type) (ScanrSym1 a6989586621679389323 b6989586621679389324 l1) l2 # 
type Apply b6989586621679389324 (TyFun [a6989586621679389323] [b6989586621679389324] -> Type) (ScanrSym1 a6989586621679389323 b6989586621679389324 l1) l2 = ScanrSym2 a6989586621679389323 b6989586621679389324 l1 l2

data ScanrSym2 (l :: TyFun a6989586621679389323 (TyFun b6989586621679389324 b6989586621679389324 -> Type) -> Type) (l :: b6989586621679389324) (l :: TyFun [a6989586621679389323] [b6989586621679389324]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389323 (TyFun b6989586621679389324 b6989586621679389324 -> Type) -> Type) -> b6989586621679389324 -> TyFun [a6989586621679389323] [b6989586621679389324] -> *) (ScanrSym2 a6989586621679389323 b6989586621679389324) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym2 a6989586621679389323 b6989586621679389324) t -> () #

type Apply [a] [b] (ScanrSym2 a b l1 l2) l3 # 
type Apply [a] [b] (ScanrSym2 a b l1 l2) l3 = Scanr a b l1 l2 l3

type ScanrSym3 (t :: TyFun a6989586621679389323 (TyFun b6989586621679389324 b6989586621679389324 -> Type) -> Type) (t :: b6989586621679389324) (t :: [a6989586621679389323]) = Scanr t t t #

data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679389322 (TyFun a6989586621679389322 a6989586621679389322 -> Type) -> Type) (TyFun [a6989586621679389322] [a6989586621679389322] -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389322 (TyFun a6989586621679389322 a6989586621679389322 -> Type) -> Type) (TyFun [a6989586621679389322] [a6989586621679389322] -> Type) (Scanr1Sym0 a6989586621679389322) l # 
type Apply (TyFun a6989586621679389322 (TyFun a6989586621679389322 a6989586621679389322 -> Type) -> Type) (TyFun [a6989586621679389322] [a6989586621679389322] -> Type) (Scanr1Sym0 a6989586621679389322) l = Scanr1Sym1 a6989586621679389322 l

data Scanr1Sym1 (l :: TyFun a6989586621679389322 (TyFun a6989586621679389322 a6989586621679389322 -> Type) -> Type) (l :: TyFun [a6989586621679389322] [a6989586621679389322]) #

Instances

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

Methods

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

type Apply [a] [a] (Scanr1Sym1 a l1) l2 # 
type Apply [a] [a] (Scanr1Sym1 a l1) l2 = Scanr1 a l1 l2

type Scanr1Sym2 (t :: TyFun a6989586621679389322 (TyFun a6989586621679389322 a6989586621679389322 -> Type) -> Type) (t :: [a6989586621679389322]) = Scanr1 t t #

data ElemSym0 (l :: TyFun a6989586621679389308 (TyFun [a6989586621679389308] Bool -> Type)) #

Instances

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

Methods

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

type Apply a6989586621679389308 (TyFun [a6989586621679389308] Bool -> Type) (ElemSym0 a6989586621679389308) l # 
type Apply a6989586621679389308 (TyFun [a6989586621679389308] Bool -> Type) (ElemSym0 a6989586621679389308) l = ElemSym1 a6989586621679389308 l

data ElemSym1 (l :: a6989586621679389308) (l :: TyFun [a6989586621679389308] Bool) #

Instances

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

Methods

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

type Apply [a] Bool (ElemSym1 a l1) l2 # 
type Apply [a] Bool (ElemSym1 a l1) l2 = Elem a l1 l2

type ElemSym2 (t :: a6989586621679389308) (t :: [a6989586621679389308]) = Elem t t #

data NotElemSym0 (l :: TyFun a6989586621679389307 (TyFun [a6989586621679389307] Bool -> Type)) #

Instances

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

Methods

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

type Apply a6989586621679389307 (TyFun [a6989586621679389307] Bool -> Type) (NotElemSym0 a6989586621679389307) l # 
type Apply a6989586621679389307 (TyFun [a6989586621679389307] Bool -> Type) (NotElemSym0 a6989586621679389307) l = NotElemSym1 a6989586621679389307 l

data NotElemSym1 (l :: a6989586621679389307) (l :: TyFun [a6989586621679389307] Bool) #

Instances

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

Methods

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

type Apply [a] Bool (NotElemSym1 a l1) l2 # 
type Apply [a] Bool (NotElemSym1 a l1) l2 = NotElem a l1 l2

type NotElemSym2 (t :: a6989586621679389307) (t :: [a6989586621679389307]) = NotElem t t #

data ZipSym0 (l :: TyFun [a6989586621679389305] (TyFun [b6989586621679389306] [(a6989586621679389305, b6989586621679389306)] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389305] (TyFun [b6989586621679389306] [(a6989586621679389305, b6989586621679389306)] -> Type) -> *) (ZipSym0 a6989586621679389305 b6989586621679389306) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym0 a6989586621679389305 b6989586621679389306) t -> () #

type Apply [a6989586621679389305] (TyFun [b6989586621679389306] [(a6989586621679389305, b6989586621679389306)] -> Type) (ZipSym0 a6989586621679389305 b6989586621679389306) l # 
type Apply [a6989586621679389305] (TyFun [b6989586621679389306] [(a6989586621679389305, b6989586621679389306)] -> Type) (ZipSym0 a6989586621679389305 b6989586621679389306) l = ZipSym1 a6989586621679389305 b6989586621679389306 l

data ZipSym1 (l :: [a6989586621679389305]) (l :: TyFun [b6989586621679389306] [(a6989586621679389305, b6989586621679389306)]) #

Instances

SuppressUnusedWarnings ([a6989586621679389305] -> TyFun [b6989586621679389306] [(a6989586621679389305, b6989586621679389306)] -> *) (ZipSym1 a6989586621679389305 b6989586621679389306) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym1 a6989586621679389305 b6989586621679389306) t -> () #

type Apply [b] [(a, b)] (ZipSym1 a b l1) l2 # 
type Apply [b] [(a, b)] (ZipSym1 a b l1) l2 = Zip a b l1 l2

type ZipSym2 (t :: [a6989586621679389305]) (t :: [b6989586621679389306]) = Zip t t #

data Zip3Sym0 (l :: TyFun [a6989586621679389302] (TyFun [b6989586621679389303] (TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389302] (TyFun [b6989586621679389303] (TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)] -> Type) -> Type) -> *) (Zip3Sym0 a6989586621679389302 b6989586621679389303 c6989586621679389304) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym0 a6989586621679389302 b6989586621679389303 c6989586621679389304) t -> () #

type Apply [a6989586621679389302] (TyFun [b6989586621679389303] (TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)] -> Type) -> Type) (Zip3Sym0 a6989586621679389302 b6989586621679389303 c6989586621679389304) l # 
type Apply [a6989586621679389302] (TyFun [b6989586621679389303] (TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)] -> Type) -> Type) (Zip3Sym0 a6989586621679389302 b6989586621679389303 c6989586621679389304) l = Zip3Sym1 a6989586621679389302 b6989586621679389303 c6989586621679389304 l

data Zip3Sym1 (l :: [a6989586621679389302]) (l :: TyFun [b6989586621679389303] (TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)] -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679389302] -> TyFun [b6989586621679389303] (TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)] -> Type) -> *) (Zip3Sym1 a6989586621679389302 b6989586621679389303 c6989586621679389304) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym1 a6989586621679389302 b6989586621679389303 c6989586621679389304) t -> () #

type Apply [b6989586621679389303] (TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)] -> Type) (Zip3Sym1 a6989586621679389302 b6989586621679389303 c6989586621679389304 l1) l2 # 
type Apply [b6989586621679389303] (TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)] -> Type) (Zip3Sym1 a6989586621679389302 b6989586621679389303 c6989586621679389304 l1) l2 = Zip3Sym2 a6989586621679389302 b6989586621679389303 c6989586621679389304 l1 l2

data Zip3Sym2 (l :: [a6989586621679389302]) (l :: [b6989586621679389303]) (l :: TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)]) #

Instances

SuppressUnusedWarnings ([a6989586621679389302] -> [b6989586621679389303] -> TyFun [c6989586621679389304] [(a6989586621679389302, b6989586621679389303, c6989586621679389304)] -> *) (Zip3Sym2 a6989586621679389302 b6989586621679389303 c6989586621679389304) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym2 a6989586621679389302 b6989586621679389303 c6989586621679389304) t -> () #

type Apply [c] [(a, b, c)] (Zip3Sym2 a b c l1 l2) l3 # 
type Apply [c] [(a, b, c)] (Zip3Sym2 a b c l1 l2) l3 = Zip3 a b c l1 l2 l3

type Zip3Sym3 (t :: [a6989586621679389302]) (t :: [b6989586621679389303]) (t :: [c6989586621679389304]) = Zip3 t t t #

data ZipWithSym0 (l :: TyFun (TyFun a6989586621679389299 (TyFun b6989586621679389300 c6989586621679389301 -> Type) -> Type) (TyFun [a6989586621679389299] (TyFun [b6989586621679389300] [c6989586621679389301] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389299 (TyFun b6989586621679389300 c6989586621679389301 -> Type) -> Type) (TyFun [a6989586621679389299] (TyFun [b6989586621679389300] [c6989586621679389301] -> Type) -> Type) -> *) (ZipWithSym0 a6989586621679389299 b6989586621679389300 c6989586621679389301) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym0 a6989586621679389299 b6989586621679389300 c6989586621679389301) t -> () #

type Apply (TyFun a6989586621679389299 (TyFun b6989586621679389300 c6989586621679389301 -> Type) -> Type) (TyFun [a6989586621679389299] (TyFun [b6989586621679389300] [c6989586621679389301] -> Type) -> Type) (ZipWithSym0 a6989586621679389299 b6989586621679389300 c6989586621679389301) l # 
type Apply (TyFun a6989586621679389299 (TyFun b6989586621679389300 c6989586621679389301 -> Type) -> Type) (TyFun [a6989586621679389299] (TyFun [b6989586621679389300] [c6989586621679389301] -> Type) -> Type) (ZipWithSym0 a6989586621679389299 b6989586621679389300 c6989586621679389301) l = ZipWithSym1 a6989586621679389299 b6989586621679389300 c6989586621679389301 l

data ZipWithSym1 (l :: TyFun a6989586621679389299 (TyFun b6989586621679389300 c6989586621679389301 -> Type) -> Type) (l :: TyFun [a6989586621679389299] (TyFun [b6989586621679389300] [c6989586621679389301] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389299 (TyFun b6989586621679389300 c6989586621679389301 -> Type) -> Type) -> TyFun [a6989586621679389299] (TyFun [b6989586621679389300] [c6989586621679389301] -> Type) -> *) (ZipWithSym1 a6989586621679389299 b6989586621679389300 c6989586621679389301) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym1 a6989586621679389299 b6989586621679389300 c6989586621679389301) t -> () #

type Apply [a6989586621679389299] (TyFun [b6989586621679389300] [c6989586621679389301] -> Type) (ZipWithSym1 a6989586621679389299 b6989586621679389300 c6989586621679389301 l1) l2 # 
type Apply [a6989586621679389299] (TyFun [b6989586621679389300] [c6989586621679389301] -> Type) (ZipWithSym1 a6989586621679389299 b6989586621679389300 c6989586621679389301 l1) l2 = ZipWithSym2 a6989586621679389299 b6989586621679389300 c6989586621679389301 l1 l2

data ZipWithSym2 (l :: TyFun a6989586621679389299 (TyFun b6989586621679389300 c6989586621679389301 -> Type) -> Type) (l :: [a6989586621679389299]) (l :: TyFun [b6989586621679389300] [c6989586621679389301]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389299 (TyFun b6989586621679389300 c6989586621679389301 -> Type) -> Type) -> [a6989586621679389299] -> TyFun [b6989586621679389300] [c6989586621679389301] -> *) (ZipWithSym2 a6989586621679389299 b6989586621679389300 c6989586621679389301) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym2 a6989586621679389299 b6989586621679389300 c6989586621679389301) t -> () #

type Apply [b] [c] (ZipWithSym2 a b c l1 l2) l3 # 
type Apply [b] [c] (ZipWithSym2 a b c l1 l2) l3 = ZipWith a b c l1 l2 l3

type ZipWithSym3 (t :: TyFun a6989586621679389299 (TyFun b6989586621679389300 c6989586621679389301 -> Type) -> Type) (t :: [a6989586621679389299]) (t :: [b6989586621679389300]) = ZipWith t t t #

data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) (TyFun [a6989586621679389295] (TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) (TyFun [a6989586621679389295] (TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) -> Type) -> Type) -> *) (ZipWith3Sym0 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym0 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) t -> () #

type Apply (TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) (TyFun [a6989586621679389295] (TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) -> Type) -> Type) (ZipWith3Sym0 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) l # 
type Apply (TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) (TyFun [a6989586621679389295] (TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) -> Type) -> Type) (ZipWith3Sym0 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) l = ZipWith3Sym1 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298 l

data ZipWith3Sym1 (l :: TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679389295] (TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) -> TyFun [a6989586621679389295] (TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) -> Type) -> *) (ZipWith3Sym1 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym1 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) t -> () #

type Apply [a6989586621679389295] (TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) -> Type) (ZipWith3Sym1 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298 l1) l2 # 
type Apply [a6989586621679389295] (TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) -> Type) (ZipWith3Sym1 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298 l1) l2 = ZipWith3Sym2 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298 l1 l2

data ZipWith3Sym2 (l :: TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) (l :: [a6989586621679389295]) (l :: TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) -> [a6989586621679389295] -> TyFun [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) -> *) (ZipWith3Sym2 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym2 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) t -> () #

type Apply [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) (ZipWith3Sym2 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298 l1 l2) l3 # 
type Apply [b6989586621679389296] (TyFun [c6989586621679389297] [d6989586621679389298] -> Type) (ZipWith3Sym2 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298 l1 l2) l3 = ZipWith3Sym3 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298 l1 l2 l3

data ZipWith3Sym3 (l :: TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) (l :: [a6989586621679389295]) (l :: [b6989586621679389296]) (l :: TyFun [c6989586621679389297] [d6989586621679389298]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) -> [a6989586621679389295] -> [b6989586621679389296] -> TyFun [c6989586621679389297] [d6989586621679389298] -> *) (ZipWith3Sym3 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym3 a6989586621679389295 b6989586621679389296 c6989586621679389297 d6989586621679389298) t -> () #

type Apply [c] [d] (ZipWith3Sym3 a b c d l1 l2 l3) l4 # 
type Apply [c] [d] (ZipWith3Sym3 a b c d l1 l2 l3) l4 = ZipWith3 a b c d l1 l2 l3 l4

data UnzipSym0 (l :: TyFun [(a6989586621679389293, b6989586621679389294)] ([a6989586621679389293], [b6989586621679389294])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679389293, b6989586621679389294)] ([a6989586621679389293], [b6989586621679389294]) -> *) (UnzipSym0 a6989586621679389293 b6989586621679389294) # 

Methods

suppressUnusedWarnings :: Proxy (UnzipSym0 a6989586621679389293 b6989586621679389294) t -> () #

type Apply [(a, b)] ([a], [b]) (UnzipSym0 a b) l # 
type Apply [(a, b)] ([a], [b]) (UnzipSym0 a b) l = Unzip a b l

type UnzipSym1 (t :: [(a6989586621679389293, b6989586621679389294)]) = Unzip t #

data UntilSym0 (l :: TyFun (TyFun a6989586621679377359 Bool -> Type) (TyFun (TyFun a6989586621679377359 a6989586621679377359 -> Type) (TyFun a6989586621679377359 a6989586621679377359 -> Type) -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679377359 Bool -> Type) (TyFun (TyFun a6989586621679377359 a6989586621679377359 -> Type) (TyFun a6989586621679377359 a6989586621679377359 -> Type) -> Type) (UntilSym0 a6989586621679377359) l # 
type Apply (TyFun a6989586621679377359 Bool -> Type) (TyFun (TyFun a6989586621679377359 a6989586621679377359 -> Type) (TyFun a6989586621679377359 a6989586621679377359 -> Type) -> Type) (UntilSym0 a6989586621679377359) l = UntilSym1 a6989586621679377359 l

data UntilSym1 (l :: TyFun a6989586621679377359 Bool -> Type) (l :: TyFun (TyFun a6989586621679377359 a6989586621679377359 -> Type) (TyFun a6989586621679377359 a6989586621679377359 -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679377359 a6989586621679377359 -> Type) (TyFun a6989586621679377359 a6989586621679377359 -> Type) (UntilSym1 a6989586621679377359 l1) l2 # 
type Apply (TyFun a6989586621679377359 a6989586621679377359 -> Type) (TyFun a6989586621679377359 a6989586621679377359 -> Type) (UntilSym1 a6989586621679377359 l1) l2 = UntilSym2 a6989586621679377359 l1 l2

data UntilSym2 (l :: TyFun a6989586621679377359 Bool -> Type) (l :: TyFun a6989586621679377359 a6989586621679377359 -> Type) (l :: TyFun a6989586621679377359 a6989586621679377359) #

Instances

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

Methods

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

type Apply a a (UntilSym2 a l1 l2) l3 # 
type Apply a a (UntilSym2 a l1 l2) l3 = Until a l1 l2 l3

type UntilSym3 (t :: TyFun a6989586621679377359 Bool -> Type) (t :: TyFun a6989586621679377359 a6989586621679377359 -> Type) (t :: a6989586621679377359) = Until t t t #

data LengthSym0 (l :: TyFun [a6989586621679389231] Nat) #

Instances

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

Methods

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

type Apply [a] Nat (LengthSym0 a) l # 
type Apply [a] Nat (LengthSym0 a) l = Length a l

type LengthSym1 (t :: [a6989586621679389231]) = Length t #

data SumSym0 (l :: TyFun [a6989586621679389233] a6989586621679389233) #

Instances

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

Methods

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

type Apply [a] a (SumSym0 a) l # 
type Apply [a] a (SumSym0 a) l = Sum a l

type SumSym1 (t :: [a6989586621679389233]) = Sum t #

data ProductSym0 (l :: TyFun [a6989586621679389232] a6989586621679389232) #

Instances

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

Methods

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

type Apply [a] a (ProductSym0 a) l # 
type Apply [a] a (ProductSym0 a) l = Product a l

type ProductSym1 (t :: [a6989586621679389232]) = Product t #

data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679389230 [a6989586621679389230] -> Type)) #

Instances

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

Methods

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

type Apply Nat (TyFun a6989586621679389230 [a6989586621679389230] -> Type) (ReplicateSym0 a6989586621679389230) l # 
type Apply Nat (TyFun a6989586621679389230 [a6989586621679389230] -> Type) (ReplicateSym0 a6989586621679389230) l = ReplicateSym1 a6989586621679389230 l

data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679389230 [a6989586621679389230]) #

Instances

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

Methods

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

type Apply a [a] (ReplicateSym1 a l1) l2 # 
type Apply a [a] (ReplicateSym1 a l1) l2 = Replicate a l1 l2

type ReplicateSym2 (t :: Nat) (t :: a6989586621679389230) = Replicate t t #

data TakeSym0 (l :: TyFun Nat (TyFun [a6989586621679389246] [a6989586621679389246] -> Type)) #

Instances

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

Methods

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

type Apply Nat (TyFun [a6989586621679389246] [a6989586621679389246] -> Type) (TakeSym0 a6989586621679389246) l # 
type Apply Nat (TyFun [a6989586621679389246] [a6989586621679389246] -> Type) (TakeSym0 a6989586621679389246) l = TakeSym1 a6989586621679389246 l

data TakeSym1 (l :: Nat) (l :: TyFun [a6989586621679389246] [a6989586621679389246]) #

Instances

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

Methods

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

type Apply [a] [a] (TakeSym1 a l1) l2 # 
type Apply [a] [a] (TakeSym1 a l1) l2 = Take a l1 l2

type TakeSym2 (t :: Nat) (t :: [a6989586621679389246]) = Take t t #

data DropSym0 (l :: TyFun Nat (TyFun [a6989586621679389245] [a6989586621679389245] -> Type)) #

Instances

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

Methods

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

type Apply Nat (TyFun [a6989586621679389245] [a6989586621679389245] -> Type) (DropSym0 a6989586621679389245) l # 
type Apply Nat (TyFun [a6989586621679389245] [a6989586621679389245] -> Type) (DropSym0 a6989586621679389245) l = DropSym1 a6989586621679389245 l

data DropSym1 (l :: Nat) (l :: TyFun [a6989586621679389245] [a6989586621679389245]) #

Instances

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

Methods

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

type Apply [a] [a] (DropSym1 a l1) l2 # 
type Apply [a] [a] (DropSym1 a l1) l2 = Drop a l1 l2

type DropSym2 (t :: Nat) (t :: [a6989586621679389245]) = Drop t t #

data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679389244] ([a6989586621679389244], [a6989586621679389244]) -> Type)) #

Instances

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

Methods

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

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

data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679389244] ([a6989586621679389244], [a6989586621679389244])) #

Instances

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

Methods

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

type Apply [a] ([a], [a]) (SplitAtSym1 a l1) l2 # 
type Apply [a] ([a], [a]) (SplitAtSym1 a l1) l2 = SplitAt a l1 l2

type SplitAtSym2 (t :: Nat) (t :: [a6989586621679389244]) = SplitAt t t #

data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679389251 Bool -> Type) (TyFun [a6989586621679389251] [a6989586621679389251] -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389251 Bool -> Type) (TyFun [a6989586621679389251] [a6989586621679389251] -> Type) (TakeWhileSym0 a6989586621679389251) l # 
type Apply (TyFun a6989586621679389251 Bool -> Type) (TyFun [a6989586621679389251] [a6989586621679389251] -> Type) (TakeWhileSym0 a6989586621679389251) l = TakeWhileSym1 a6989586621679389251 l

data TakeWhileSym1 (l :: TyFun a6989586621679389251 Bool -> Type) (l :: TyFun [a6989586621679389251] [a6989586621679389251]) #

Instances

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

Methods

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

type Apply [a] [a] (TakeWhileSym1 a l1) l2 # 
type Apply [a] [a] (TakeWhileSym1 a l1) l2 = TakeWhile a l1 l2

type TakeWhileSym2 (t :: TyFun a6989586621679389251 Bool -> Type) (t :: [a6989586621679389251]) = TakeWhile t t #

data DropWhileSym0 (l :: TyFun (TyFun a6989586621679389250 Bool -> Type) (TyFun [a6989586621679389250] [a6989586621679389250] -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389250 Bool -> Type) (TyFun [a6989586621679389250] [a6989586621679389250] -> Type) (DropWhileSym0 a6989586621679389250) l # 
type Apply (TyFun a6989586621679389250 Bool -> Type) (TyFun [a6989586621679389250] [a6989586621679389250] -> Type) (DropWhileSym0 a6989586621679389250) l = DropWhileSym1 a6989586621679389250 l

data DropWhileSym1 (l :: TyFun a6989586621679389250 Bool -> Type) (l :: TyFun [a6989586621679389250] [a6989586621679389250]) #

Instances

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

Methods

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

type Apply [a] [a] (DropWhileSym1 a l1) l2 # 
type Apply [a] [a] (DropWhileSym1 a l1) l2 = DropWhile a l1 l2

type DropWhileSym2 (t :: TyFun a6989586621679389250 Bool -> Type) (t :: [a6989586621679389250]) = DropWhile t t #

data SpanSym0 (l :: TyFun (TyFun a6989586621679389248 Bool -> Type) (TyFun [a6989586621679389248] ([a6989586621679389248], [a6989586621679389248]) -> Type)) #

Instances

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

Methods

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

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

data SpanSym1 (l :: TyFun a6989586621679389248 Bool -> Type) (l :: TyFun [a6989586621679389248] ([a6989586621679389248], [a6989586621679389248])) #

Instances

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

Methods

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

type Apply [a] ([a], [a]) (SpanSym1 a l1) l2 # 
type Apply [a] ([a], [a]) (SpanSym1 a l1) l2 = Span a l1 l2

type SpanSym2 (t :: TyFun a6989586621679389248 Bool -> Type) (t :: [a6989586621679389248]) = Span t t #

data BreakSym0 (l :: TyFun (TyFun a6989586621679389247 Bool -> Type) (TyFun [a6989586621679389247] ([a6989586621679389247], [a6989586621679389247]) -> Type)) #

Instances

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

Methods

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

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

data BreakSym1 (l :: TyFun a6989586621679389247 Bool -> Type) (l :: TyFun [a6989586621679389247] ([a6989586621679389247], [a6989586621679389247])) #

Instances

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

Methods

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

type Apply [a] ([a], [a]) (BreakSym1 a l1) l2 # 
type Apply [a] ([a], [a]) (BreakSym1 a l1) l2 = Break a l1 l2

type BreakSym2 (t :: TyFun a6989586621679389247 Bool -> Type) (t :: [a6989586621679389247]) = Break t t #

data LookupSym0 (l :: TyFun a6989586621679389236 (TyFun [(a6989586621679389236, b6989586621679389237)] (Maybe b6989586621679389237) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679389236 (TyFun [(a6989586621679389236, b6989586621679389237)] (Maybe b6989586621679389237) -> Type) -> *) (LookupSym0 a6989586621679389236 b6989586621679389237) # 

Methods

suppressUnusedWarnings :: Proxy (LookupSym0 a6989586621679389236 b6989586621679389237) t -> () #

type Apply a6989586621679389236 (TyFun [(a6989586621679389236, b6989586621679389237)] (Maybe b6989586621679389237) -> Type) (LookupSym0 a6989586621679389236 b6989586621679389237) l # 
type Apply a6989586621679389236 (TyFun [(a6989586621679389236, b6989586621679389237)] (Maybe b6989586621679389237) -> Type) (LookupSym0 a6989586621679389236 b6989586621679389237) l = LookupSym1 a6989586621679389236 b6989586621679389237 l

data LookupSym1 (l :: a6989586621679389236) (l :: TyFun [(a6989586621679389236, b6989586621679389237)] (Maybe b6989586621679389237)) #

Instances

SuppressUnusedWarnings (a6989586621679389236 -> TyFun [(a6989586621679389236, b6989586621679389237)] (Maybe b6989586621679389237) -> *) (LookupSym1 a6989586621679389236 b6989586621679389237) # 

Methods

suppressUnusedWarnings :: Proxy (LookupSym1 a6989586621679389236 b6989586621679389237) t -> () #

type Apply [(a, b)] (Maybe b) (LookupSym1 a b l1) l2 # 
type Apply [(a, b)] (Maybe b) (LookupSym1 a b l1) l2 = Lookup a b l1 l2

type LookupSym2 (t :: a6989586621679389236) (t :: [(a6989586621679389236, b6989586621679389237)]) = Lookup t t #

data FilterSym0 (l :: TyFun (TyFun a6989586621679389259 Bool -> Type) (TyFun [a6989586621679389259] [a6989586621679389259] -> Type)) #

Instances

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

Methods

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

type Apply (TyFun a6989586621679389259 Bool -> Type) (TyFun [a6989586621679389259] [a6989586621679389259] -> Type) (FilterSym0 a6989586621679389259) l # 
type Apply (TyFun a6989586621679389259 Bool -> Type) (TyFun [a6989586621679389259] [a6989586621679389259] -> Type) (FilterSym0 a6989586621679389259) l = FilterSym1 a6989586621679389259 l

data FilterSym1 (l :: TyFun a6989586621679389259 Bool -> Type) (l :: TyFun [a6989586621679389259] [a6989586621679389259]) #

Instances

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

Methods

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

type Apply [a] [a] (FilterSym1 a l1) l2 # 
type Apply [a] [a] (FilterSym1 a l1) l2 = Filter a l1 l2

type FilterSym2 (t :: TyFun a6989586621679389259 Bool -> Type) (t :: [a6989586621679389259]) = Filter t t #

data (:!!$) (l :: TyFun [a6989586621679389228] (TyFun Nat a6989586621679389228 -> Type)) #

Instances

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

Methods

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

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

data (l :: [a6989586621679389228]) :!!$$ (l :: TyFun Nat a6989586621679389228) #

Instances

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

Methods

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

type Apply Nat a ((:!!$$) a l1) l2 # 
type Apply Nat a ((:!!$$) a l1) l2 = (:!!) a l1 l2

type (:!!$$$) (t :: [a6989586621679389228]) (t :: Nat) = (:!!) t t #