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.List

Contents

Description

Defines promoted functions and datatypes relating to List, including a promoted version of all the definitions in Data.List.

Because many of these definitions are produced by Template Haskell, it is not possible to create proper Haddock documentation. Please look up the corresponding operation in Data.List. Also, please excuse the apparent repeated variable names. This is due to an interaction between Template Haskell and Haddock.

Synopsis

Basic functions

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 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) 

List transformations

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 Reverse (a :: [a]) :: [a] where ... #

Equations

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

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

Equations

Intersperse _z_6989586621679393118 '[] = '[] 
Intersperse sep ((:) x xs) = Apply (Apply (:$) x) (Apply (Apply PrependToAllSym0 sep) xs) 

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

Equations

Intercalate xs xss = Apply ConcatSym0 (Apply (Apply IntersperseSym0 xs) xss) 

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

Equations

Transpose '[] = '[] 
Transpose ((:) '[] xss) = Apply TransposeSym0 xss 
Transpose ((:) ((:) x xs) xss) = Apply (Apply (:$) (Apply (Apply (:$) x) (Apply (Apply MapSym0 HeadSym0) xss))) (Apply TransposeSym0 (Apply (Apply (:$) xs) (Apply (Apply MapSym0 TailSym0) xss))) 

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

Equations

Subsequences xs = Apply (Apply (:$) '[]) (Apply NonEmptySubsequencesSym0 xs) 

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

Equations

Permutations xs0 = Apply (Apply (:$) xs0) (Apply (Apply (Let6989586621679392693PermsSym1 xs0) xs0) '[]) 

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 Foldl' (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ... #

Equations

Foldl' f z0 xs0 = Apply (Apply (Let6989586621679392607LgoSym3 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 Foldl1' (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ... #

Equations

Foldl1' f ((:) x xs) = Apply (Apply (Apply Foldl'Sym0 f) x) xs 
Foldl1' _z_6989586621679392685 '[] = 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 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 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) 

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 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) 

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

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) 

Accumulating maps

type family MapAccumL (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ... #

Equations

MapAccumL _z_6989586621679391981 s '[] = Apply (Apply Tuple2Sym0 s) '[] 
MapAccumL f s ((:) x xs) = Apply (Apply Tuple2Sym0 (Let6989586621679391989S''Sym4 f s x xs)) (Apply (Apply (:$) (Let6989586621679391989YSym4 f s x xs)) (Let6989586621679391989YsSym4 f s x xs)) 

type family MapAccumR (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ... #

Equations

MapAccumR _z_6989586621679391809 s '[] = Apply (Apply Tuple2Sym0 s) '[] 
MapAccumR f s ((:) x xs) = Apply (Apply Tuple2Sym0 (Let6989586621679391817S''Sym4 f s x xs)) (Apply (Apply (:$) (Let6989586621679391817YSym4 f s x xs)) (Let6989586621679391817YsSym4 f s x xs)) 

Infinite lists

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

Equations

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

Unfolding

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

Equations

Unfoldr f b = Case_6989586621679391789 f b (Let6989586621679391781Scrutinee_6989586621679389808Sym2 f b) 

Sublists

Extracting 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 DropWhileEnd (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ... #

Equations

DropWhileEnd p a_6989586621679393189 = Apply (Apply (Apply FoldrSym0 (Apply (Apply Lambda_6989586621679393193Sym0 p) a_6989586621679393189)) '[]) a_6989586621679393189 

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') 

type family StripPrefix (a :: [a]) (a :: [a]) :: Maybe [a] where ... #

Equations

StripPrefix '[] ys = Apply JustSym0 ys 
StripPrefix arg_6989586621679728012 arg_6989586621679728014 = Case_6989586621679728623 arg_6989586621679728012 arg_6989586621679728014 (Apply (Apply Tuple2Sym0 arg_6989586621679728012) arg_6989586621679728014) 

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

Equations

Group xs = Apply (Apply GroupBySym0 (:==$)) xs 

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

Equations

Inits xs = Apply (Apply (:$) '[]) (Case_6989586621679391765 xs xs) 

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

Equations

Tails xs = Apply (Apply (:$) xs) (Case_6989586621679391742 xs xs) 

Predicates

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

Equations

IsPrefixOf '[] '[] = TrueSym0 
IsPrefixOf '[] ((:) _z_6989586621679391721 _z_6989586621679391724) = TrueSym0 
IsPrefixOf ((:) _z_6989586621679391727 _z_6989586621679391730) '[] = FalseSym0 
IsPrefixOf ((:) x xs) ((:) y ys) = Apply (Apply (:&&$) (Apply (Apply (:==$) x) y)) (Apply (Apply IsPrefixOfSym0 xs) ys) 

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

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

Equations

IsInfixOf needle haystack = Apply (Apply Any_Sym0 (Apply IsPrefixOfSym0 needle)) (Apply TailsSym0 haystack) 

Searching lists

Searching by equality

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) 

Searching with a predicate

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

Equations

Find p a_6989586621679390702 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FilterSym0 p)) a_6989586621679390702 

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 Partition (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ... #

Equations

Partition p xs = Apply (Apply (Apply FoldrSym0 (Apply SelectSym0 p)) (Apply (Apply Tuple2Sym0 '[]) '[])) xs 

Indexing lists

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 ElemIndex (a :: a) (a :: [a]) :: Maybe Nat where ... #

Equations

ElemIndex x a_6989586621679391630 = Apply (Apply FindIndexSym0 (Apply (:==$) x)) a_6989586621679391630 

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

Equations

ElemIndices x a_6989586621679391604 = Apply (Apply FindIndicesSym0 (Apply (:==$) x)) a_6989586621679391604 

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

Equations

FindIndex p a_6989586621679391617 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FindIndicesSym0 p)) a_6989586621679391617 

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

Equations

FindIndices p xs = Apply (Apply MapSym0 SndSym0) (Apply (Apply FilterSym0 (Apply (Apply Lambda_6989586621679391572Sym0 p) xs)) (Apply (Apply ZipSym0 xs) (Apply (Apply (Let6989586621679391543BuildListSym2 p xs) (FromInteger 0)) xs))) 

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 Zip4 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [(a, b, c, d)] where ... #

Equations

Zip4 a_6989586621679728577 a_6989586621679728579 a_6989586621679728581 a_6989586621679728583 = Apply (Apply (Apply (Apply (Apply ZipWith4Sym0 Tuple4Sym0) a_6989586621679728577) a_6989586621679728579) a_6989586621679728581) a_6989586621679728583 

type family Zip5 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [(a, b, c, d, e)] where ... #

Equations

Zip5 a_6989586621679728532 a_6989586621679728534 a_6989586621679728536 a_6989586621679728538 a_6989586621679728540 = Apply (Apply (Apply (Apply (Apply (Apply ZipWith5Sym0 Tuple5Sym0) a_6989586621679728532) a_6989586621679728534) a_6989586621679728536) a_6989586621679728538) a_6989586621679728540 

type family Zip6 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [(a, b, c, d, e, f)] where ... #

Equations

Zip6 a_6989586621679728475 a_6989586621679728477 a_6989586621679728479 a_6989586621679728481 a_6989586621679728483 a_6989586621679728485 = Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith6Sym0 Tuple6Sym0) a_6989586621679728475) a_6989586621679728477) a_6989586621679728479) a_6989586621679728481) a_6989586621679728483) a_6989586621679728485 

type family Zip7 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [(a, b, c, d, e, f, g)] where ... #

Equations

Zip7 a_6989586621679728405 a_6989586621679728407 a_6989586621679728409 a_6989586621679728411 a_6989586621679728413 a_6989586621679728415 a_6989586621679728417 = Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 Tuple7Sym0) a_6989586621679728405) a_6989586621679728407) a_6989586621679728409) a_6989586621679728411) a_6989586621679728413) a_6989586621679728415) a_6989586621679728417 

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 ZipWith4 (a :: TyFun a (TyFun b (TyFun c (TyFun d e -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [e] where ... #

Equations

ZipWith4 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) = Apply (Apply (:$) (Apply (Apply (Apply (Apply z a) b) c) d)) (Apply (Apply (Apply (Apply (Apply ZipWith4Sym0 z) as) bs) cs) ds) 
ZipWith4 _z_6989586621679728390 _z_6989586621679728393 _z_6989586621679728396 _z_6989586621679728399 _z_6989586621679728402 = '[] 

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

Equations

ZipWith5 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) = Apply (Apply (:$) (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e)) (Apply (Apply (Apply (Apply (Apply (Apply ZipWith5Sym0 z) as) bs) cs) ds) es) 
ZipWith5 _z_6989586621679728333 _z_6989586621679728336 _z_6989586621679728339 _z_6989586621679728342 _z_6989586621679728345 _z_6989586621679728348 = '[] 

type family ZipWith6 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f g -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [g] where ... #

Equations

ZipWith6 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) ((:) f fs) = Apply (Apply (:$) (Apply (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e) f)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith6Sym0 z) as) bs) cs) ds) es) fs) 
ZipWith6 _z_6989586621679728262 _z_6989586621679728265 _z_6989586621679728268 _z_6989586621679728271 _z_6989586621679728274 _z_6989586621679728277 _z_6989586621679728280 = '[] 

type family ZipWith7 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f (TyFun g h -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [h] where ... #

Equations

ZipWith7 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) ((:) f fs) ((:) g gs) = Apply (Apply (:$) (Apply (Apply (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e) f) g)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 z) as) bs) cs) ds) es) fs) gs) 
ZipWith7 _z_6989586621679728176 _z_6989586621679728179 _z_6989586621679728182 _z_6989586621679728185 _z_6989586621679728188 _z_6989586621679728191 _z_6989586621679728194 _z_6989586621679728197 = '[] 

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 

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

Equations

Unzip4 xs = Apply (Apply (Apply FoldrSym0 (Apply Lambda_6989586621679391196Sym0 xs)) (Apply (Apply (Apply (Apply Tuple4Sym0 '[]) '[]) '[]) '[])) xs 

type family Unzip5 (a :: [(a, b, c, d, e)]) :: ([a], [b], [c], [d], [e]) where ... #

Equations

Unzip5 xs = Apply (Apply (Apply FoldrSym0 (Apply Lambda_6989586621679391160Sym0 xs)) (Apply (Apply (Apply (Apply (Apply Tuple5Sym0 '[]) '[]) '[]) '[]) '[])) xs 

type family Unzip6 (a :: [(a, b, c, d, e, f)]) :: ([a], [b], [c], [d], [e], [f]) where ... #

Equations

Unzip6 xs = Apply (Apply (Apply FoldrSym0 (Apply Lambda_6989586621679391122Sym0 xs)) (Apply (Apply (Apply (Apply (Apply (Apply Tuple6Sym0 '[]) '[]) '[]) '[]) '[]) '[])) xs 

type family Unzip7 (a :: [(a, b, c, d, e, f, g)]) :: ([a], [b], [c], [d], [e], [f], [g]) where ... #

Equations

Unzip7 xs = Apply (Apply (Apply FoldrSym0 (Apply Lambda_6989586621679391082Sym0 xs)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply Tuple7Sym0 '[]) '[]) '[]) '[]) '[]) '[]) '[])) xs 

Special lists

"Set" operations

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

Equations

Nub l = Apply (Apply (Let6989586621679391669Nub'Sym1 l) l) '[] 

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

Equations

Delete a_6989586621679391047 a_6989586621679391049 = Apply (Apply (Apply DeleteBySym0 (:==$)) a_6989586621679391047) a_6989586621679391049 

type family (a :: [a]) :\\ (a :: [a]) :: [a] where ... infix 5 #

Equations

a_6989586621679391062 :\\ a_6989586621679391064 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 DeleteSym0)) a_6989586621679391062) a_6989586621679391064 

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

Equations

Union a_6989586621679391032 a_6989586621679391034 = Apply (Apply (Apply UnionBySym0 (:==$)) a_6989586621679391032) a_6989586621679391034 

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

Equations

Intersect a_6989586621679390835 a_6989586621679390837 = Apply (Apply (Apply IntersectBySym0 (:==$)) a_6989586621679390835) a_6989586621679390837 

Ordered lists

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

Equations

Sort a_6989586621679390938 = Apply (Apply SortBySym0 CompareSym0) a_6989586621679390938 

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

Equations

Insert e ls = Apply (Apply (Apply InsertBySym0 CompareSym0) e) ls 

Generalized functions

The "By" operations

User-supplied equality (replacing an Eq context)

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

Equations

NubBy eq l = Apply (Apply (Let6989586621679389982NubBy'Sym2 eq l) l) '[] 

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

Equations

DeleteBy _z_6989586621679390960 _z_6989586621679390963 '[] = '[] 
DeleteBy eq x ((:) y ys) = Case_6989586621679390989 eq x y ys (Let6989586621679390970Scrutinee_6989586621679389834Sym4 eq x y ys) 

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

Equations

DeleteFirstsBy eq a_6989586621679391007 a_6989586621679391009 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) a_6989586621679391007) a_6989586621679391009 

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

Equations

UnionBy eq xs ys = Apply (Apply (:++$) xs) (Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) (Apply (Apply NubBySym0 eq) ys)) xs) 

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

Equations

GroupBy _z_6989586621679390521 '[] = '[] 
GroupBy eq ((:) x xs) = Apply (Apply (:$) (Apply (Apply (:$) x) (Let6989586621679390527YsSym3 eq x xs))) (Apply (Apply GroupBySym0 eq) (Let6989586621679390527ZsSym3 eq x xs)) 

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

Equations

IntersectBy _z_6989586621679390721 '[] '[] = '[] 
IntersectBy _z_6989586621679390724 '[] ((:) _z_6989586621679390727 _z_6989586621679390730) = '[] 
IntersectBy _z_6989586621679390733 ((:) _z_6989586621679390736 _z_6989586621679390739) '[] = '[] 
IntersectBy eq ((:) wild_6989586621679389854 wild_6989586621679389856) ((:) wild_6989586621679389858 wild_6989586621679389860) = Apply (Apply FilterSym0 (Apply (Apply (Apply (Apply (Apply Lambda_6989586621679390798Sym0 eq) wild_6989586621679389854) wild_6989586621679389856) wild_6989586621679389858) wild_6989586621679389860)) (Let6989586621679390747XsSym5 eq wild_6989586621679389854 wild_6989586621679389856 wild_6989586621679389858 wild_6989586621679389860) 

User-supplied comparison (replacing an Ord context)

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

Equations

SortBy cmp a_6989586621679390934 = Apply (Apply (Apply FoldrSym0 (Apply InsertBySym0 cmp)) '[]) a_6989586621679390934 

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

Equations

InsertBy _z_6989586621679390865 x '[] = Apply (Apply (:$) x) '[] 
InsertBy cmp x ((:) y ys') = Case_6989586621679390911 cmp x y ys' (Let6989586621679390892Scrutinee_6989586621679389836Sym4 cmp x y ys') 

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

Equations

MaximumBy _z_6989586621679392396 '[] = Apply ErrorSym0 "Data.Singletons.List.maximumBy: empty list" 
MaximumBy cmp ((:) wild_6989586621679389840 wild_6989586621679389842) = Apply (Apply Foldl1Sym0 (Let6989586621679392415MaxBySym3 cmp wild_6989586621679389840 wild_6989586621679389842)) (Let6989586621679392402XsSym3 cmp wild_6989586621679389840 wild_6989586621679389842) 

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

Equations

MinimumBy _z_6989586621679392483 '[] = Apply ErrorSym0 "Data.Singletons.List.minimumBy: empty list" 
MinimumBy cmp ((:) wild_6989586621679389846 wild_6989586621679389848) = Apply (Apply Foldl1Sym0 (Let6989586621679392502MinBySym3 cmp wild_6989586621679389846 wild_6989586621679389848)) (Let6989586621679392489XsSym3 cmp wild_6989586621679389846 wild_6989586621679389848) 

The "generic" operations

type family GenericLength (a :: [a]) :: i where ... #

Equations

GenericLength '[] = FromInteger 0 
GenericLength ((:) _z_6989586621679389942 xs) = Apply (Apply (:+$) (FromInteger 1)) (Apply GenericLengthSym0 xs) 

type family GenericTake (a :: i) (a :: [a]) :: [a] where ... #

Equations

GenericTake a_6989586621679728086 a_6989586621679728088 = Apply (Apply TakeSym0 a_6989586621679728086) a_6989586621679728088 

type family GenericDrop (a :: i) (a :: [a]) :: [a] where ... #

Equations

GenericDrop a_6989586621679728071 a_6989586621679728073 = Apply (Apply DropSym0 a_6989586621679728071) a_6989586621679728073 

type family GenericSplitAt (a :: i) (a :: [a]) :: ([a], [a]) where ... #

Equations

GenericSplitAt a_6989586621679728056 a_6989586621679728058 = Apply (Apply SplitAtSym0 a_6989586621679728056) a_6989586621679728058 

type family GenericIndex (a :: [a]) (a :: i) :: a where ... #

Equations

GenericIndex a_6989586621679728041 a_6989586621679728043 = Apply (Apply (:!!$) a_6989586621679728041) a_6989586621679728043 

type family GenericReplicate (a :: i) (a :: a) :: [a] where ... #

Equations

GenericReplicate a_6989586621679728026 a_6989586621679728028 = Apply (Apply ReplicateSym0 a_6989586621679728026) a_6989586621679728028 

Defunctionalization symbols

type NilSym0 = '[] #

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 (:++$$$) (t :: [a6989586621679244031]) (t :: [a6989586621679244031]) = (:++) t 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 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 IntersperseSym0 (l :: TyFun a6989586621679389342 (TyFun [a6989586621679389342] [a6989586621679389342] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679389342 (TyFun [a6989586621679389342] [a6989586621679389342] -> Type) -> *) (IntersperseSym0 a6989586621679389342) # 

Methods

suppressUnusedWarnings :: Proxy (IntersperseSym0 a6989586621679389342) t -> () #

type Apply a6989586621679389342 (TyFun [a6989586621679389342] [a6989586621679389342] -> Type) (IntersperseSym0 a6989586621679389342) l # 
type Apply a6989586621679389342 (TyFun [a6989586621679389342] [a6989586621679389342] -> Type) (IntersperseSym0 a6989586621679389342) l = IntersperseSym1 a6989586621679389342 l

data IntersperseSym1 (l :: a6989586621679389342) (l :: TyFun [a6989586621679389342] [a6989586621679389342]) #

Instances

SuppressUnusedWarnings (a6989586621679389342 -> TyFun [a6989586621679389342] [a6989586621679389342] -> *) (IntersperseSym1 a6989586621679389342) # 

Methods

suppressUnusedWarnings :: Proxy (IntersperseSym1 a6989586621679389342) t -> () #

type Apply [a] [a] (IntersperseSym1 a l1) l2 # 
type Apply [a] [a] (IntersperseSym1 a l1) l2 = Intersperse a l1 l2

type IntersperseSym2 (t :: a6989586621679389342) (t :: [a6989586621679389342]) = Intersperse t t #

data IntercalateSym0 (l :: TyFun [a6989586621679389341] (TyFun [[a6989586621679389341]] [a6989586621679389341] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389341] (TyFun [[a6989586621679389341]] [a6989586621679389341] -> Type) -> *) (IntercalateSym0 a6989586621679389341) # 

Methods

suppressUnusedWarnings :: Proxy (IntercalateSym0 a6989586621679389341) t -> () #

type Apply [a6989586621679389341] (TyFun [[a6989586621679389341]] [a6989586621679389341] -> Type) (IntercalateSym0 a6989586621679389341) l # 
type Apply [a6989586621679389341] (TyFun [[a6989586621679389341]] [a6989586621679389341] -> Type) (IntercalateSym0 a6989586621679389341) l = IntercalateSym1 a6989586621679389341 l

data IntercalateSym1 (l :: [a6989586621679389341]) (l :: TyFun [[a6989586621679389341]] [a6989586621679389341]) #

Instances

SuppressUnusedWarnings ([a6989586621679389341] -> TyFun [[a6989586621679389341]] [a6989586621679389341] -> *) (IntercalateSym1 a6989586621679389341) # 

Methods

suppressUnusedWarnings :: Proxy (IntercalateSym1 a6989586621679389341) t -> () #

type Apply [[a]] [a] (IntercalateSym1 a l1) l2 # 
type Apply [[a]] [a] (IntercalateSym1 a l1) l2 = Intercalate a l1 l2

type IntercalateSym2 (t :: [a6989586621679389341]) (t :: [[a6989586621679389341]]) = Intercalate t t #

data SubsequencesSym0 (l :: TyFun [a6989586621679389340] [[a6989586621679389340]]) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389340] [[a6989586621679389340]] -> *) (SubsequencesSym0 a6989586621679389340) # 

Methods

suppressUnusedWarnings :: Proxy (SubsequencesSym0 a6989586621679389340) t -> () #

type Apply [a] [[a]] (SubsequencesSym0 a) l # 
type Apply [a] [[a]] (SubsequencesSym0 a) l = Subsequences a l

type SubsequencesSym1 (t :: [a6989586621679389340]) = Subsequences t #

data PermutationsSym0 (l :: TyFun [a6989586621679389337] [[a6989586621679389337]]) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389337] [[a6989586621679389337]] -> *) (PermutationsSym0 a6989586621679389337) # 

Methods

suppressUnusedWarnings :: Proxy (PermutationsSym0 a6989586621679389337) t -> () #

type Apply [a] [[a]] (PermutationsSym0 a) l # 
type Apply [a] [[a]] (PermutationsSym0 a) l = Permutations a l

type PermutationsSym1 (t :: [a6989586621679389337]) = Permutations 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 Foldl'Sym0 (l :: TyFun (TyFun b6989586621679389336 (TyFun a6989586621679389335 b6989586621679389336 -> Type) -> Type) (TyFun b6989586621679389336 (TyFun [a6989586621679389335] b6989586621679389336 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679389336 (TyFun a6989586621679389335 b6989586621679389336 -> Type) -> Type) (TyFun b6989586621679389336 (TyFun [a6989586621679389335] b6989586621679389336 -> Type) -> Type) -> *) (Foldl'Sym0 a6989586621679389335 b6989586621679389336) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl'Sym0 a6989586621679389335 b6989586621679389336) t -> () #

type Apply (TyFun b6989586621679389336 (TyFun a6989586621679389335 b6989586621679389336 -> Type) -> Type) (TyFun b6989586621679389336 (TyFun [a6989586621679389335] b6989586621679389336 -> Type) -> Type) (Foldl'Sym0 a6989586621679389335 b6989586621679389336) l # 
type Apply (TyFun b6989586621679389336 (TyFun a6989586621679389335 b6989586621679389336 -> Type) -> Type) (TyFun b6989586621679389336 (TyFun [a6989586621679389335] b6989586621679389336 -> Type) -> Type) (Foldl'Sym0 a6989586621679389335 b6989586621679389336) l = Foldl'Sym1 a6989586621679389335 b6989586621679389336 l

data Foldl'Sym1 (l :: TyFun b6989586621679389336 (TyFun a6989586621679389335 b6989586621679389336 -> Type) -> Type) (l :: TyFun b6989586621679389336 (TyFun [a6989586621679389335] b6989586621679389336 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679389336 (TyFun a6989586621679389335 b6989586621679389336 -> Type) -> Type) -> TyFun b6989586621679389336 (TyFun [a6989586621679389335] b6989586621679389336 -> Type) -> *) (Foldl'Sym1 a6989586621679389335 b6989586621679389336) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl'Sym1 a6989586621679389335 b6989586621679389336) t -> () #

type Apply b6989586621679389336 (TyFun [a6989586621679389335] b6989586621679389336 -> Type) (Foldl'Sym1 a6989586621679389335 b6989586621679389336 l1) l2 # 
type Apply b6989586621679389336 (TyFun [a6989586621679389335] b6989586621679389336 -> Type) (Foldl'Sym1 a6989586621679389335 b6989586621679389336 l1) l2 = Foldl'Sym2 a6989586621679389335 b6989586621679389336 l1 l2

data Foldl'Sym2 (l :: TyFun b6989586621679389336 (TyFun a6989586621679389335 b6989586621679389336 -> Type) -> Type) (l :: b6989586621679389336) (l :: TyFun [a6989586621679389335] b6989586621679389336) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679389336 (TyFun a6989586621679389335 b6989586621679389336 -> Type) -> Type) -> b6989586621679389336 -> TyFun [a6989586621679389335] b6989586621679389336 -> *) (Foldl'Sym2 a6989586621679389335 b6989586621679389336) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl'Sym2 a6989586621679389335 b6989586621679389336) t -> () #

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

type Foldl'Sym3 (t :: TyFun b6989586621679389336 (TyFun a6989586621679389335 b6989586621679389336 -> Type) -> Type) (t :: b6989586621679389336) (t :: [a6989586621679389335]) = 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 Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679389333 (TyFun a6989586621679389333 a6989586621679389333 -> Type) -> Type) (TyFun [a6989586621679389333] a6989586621679389333 -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389333 (TyFun a6989586621679389333 a6989586621679389333 -> Type) -> Type) (TyFun [a6989586621679389333] a6989586621679389333 -> Type) -> *) (Foldl1'Sym0 a6989586621679389333) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl1'Sym0 a6989586621679389333) t -> () #

type Apply (TyFun a6989586621679389333 (TyFun a6989586621679389333 a6989586621679389333 -> Type) -> Type) (TyFun [a6989586621679389333] a6989586621679389333 -> Type) (Foldl1'Sym0 a6989586621679389333) l # 
type Apply (TyFun a6989586621679389333 (TyFun a6989586621679389333 a6989586621679389333 -> Type) -> Type) (TyFun [a6989586621679389333] a6989586621679389333 -> Type) (Foldl1'Sym0 a6989586621679389333) l = Foldl1'Sym1 a6989586621679389333 l

data Foldl1'Sym1 (l :: TyFun a6989586621679389333 (TyFun a6989586621679389333 a6989586621679389333 -> Type) -> Type) (l :: TyFun [a6989586621679389333] a6989586621679389333) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389333 (TyFun a6989586621679389333 a6989586621679389333 -> Type) -> Type) -> TyFun [a6989586621679389333] a6989586621679389333 -> *) (Foldl1'Sym1 a6989586621679389333) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl1'Sym1 a6989586621679389333) t -> () #

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

type Foldl1'Sym2 (t :: TyFun a6989586621679389333 (TyFun a6989586621679389333 a6989586621679389333 -> Type) -> Type) (t :: [a6989586621679389333]) = 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 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 MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679389319 (TyFun x6989586621679389320 (acc6989586621679389319, y6989586621679389321) -> Type) -> Type) (TyFun acc6989586621679389319 (TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321]) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun acc6989586621679389319 (TyFun x6989586621679389320 (acc6989586621679389319, y6989586621679389321) -> Type) -> Type) (TyFun acc6989586621679389319 (TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321]) -> Type) -> Type) -> *) (MapAccumLSym0 x6989586621679389320 acc6989586621679389319 y6989586621679389321) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumLSym0 x6989586621679389320 acc6989586621679389319 y6989586621679389321) t -> () #

type Apply (TyFun acc6989586621679389319 (TyFun x6989586621679389320 (acc6989586621679389319, y6989586621679389321) -> Type) -> Type) (TyFun acc6989586621679389319 (TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321]) -> Type) -> Type) (MapAccumLSym0 x6989586621679389320 acc6989586621679389319 y6989586621679389321) l # 
type Apply (TyFun acc6989586621679389319 (TyFun x6989586621679389320 (acc6989586621679389319, y6989586621679389321) -> Type) -> Type) (TyFun acc6989586621679389319 (TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321]) -> Type) -> Type) (MapAccumLSym0 x6989586621679389320 acc6989586621679389319 y6989586621679389321) l = MapAccumLSym1 x6989586621679389320 acc6989586621679389319 y6989586621679389321 l

data MapAccumLSym1 (l :: TyFun acc6989586621679389319 (TyFun x6989586621679389320 (acc6989586621679389319, y6989586621679389321) -> Type) -> Type) (l :: TyFun acc6989586621679389319 (TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321]) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun acc6989586621679389319 (TyFun x6989586621679389320 (acc6989586621679389319, y6989586621679389321) -> Type) -> Type) -> TyFun acc6989586621679389319 (TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321]) -> Type) -> *) (MapAccumLSym1 x6989586621679389320 acc6989586621679389319 y6989586621679389321) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumLSym1 x6989586621679389320 acc6989586621679389319 y6989586621679389321) t -> () #

type Apply acc6989586621679389319 (TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321]) -> Type) (MapAccumLSym1 x6989586621679389320 acc6989586621679389319 y6989586621679389321 l1) l2 # 
type Apply acc6989586621679389319 (TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321]) -> Type) (MapAccumLSym1 x6989586621679389320 acc6989586621679389319 y6989586621679389321 l1) l2 = MapAccumLSym2 x6989586621679389320 acc6989586621679389319 y6989586621679389321 l1 l2

data MapAccumLSym2 (l :: TyFun acc6989586621679389319 (TyFun x6989586621679389320 (acc6989586621679389319, y6989586621679389321) -> Type) -> Type) (l :: acc6989586621679389319) (l :: TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321])) #

Instances

SuppressUnusedWarnings ((TyFun acc6989586621679389319 (TyFun x6989586621679389320 (acc6989586621679389319, y6989586621679389321) -> Type) -> Type) -> acc6989586621679389319 -> TyFun [x6989586621679389320] (acc6989586621679389319, [y6989586621679389321]) -> *) (MapAccumLSym2 x6989586621679389320 acc6989586621679389319 y6989586621679389321) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumLSym2 x6989586621679389320 acc6989586621679389319 y6989586621679389321) t -> () #

type Apply [x] (acc, [y]) (MapAccumLSym2 x acc y l1 l2) l3 # 
type Apply [x] (acc, [y]) (MapAccumLSym2 x acc y l1 l2) l3 = MapAccumL x acc y l1 l2 l3

type MapAccumLSym3 (t :: TyFun acc6989586621679389319 (TyFun x6989586621679389320 (acc6989586621679389319, y6989586621679389321) -> Type) -> Type) (t :: acc6989586621679389319) (t :: [x6989586621679389320]) = MapAccumL t t t #

data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679389316 (TyFun x6989586621679389317 (acc6989586621679389316, y6989586621679389318) -> Type) -> Type) (TyFun acc6989586621679389316 (TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318]) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun acc6989586621679389316 (TyFun x6989586621679389317 (acc6989586621679389316, y6989586621679389318) -> Type) -> Type) (TyFun acc6989586621679389316 (TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318]) -> Type) -> Type) -> *) (MapAccumRSym0 x6989586621679389317 acc6989586621679389316 y6989586621679389318) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumRSym0 x6989586621679389317 acc6989586621679389316 y6989586621679389318) t -> () #

type Apply (TyFun acc6989586621679389316 (TyFun x6989586621679389317 (acc6989586621679389316, y6989586621679389318) -> Type) -> Type) (TyFun acc6989586621679389316 (TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318]) -> Type) -> Type) (MapAccumRSym0 x6989586621679389317 acc6989586621679389316 y6989586621679389318) l # 
type Apply (TyFun acc6989586621679389316 (TyFun x6989586621679389317 (acc6989586621679389316, y6989586621679389318) -> Type) -> Type) (TyFun acc6989586621679389316 (TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318]) -> Type) -> Type) (MapAccumRSym0 x6989586621679389317 acc6989586621679389316 y6989586621679389318) l = MapAccumRSym1 x6989586621679389317 acc6989586621679389316 y6989586621679389318 l

data MapAccumRSym1 (l :: TyFun acc6989586621679389316 (TyFun x6989586621679389317 (acc6989586621679389316, y6989586621679389318) -> Type) -> Type) (l :: TyFun acc6989586621679389316 (TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318]) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun acc6989586621679389316 (TyFun x6989586621679389317 (acc6989586621679389316, y6989586621679389318) -> Type) -> Type) -> TyFun acc6989586621679389316 (TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318]) -> Type) -> *) (MapAccumRSym1 x6989586621679389317 acc6989586621679389316 y6989586621679389318) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumRSym1 x6989586621679389317 acc6989586621679389316 y6989586621679389318) t -> () #

type Apply acc6989586621679389316 (TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318]) -> Type) (MapAccumRSym1 x6989586621679389317 acc6989586621679389316 y6989586621679389318 l1) l2 # 
type Apply acc6989586621679389316 (TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318]) -> Type) (MapAccumRSym1 x6989586621679389317 acc6989586621679389316 y6989586621679389318 l1) l2 = MapAccumRSym2 x6989586621679389317 acc6989586621679389316 y6989586621679389318 l1 l2

data MapAccumRSym2 (l :: TyFun acc6989586621679389316 (TyFun x6989586621679389317 (acc6989586621679389316, y6989586621679389318) -> Type) -> Type) (l :: acc6989586621679389316) (l :: TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318])) #

Instances

SuppressUnusedWarnings ((TyFun acc6989586621679389316 (TyFun x6989586621679389317 (acc6989586621679389316, y6989586621679389318) -> Type) -> Type) -> acc6989586621679389316 -> TyFun [x6989586621679389317] (acc6989586621679389316, [y6989586621679389318]) -> *) (MapAccumRSym2 x6989586621679389317 acc6989586621679389316 y6989586621679389318) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumRSym2 x6989586621679389317 acc6989586621679389316 y6989586621679389318) t -> () #

type Apply [x] (acc, [y]) (MapAccumRSym2 x acc y l1 l2) l3 # 
type Apply [x] (acc, [y]) (MapAccumRSym2 x acc y l1 l2) l3 = MapAccumR x acc y l1 l2 l3

type MapAccumRSym3 (t :: TyFun acc6989586621679389316 (TyFun x6989586621679389317 (acc6989586621679389316, y6989586621679389318) -> Type) -> Type) (t :: acc6989586621679389316) (t :: [x6989586621679389317]) = MapAccumR t t t #

data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679389314 (Maybe (a6989586621679389315, b6989586621679389314)) -> Type) (TyFun b6989586621679389314 [a6989586621679389315] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679389314 (Maybe (a6989586621679389315, b6989586621679389314)) -> Type) (TyFun b6989586621679389314 [a6989586621679389315] -> Type) -> *) (UnfoldrSym0 b6989586621679389314 a6989586621679389315) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldrSym0 b6989586621679389314 a6989586621679389315) t -> () #

type Apply (TyFun b6989586621679389314 (Maybe (a6989586621679389315, b6989586621679389314)) -> Type) (TyFun b6989586621679389314 [a6989586621679389315] -> Type) (UnfoldrSym0 b6989586621679389314 a6989586621679389315) l # 
type Apply (TyFun b6989586621679389314 (Maybe (a6989586621679389315, b6989586621679389314)) -> Type) (TyFun b6989586621679389314 [a6989586621679389315] -> Type) (UnfoldrSym0 b6989586621679389314 a6989586621679389315) l = UnfoldrSym1 b6989586621679389314 a6989586621679389315 l

data UnfoldrSym1 (l :: TyFun b6989586621679389314 (Maybe (a6989586621679389315, b6989586621679389314)) -> Type) (l :: TyFun b6989586621679389314 [a6989586621679389315]) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679389314 (Maybe (a6989586621679389315, b6989586621679389314)) -> Type) -> TyFun b6989586621679389314 [a6989586621679389315] -> *) (UnfoldrSym1 b6989586621679389314 a6989586621679389315) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldrSym1 b6989586621679389314 a6989586621679389315) t -> () #

type Apply b [a] (UnfoldrSym1 b a l1) l2 # 
type Apply b [a] (UnfoldrSym1 b a l1) l2 = Unfoldr b a l1 l2

type UnfoldrSym2 (t :: TyFun b6989586621679389314 (Maybe (a6989586621679389315, b6989586621679389314)) -> Type) (t :: b6989586621679389314) = Unfoldr t t #

data InitsSym0 (l :: TyFun [a6989586621679389313] [[a6989586621679389313]]) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389313] [[a6989586621679389313]] -> *) (InitsSym0 a6989586621679389313) # 

Methods

suppressUnusedWarnings :: Proxy (InitsSym0 a6989586621679389313) t -> () #

type Apply [a] [[a]] (InitsSym0 a) l # 
type Apply [a] [[a]] (InitsSym0 a) l = Inits a l

type InitsSym1 (t :: [a6989586621679389313]) = Inits t #

data TailsSym0 (l :: TyFun [a6989586621679389312] [[a6989586621679389312]]) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389312] [[a6989586621679389312]] -> *) (TailsSym0 a6989586621679389312) # 

Methods

suppressUnusedWarnings :: Proxy (TailsSym0 a6989586621679389312) t -> () #

type Apply [a] [[a]] (TailsSym0 a) l # 
type Apply [a] [[a]] (TailsSym0 a) l = Tails a l

type TailsSym1 (t :: [a6989586621679389312]) = Tails t #

data IsPrefixOfSym0 (l :: TyFun [a6989586621679389311] (TyFun [a6989586621679389311] Bool -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389311] (TyFun [a6989586621679389311] Bool -> Type) -> *) (IsPrefixOfSym0 a6989586621679389311) # 

Methods

suppressUnusedWarnings :: Proxy (IsPrefixOfSym0 a6989586621679389311) t -> () #

type Apply [a6989586621679389311] (TyFun [a6989586621679389311] Bool -> Type) (IsPrefixOfSym0 a6989586621679389311) l # 
type Apply [a6989586621679389311] (TyFun [a6989586621679389311] Bool -> Type) (IsPrefixOfSym0 a6989586621679389311) l = IsPrefixOfSym1 a6989586621679389311 l

data IsPrefixOfSym1 (l :: [a6989586621679389311]) (l :: TyFun [a6989586621679389311] Bool) #

Instances

SuppressUnusedWarnings ([a6989586621679389311] -> TyFun [a6989586621679389311] Bool -> *) (IsPrefixOfSym1 a6989586621679389311) # 

Methods

suppressUnusedWarnings :: Proxy (IsPrefixOfSym1 a6989586621679389311) t -> () #

type Apply [a] Bool (IsPrefixOfSym1 a l1) l2 # 
type Apply [a] Bool (IsPrefixOfSym1 a l1) l2 = IsPrefixOf a l1 l2

type IsPrefixOfSym2 (t :: [a6989586621679389311]) (t :: [a6989586621679389311]) = IsPrefixOf t t #

data IsSuffixOfSym0 (l :: TyFun [a6989586621679389310] (TyFun [a6989586621679389310] Bool -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389310] (TyFun [a6989586621679389310] Bool -> Type) -> *) (IsSuffixOfSym0 a6989586621679389310) # 

Methods

suppressUnusedWarnings :: Proxy (IsSuffixOfSym0 a6989586621679389310) t -> () #

type Apply [a6989586621679389310] (TyFun [a6989586621679389310] Bool -> Type) (IsSuffixOfSym0 a6989586621679389310) l # 
type Apply [a6989586621679389310] (TyFun [a6989586621679389310] Bool -> Type) (IsSuffixOfSym0 a6989586621679389310) l = IsSuffixOfSym1 a6989586621679389310 l

data IsSuffixOfSym1 (l :: [a6989586621679389310]) (l :: TyFun [a6989586621679389310] Bool) #

Instances

SuppressUnusedWarnings ([a6989586621679389310] -> TyFun [a6989586621679389310] Bool -> *) (IsSuffixOfSym1 a6989586621679389310) # 

Methods

suppressUnusedWarnings :: Proxy (IsSuffixOfSym1 a6989586621679389310) t -> () #

type Apply [a] Bool (IsSuffixOfSym1 a l1) l2 # 
type Apply [a] Bool (IsSuffixOfSym1 a l1) l2 = IsSuffixOf a l1 l2

type IsSuffixOfSym2 (t :: [a6989586621679389310]) (t :: [a6989586621679389310]) = IsSuffixOf t t #

data IsInfixOfSym0 (l :: TyFun [a6989586621679389309] (TyFun [a6989586621679389309] Bool -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389309] (TyFun [a6989586621679389309] Bool -> Type) -> *) (IsInfixOfSym0 a6989586621679389309) # 

Methods

suppressUnusedWarnings :: Proxy (IsInfixOfSym0 a6989586621679389309) t -> () #

type Apply [a6989586621679389309] (TyFun [a6989586621679389309] Bool -> Type) (IsInfixOfSym0 a6989586621679389309) l # 
type Apply [a6989586621679389309] (TyFun [a6989586621679389309] Bool -> Type) (IsInfixOfSym0 a6989586621679389309) l = IsInfixOfSym1 a6989586621679389309 l

data IsInfixOfSym1 (l :: [a6989586621679389309]) (l :: TyFun [a6989586621679389309] Bool) #

Instances

SuppressUnusedWarnings ([a6989586621679389309] -> TyFun [a6989586621679389309] Bool -> *) (IsInfixOfSym1 a6989586621679389309) # 

Methods

suppressUnusedWarnings :: Proxy (IsInfixOfSym1 a6989586621679389309) t -> () #

type Apply [a] Bool (IsInfixOfSym1 a l1) l2 # 
type Apply [a] Bool (IsInfixOfSym1 a l1) l2 = IsInfixOf a l1 l2

type IsInfixOfSym2 (t :: [a6989586621679389309]) (t :: [a6989586621679389309]) = IsInfixOf 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

type ZipWith3Sym4 (t :: TyFun a6989586621679389295 (TyFun b6989586621679389296 (TyFun c6989586621679389297 d6989586621679389298 -> Type) -> Type) -> Type) (t :: [a6989586621679389295]) (t :: [b6989586621679389296]) (t :: [c6989586621679389297]) = ZipWith3 t t t t #

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 Unzip3Sym0 (l :: TyFun [(a6989586621679389290, b6989586621679389291, c6989586621679389292)] ([a6989586621679389290], [b6989586621679389291], [c6989586621679389292])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679389290, b6989586621679389291, c6989586621679389292)] ([a6989586621679389290], [b6989586621679389291], [c6989586621679389292]) -> *) (Unzip3Sym0 a6989586621679389290 b6989586621679389291 c6989586621679389292) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip3Sym0 a6989586621679389290 b6989586621679389291 c6989586621679389292) t -> () #

type Apply [(a, b, c)] ([a], [b], [c]) (Unzip3Sym0 a b c) l # 
type Apply [(a, b, c)] ([a], [b], [c]) (Unzip3Sym0 a b c) l = Unzip3 a b c l

type Unzip3Sym1 (t :: [(a6989586621679389290, b6989586621679389291, c6989586621679389292)]) = Unzip3 t #

data Unzip4Sym0 (l :: TyFun [(a6989586621679389286, b6989586621679389287, c6989586621679389288, d6989586621679389289)] ([a6989586621679389286], [b6989586621679389287], [c6989586621679389288], [d6989586621679389289])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679389286, b6989586621679389287, c6989586621679389288, d6989586621679389289)] ([a6989586621679389286], [b6989586621679389287], [c6989586621679389288], [d6989586621679389289]) -> *) (Unzip4Sym0 a6989586621679389286 b6989586621679389287 c6989586621679389288 d6989586621679389289) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip4Sym0 a6989586621679389286 b6989586621679389287 c6989586621679389288 d6989586621679389289) t -> () #

type Apply [(a, b, c, d)] ([a], [b], [c], [d]) (Unzip4Sym0 a b c d) l # 
type Apply [(a, b, c, d)] ([a], [b], [c], [d]) (Unzip4Sym0 a b c d) l = Unzip4 a b c d l

type Unzip4Sym1 (t :: [(a6989586621679389286, b6989586621679389287, c6989586621679389288, d6989586621679389289)]) = Unzip4 t #

data Unzip5Sym0 (l :: TyFun [(a6989586621679389281, b6989586621679389282, c6989586621679389283, d6989586621679389284, e6989586621679389285)] ([a6989586621679389281], [b6989586621679389282], [c6989586621679389283], [d6989586621679389284], [e6989586621679389285])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679389281, b6989586621679389282, c6989586621679389283, d6989586621679389284, e6989586621679389285)] ([a6989586621679389281], [b6989586621679389282], [c6989586621679389283], [d6989586621679389284], [e6989586621679389285]) -> *) (Unzip5Sym0 a6989586621679389281 b6989586621679389282 c6989586621679389283 d6989586621679389284 e6989586621679389285) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip5Sym0 a6989586621679389281 b6989586621679389282 c6989586621679389283 d6989586621679389284 e6989586621679389285) t -> () #

type Apply [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) (Unzip5Sym0 a b c d e) l # 
type Apply [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) (Unzip5Sym0 a b c d e) l = Unzip5 a b c d e l

type Unzip5Sym1 (t :: [(a6989586621679389281, b6989586621679389282, c6989586621679389283, d6989586621679389284, e6989586621679389285)]) = Unzip5 t #

data Unzip6Sym0 (l :: TyFun [(a6989586621679389275, b6989586621679389276, c6989586621679389277, d6989586621679389278, e6989586621679389279, f6989586621679389280)] ([a6989586621679389275], [b6989586621679389276], [c6989586621679389277], [d6989586621679389278], [e6989586621679389279], [f6989586621679389280])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679389275, b6989586621679389276, c6989586621679389277, d6989586621679389278, e6989586621679389279, f6989586621679389280)] ([a6989586621679389275], [b6989586621679389276], [c6989586621679389277], [d6989586621679389278], [e6989586621679389279], [f6989586621679389280]) -> *) (Unzip6Sym0 a6989586621679389275 b6989586621679389276 c6989586621679389277 d6989586621679389278 e6989586621679389279 f6989586621679389280) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip6Sym0 a6989586621679389275 b6989586621679389276 c6989586621679389277 d6989586621679389278 e6989586621679389279 f6989586621679389280) t -> () #

type Apply [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) (Unzip6Sym0 a b c d e f) l # 
type Apply [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) (Unzip6Sym0 a b c d e f) l = Unzip6 a b c d e f l

type Unzip6Sym1 (t :: [(a6989586621679389275, b6989586621679389276, c6989586621679389277, d6989586621679389278, e6989586621679389279, f6989586621679389280)]) = Unzip6 t #

data Unzip7Sym0 (l :: TyFun [(a6989586621679389268, b6989586621679389269, c6989586621679389270, d6989586621679389271, e6989586621679389272, f6989586621679389273, g6989586621679389274)] ([a6989586621679389268], [b6989586621679389269], [c6989586621679389270], [d6989586621679389271], [e6989586621679389272], [f6989586621679389273], [g6989586621679389274])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679389268, b6989586621679389269, c6989586621679389270, d6989586621679389271, e6989586621679389272, f6989586621679389273, g6989586621679389274)] ([a6989586621679389268], [b6989586621679389269], [c6989586621679389270], [d6989586621679389271], [e6989586621679389272], [f6989586621679389273], [g6989586621679389274]) -> *) (Unzip7Sym0 a6989586621679389268 b6989586621679389269 c6989586621679389270 d6989586621679389271 e6989586621679389272 f6989586621679389273 g6989586621679389274) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip7Sym0 a6989586621679389268 b6989586621679389269 c6989586621679389270 d6989586621679389271 e6989586621679389272 f6989586621679389273 g6989586621679389274) t -> () #

type Apply [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) (Unzip7Sym0 a b c d e f g) l # 
type Apply [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) (Unzip7Sym0 a b c d e f g) l = Unzip7 a b c d e f g l

type Unzip7Sym1 (t :: [(a6989586621679389268, b6989586621679389269, c6989586621679389270, d6989586621679389271, e6989586621679389272, f6989586621679389273, g6989586621679389274)]) = Unzip7 t #

data DeleteSym0 (l :: TyFun a6989586621679389267 (TyFun [a6989586621679389267] [a6989586621679389267] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679389267 (TyFun [a6989586621679389267] [a6989586621679389267] -> Type) -> *) (DeleteSym0 a6989586621679389267) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteSym0 a6989586621679389267) t -> () #

type Apply a6989586621679389267 (TyFun [a6989586621679389267] [a6989586621679389267] -> Type) (DeleteSym0 a6989586621679389267) l # 
type Apply a6989586621679389267 (TyFun [a6989586621679389267] [a6989586621679389267] -> Type) (DeleteSym0 a6989586621679389267) l = DeleteSym1 a6989586621679389267 l

data DeleteSym1 (l :: a6989586621679389267) (l :: TyFun [a6989586621679389267] [a6989586621679389267]) #

Instances

SuppressUnusedWarnings (a6989586621679389267 -> TyFun [a6989586621679389267] [a6989586621679389267] -> *) (DeleteSym1 a6989586621679389267) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteSym1 a6989586621679389267) t -> () #

type Apply [a] [a] (DeleteSym1 a l1) l2 # 
type Apply [a] [a] (DeleteSym1 a l1) l2 = Delete a l1 l2

type DeleteSym2 (t :: a6989586621679389267) (t :: [a6989586621679389267]) = Delete t t #

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy ((:\\$) a6989586621679389266) t -> () #

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

data (l :: [a6989586621679389266]) :\\$$ (l :: TyFun [a6989586621679389266] [a6989586621679389266]) #

Instances

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

Methods

suppressUnusedWarnings :: Proxy ((:\\$$) a6989586621679389266) t -> () #

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

type (:\\$$$) (t :: [a6989586621679389266]) (t :: [a6989586621679389266]) = (:\\) t t #

data IntersectSym0 (l :: TyFun [a6989586621679389253] (TyFun [a6989586621679389253] [a6989586621679389253] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389253] (TyFun [a6989586621679389253] [a6989586621679389253] -> Type) -> *) (IntersectSym0 a6989586621679389253) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectSym0 a6989586621679389253) t -> () #

type Apply [a6989586621679389253] (TyFun [a6989586621679389253] [a6989586621679389253] -> Type) (IntersectSym0 a6989586621679389253) l # 
type Apply [a6989586621679389253] (TyFun [a6989586621679389253] [a6989586621679389253] -> Type) (IntersectSym0 a6989586621679389253) l = IntersectSym1 a6989586621679389253 l

data IntersectSym1 (l :: [a6989586621679389253]) (l :: TyFun [a6989586621679389253] [a6989586621679389253]) #

Instances

SuppressUnusedWarnings ([a6989586621679389253] -> TyFun [a6989586621679389253] [a6989586621679389253] -> *) (IntersectSym1 a6989586621679389253) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectSym1 a6989586621679389253) t -> () #

type Apply [a] [a] (IntersectSym1 a l1) l2 # 
type Apply [a] [a] (IntersectSym1 a l1) l2 = Intersect a l1 l2

type IntersectSym2 (t :: [a6989586621679389253]) (t :: [a6989586621679389253]) = Intersect t t #

data InsertSym0 (l :: TyFun a6989586621679389240 (TyFun [a6989586621679389240] [a6989586621679389240] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679389240 (TyFun [a6989586621679389240] [a6989586621679389240] -> Type) -> *) (InsertSym0 a6989586621679389240) # 

Methods

suppressUnusedWarnings :: Proxy (InsertSym0 a6989586621679389240) t -> () #

type Apply a6989586621679389240 (TyFun [a6989586621679389240] [a6989586621679389240] -> Type) (InsertSym0 a6989586621679389240) l # 
type Apply a6989586621679389240 (TyFun [a6989586621679389240] [a6989586621679389240] -> Type) (InsertSym0 a6989586621679389240) l = InsertSym1 a6989586621679389240 l

data InsertSym1 (l :: a6989586621679389240) (l :: TyFun [a6989586621679389240] [a6989586621679389240]) #

Instances

SuppressUnusedWarnings (a6989586621679389240 -> TyFun [a6989586621679389240] [a6989586621679389240] -> *) (InsertSym1 a6989586621679389240) # 

Methods

suppressUnusedWarnings :: Proxy (InsertSym1 a6989586621679389240) t -> () #

type Apply [a] [a] (InsertSym1 a l1) l2 # 
type Apply [a] [a] (InsertSym1 a l1) l2 = Insert a l1 l2

type InsertSym2 (t :: a6989586621679389240) (t :: [a6989586621679389240]) = Insert t t #

data SortSym0 (l :: TyFun [a6989586621679389239] [a6989586621679389239]) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389239] [a6989586621679389239] -> *) (SortSym0 a6989586621679389239) # 

Methods

suppressUnusedWarnings :: Proxy (SortSym0 a6989586621679389239) t -> () #

type Apply [a] [a] (SortSym0 a) l # 
type Apply [a] [a] (SortSym0 a) l = Sort a l

type SortSym1 (t :: [a6989586621679389239]) = Sort t #

data DeleteBySym0 (l :: TyFun (TyFun a6989586621679389265 (TyFun a6989586621679389265 Bool -> Type) -> Type) (TyFun a6989586621679389265 (TyFun [a6989586621679389265] [a6989586621679389265] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389265 (TyFun a6989586621679389265 Bool -> Type) -> Type) (TyFun a6989586621679389265 (TyFun [a6989586621679389265] [a6989586621679389265] -> Type) -> Type) -> *) (DeleteBySym0 a6989586621679389265) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteBySym0 a6989586621679389265) t -> () #

type Apply (TyFun a6989586621679389265 (TyFun a6989586621679389265 Bool -> Type) -> Type) (TyFun a6989586621679389265 (TyFun [a6989586621679389265] [a6989586621679389265] -> Type) -> Type) (DeleteBySym0 a6989586621679389265) l # 
type Apply (TyFun a6989586621679389265 (TyFun a6989586621679389265 Bool -> Type) -> Type) (TyFun a6989586621679389265 (TyFun [a6989586621679389265] [a6989586621679389265] -> Type) -> Type) (DeleteBySym0 a6989586621679389265) l = DeleteBySym1 a6989586621679389265 l

data DeleteBySym1 (l :: TyFun a6989586621679389265 (TyFun a6989586621679389265 Bool -> Type) -> Type) (l :: TyFun a6989586621679389265 (TyFun [a6989586621679389265] [a6989586621679389265] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389265 (TyFun a6989586621679389265 Bool -> Type) -> Type) -> TyFun a6989586621679389265 (TyFun [a6989586621679389265] [a6989586621679389265] -> Type) -> *) (DeleteBySym1 a6989586621679389265) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteBySym1 a6989586621679389265) t -> () #

type Apply a6989586621679389265 (TyFun [a6989586621679389265] [a6989586621679389265] -> Type) (DeleteBySym1 a6989586621679389265 l1) l2 # 
type Apply a6989586621679389265 (TyFun [a6989586621679389265] [a6989586621679389265] -> Type) (DeleteBySym1 a6989586621679389265 l1) l2 = DeleteBySym2 a6989586621679389265 l1 l2

data DeleteBySym2 (l :: TyFun a6989586621679389265 (TyFun a6989586621679389265 Bool -> Type) -> Type) (l :: a6989586621679389265) (l :: TyFun [a6989586621679389265] [a6989586621679389265]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389265 (TyFun a6989586621679389265 Bool -> Type) -> Type) -> a6989586621679389265 -> TyFun [a6989586621679389265] [a6989586621679389265] -> *) (DeleteBySym2 a6989586621679389265) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteBySym2 a6989586621679389265) t -> () #

type Apply [a] [a] (DeleteBySym2 a l1 l2) l3 # 
type Apply [a] [a] (DeleteBySym2 a l1 l2) l3 = DeleteBy a l1 l2 l3

type DeleteBySym3 (t :: TyFun a6989586621679389265 (TyFun a6989586621679389265 Bool -> Type) -> Type) (t :: a6989586621679389265) (t :: [a6989586621679389265]) = DeleteBy t t t #

data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679389264 (TyFun a6989586621679389264 Bool -> Type) -> Type) (TyFun [a6989586621679389264] (TyFun [a6989586621679389264] [a6989586621679389264] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389264 (TyFun a6989586621679389264 Bool -> Type) -> Type) (TyFun [a6989586621679389264] (TyFun [a6989586621679389264] [a6989586621679389264] -> Type) -> Type) -> *) (DeleteFirstsBySym0 a6989586621679389264) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteFirstsBySym0 a6989586621679389264) t -> () #

type Apply (TyFun a6989586621679389264 (TyFun a6989586621679389264 Bool -> Type) -> Type) (TyFun [a6989586621679389264] (TyFun [a6989586621679389264] [a6989586621679389264] -> Type) -> Type) (DeleteFirstsBySym0 a6989586621679389264) l # 
type Apply (TyFun a6989586621679389264 (TyFun a6989586621679389264 Bool -> Type) -> Type) (TyFun [a6989586621679389264] (TyFun [a6989586621679389264] [a6989586621679389264] -> Type) -> Type) (DeleteFirstsBySym0 a6989586621679389264) l = DeleteFirstsBySym1 a6989586621679389264 l

data DeleteFirstsBySym1 (l :: TyFun a6989586621679389264 (TyFun a6989586621679389264 Bool -> Type) -> Type) (l :: TyFun [a6989586621679389264] (TyFun [a6989586621679389264] [a6989586621679389264] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389264 (TyFun a6989586621679389264 Bool -> Type) -> Type) -> TyFun [a6989586621679389264] (TyFun [a6989586621679389264] [a6989586621679389264] -> Type) -> *) (DeleteFirstsBySym1 a6989586621679389264) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteFirstsBySym1 a6989586621679389264) t -> () #

type Apply [a6989586621679389264] (TyFun [a6989586621679389264] [a6989586621679389264] -> Type) (DeleteFirstsBySym1 a6989586621679389264 l1) l2 # 
type Apply [a6989586621679389264] (TyFun [a6989586621679389264] [a6989586621679389264] -> Type) (DeleteFirstsBySym1 a6989586621679389264 l1) l2 = DeleteFirstsBySym2 a6989586621679389264 l1 l2

data DeleteFirstsBySym2 (l :: TyFun a6989586621679389264 (TyFun a6989586621679389264 Bool -> Type) -> Type) (l :: [a6989586621679389264]) (l :: TyFun [a6989586621679389264] [a6989586621679389264]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389264 (TyFun a6989586621679389264 Bool -> Type) -> Type) -> [a6989586621679389264] -> TyFun [a6989586621679389264] [a6989586621679389264] -> *) (DeleteFirstsBySym2 a6989586621679389264) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteFirstsBySym2 a6989586621679389264) t -> () #

type Apply [a] [a] (DeleteFirstsBySym2 a l1 l2) l3 # 
type Apply [a] [a] (DeleteFirstsBySym2 a l1 l2) l3 = DeleteFirstsBy a l1 l2 l3

type DeleteFirstsBySym3 (t :: TyFun a6989586621679389264 (TyFun a6989586621679389264 Bool -> Type) -> Type) (t :: [a6989586621679389264]) (t :: [a6989586621679389264]) = DeleteFirstsBy t t t #

data IntersectBySym0 (l :: TyFun (TyFun a6989586621679389252 (TyFun a6989586621679389252 Bool -> Type) -> Type) (TyFun [a6989586621679389252] (TyFun [a6989586621679389252] [a6989586621679389252] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389252 (TyFun a6989586621679389252 Bool -> Type) -> Type) (TyFun [a6989586621679389252] (TyFun [a6989586621679389252] [a6989586621679389252] -> Type) -> Type) -> *) (IntersectBySym0 a6989586621679389252) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectBySym0 a6989586621679389252) t -> () #

type Apply (TyFun a6989586621679389252 (TyFun a6989586621679389252 Bool -> Type) -> Type) (TyFun [a6989586621679389252] (TyFun [a6989586621679389252] [a6989586621679389252] -> Type) -> Type) (IntersectBySym0 a6989586621679389252) l # 
type Apply (TyFun a6989586621679389252 (TyFun a6989586621679389252 Bool -> Type) -> Type) (TyFun [a6989586621679389252] (TyFun [a6989586621679389252] [a6989586621679389252] -> Type) -> Type) (IntersectBySym0 a6989586621679389252) l = IntersectBySym1 a6989586621679389252 l

data IntersectBySym1 (l :: TyFun a6989586621679389252 (TyFun a6989586621679389252 Bool -> Type) -> Type) (l :: TyFun [a6989586621679389252] (TyFun [a6989586621679389252] [a6989586621679389252] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389252 (TyFun a6989586621679389252 Bool -> Type) -> Type) -> TyFun [a6989586621679389252] (TyFun [a6989586621679389252] [a6989586621679389252] -> Type) -> *) (IntersectBySym1 a6989586621679389252) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectBySym1 a6989586621679389252) t -> () #

type Apply [a6989586621679389252] (TyFun [a6989586621679389252] [a6989586621679389252] -> Type) (IntersectBySym1 a6989586621679389252 l1) l2 # 
type Apply [a6989586621679389252] (TyFun [a6989586621679389252] [a6989586621679389252] -> Type) (IntersectBySym1 a6989586621679389252 l1) l2 = IntersectBySym2 a6989586621679389252 l1 l2

data IntersectBySym2 (l :: TyFun a6989586621679389252 (TyFun a6989586621679389252 Bool -> Type) -> Type) (l :: [a6989586621679389252]) (l :: TyFun [a6989586621679389252] [a6989586621679389252]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389252 (TyFun a6989586621679389252 Bool -> Type) -> Type) -> [a6989586621679389252] -> TyFun [a6989586621679389252] [a6989586621679389252] -> *) (IntersectBySym2 a6989586621679389252) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectBySym2 a6989586621679389252) t -> () #

type Apply [a] [a] (IntersectBySym2 a l1 l2) l3 # 
type Apply [a] [a] (IntersectBySym2 a l1 l2) l3 = IntersectBy a l1 l2 l3

data SortBySym0 (l :: TyFun (TyFun a6989586621679389263 (TyFun a6989586621679389263 Ordering -> Type) -> Type) (TyFun [a6989586621679389263] [a6989586621679389263] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389263 (TyFun a6989586621679389263 Ordering -> Type) -> Type) (TyFun [a6989586621679389263] [a6989586621679389263] -> Type) -> *) (SortBySym0 a6989586621679389263) # 

Methods

suppressUnusedWarnings :: Proxy (SortBySym0 a6989586621679389263) t -> () #

type Apply (TyFun a6989586621679389263 (TyFun a6989586621679389263 Ordering -> Type) -> Type) (TyFun [a6989586621679389263] [a6989586621679389263] -> Type) (SortBySym0 a6989586621679389263) l # 
type Apply (TyFun a6989586621679389263 (TyFun a6989586621679389263 Ordering -> Type) -> Type) (TyFun [a6989586621679389263] [a6989586621679389263] -> Type) (SortBySym0 a6989586621679389263) l = SortBySym1 a6989586621679389263 l

data SortBySym1 (l :: TyFun a6989586621679389263 (TyFun a6989586621679389263 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679389263] [a6989586621679389263]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389263 (TyFun a6989586621679389263 Ordering -> Type) -> Type) -> TyFun [a6989586621679389263] [a6989586621679389263] -> *) (SortBySym1 a6989586621679389263) # 

Methods

suppressUnusedWarnings :: Proxy (SortBySym1 a6989586621679389263) t -> () #

type Apply [a] [a] (SortBySym1 a l1) l2 # 
type Apply [a] [a] (SortBySym1 a l1) l2 = SortBy a l1 l2

type SortBySym2 (t :: TyFun a6989586621679389263 (TyFun a6989586621679389263 Ordering -> Type) -> Type) (t :: [a6989586621679389263]) = SortBy t t #

data InsertBySym0 (l :: TyFun (TyFun a6989586621679389262 (TyFun a6989586621679389262 Ordering -> Type) -> Type) (TyFun a6989586621679389262 (TyFun [a6989586621679389262] [a6989586621679389262] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389262 (TyFun a6989586621679389262 Ordering -> Type) -> Type) (TyFun a6989586621679389262 (TyFun [a6989586621679389262] [a6989586621679389262] -> Type) -> Type) -> *) (InsertBySym0 a6989586621679389262) # 

Methods

suppressUnusedWarnings :: Proxy (InsertBySym0 a6989586621679389262) t -> () #

type Apply (TyFun a6989586621679389262 (TyFun a6989586621679389262 Ordering -> Type) -> Type) (TyFun a6989586621679389262 (TyFun [a6989586621679389262] [a6989586621679389262] -> Type) -> Type) (InsertBySym0 a6989586621679389262) l # 
type Apply (TyFun a6989586621679389262 (TyFun a6989586621679389262 Ordering -> Type) -> Type) (TyFun a6989586621679389262 (TyFun [a6989586621679389262] [a6989586621679389262] -> Type) -> Type) (InsertBySym0 a6989586621679389262) l = InsertBySym1 a6989586621679389262 l

data InsertBySym1 (l :: TyFun a6989586621679389262 (TyFun a6989586621679389262 Ordering -> Type) -> Type) (l :: TyFun a6989586621679389262 (TyFun [a6989586621679389262] [a6989586621679389262] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389262 (TyFun a6989586621679389262 Ordering -> Type) -> Type) -> TyFun a6989586621679389262 (TyFun [a6989586621679389262] [a6989586621679389262] -> Type) -> *) (InsertBySym1 a6989586621679389262) # 

Methods

suppressUnusedWarnings :: Proxy (InsertBySym1 a6989586621679389262) t -> () #

type Apply a6989586621679389262 (TyFun [a6989586621679389262] [a6989586621679389262] -> Type) (InsertBySym1 a6989586621679389262 l1) l2 # 
type Apply a6989586621679389262 (TyFun [a6989586621679389262] [a6989586621679389262] -> Type) (InsertBySym1 a6989586621679389262 l1) l2 = InsertBySym2 a6989586621679389262 l1 l2

data InsertBySym2 (l :: TyFun a6989586621679389262 (TyFun a6989586621679389262 Ordering -> Type) -> Type) (l :: a6989586621679389262) (l :: TyFun [a6989586621679389262] [a6989586621679389262]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389262 (TyFun a6989586621679389262 Ordering -> Type) -> Type) -> a6989586621679389262 -> TyFun [a6989586621679389262] [a6989586621679389262] -> *) (InsertBySym2 a6989586621679389262) # 

Methods

suppressUnusedWarnings :: Proxy (InsertBySym2 a6989586621679389262) t -> () #

type Apply [a] [a] (InsertBySym2 a l1 l2) l3 # 
type Apply [a] [a] (InsertBySym2 a l1 l2) l3 = InsertBy a l1 l2 l3

type InsertBySym3 (t :: TyFun a6989586621679389262 (TyFun a6989586621679389262 Ordering -> Type) -> Type) (t :: a6989586621679389262) (t :: [a6989586621679389262]) = InsertBy t 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 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 TransposeSym0 (l :: TyFun [[a6989586621679389229]] [[a6989586621679389229]]) #

Instances

SuppressUnusedWarnings (TyFun [[a6989586621679389229]] [[a6989586621679389229]] -> *) (TransposeSym0 a6989586621679389229) # 

Methods

suppressUnusedWarnings :: Proxy (TransposeSym0 a6989586621679389229) t -> () #

type Apply [[a]] [[a]] (TransposeSym0 a) l # 
type Apply [[a]] [[a]] (TransposeSym0 a) l = Transpose a l

type TransposeSym1 (t :: [[a6989586621679389229]]) = Transpose 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 DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679389249 Bool -> Type) (TyFun [a6989586621679389249] [a6989586621679389249] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389249 Bool -> Type) (TyFun [a6989586621679389249] [a6989586621679389249] -> Type) -> *) (DropWhileEndSym0 a6989586621679389249) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileEndSym0 a6989586621679389249) t -> () #

type Apply (TyFun a6989586621679389249 Bool -> Type) (TyFun [a6989586621679389249] [a6989586621679389249] -> Type) (DropWhileEndSym0 a6989586621679389249) l # 
type Apply (TyFun a6989586621679389249 Bool -> Type) (TyFun [a6989586621679389249] [a6989586621679389249] -> Type) (DropWhileEndSym0 a6989586621679389249) l = DropWhileEndSym1 a6989586621679389249 l

data DropWhileEndSym1 (l :: TyFun a6989586621679389249 Bool -> Type) (l :: TyFun [a6989586621679389249] [a6989586621679389249]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389249 Bool -> Type) -> TyFun [a6989586621679389249] [a6989586621679389249] -> *) (DropWhileEndSym1 a6989586621679389249) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileEndSym1 a6989586621679389249) t -> () #

type Apply [a] [a] (DropWhileEndSym1 a l1) l2 # 
type Apply [a] [a] (DropWhileEndSym1 a l1) l2 = DropWhileEnd a l1 l2

type DropWhileEndSym2 (t :: TyFun a6989586621679389249 Bool -> Type) (t :: [a6989586621679389249]) = DropWhileEnd 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 StripPrefixSym0 (l :: TyFun [a6989586621679727944] (TyFun [a6989586621679727944] (Maybe [a6989586621679727944]) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679727944] (TyFun [a6989586621679727944] (Maybe [a6989586621679727944]) -> Type) -> *) (StripPrefixSym0 a6989586621679727944) # 

Methods

suppressUnusedWarnings :: Proxy (StripPrefixSym0 a6989586621679727944) t -> () #

type Apply [a6989586621679727944] (TyFun [a6989586621679727944] (Maybe [a6989586621679727944]) -> Type) (StripPrefixSym0 a6989586621679727944) l # 
type Apply [a6989586621679727944] (TyFun [a6989586621679727944] (Maybe [a6989586621679727944]) -> Type) (StripPrefixSym0 a6989586621679727944) l = StripPrefixSym1 a6989586621679727944 l

data StripPrefixSym1 (l :: [a6989586621679727944]) (l :: TyFun [a6989586621679727944] (Maybe [a6989586621679727944])) #

Instances

SuppressUnusedWarnings ([a6989586621679727944] -> TyFun [a6989586621679727944] (Maybe [a6989586621679727944]) -> *) (StripPrefixSym1 a6989586621679727944) # 

Methods

suppressUnusedWarnings :: Proxy (StripPrefixSym1 a6989586621679727944) t -> () #

type Apply [a] (Maybe [a]) (StripPrefixSym1 a l1) l2 # 
type Apply [a] (Maybe [a]) (StripPrefixSym1 a l1) l2 = StripPrefix a l1 l2

type StripPrefixSym2 (t :: [a6989586621679727944]) (t :: [a6989586621679727944]) = StripPrefix t t #

data MaximumSym0 (l :: TyFun [a6989586621679389242] a6989586621679389242) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389242] a6989586621679389242 -> *) (MaximumSym0 a6989586621679389242) # 

Methods

suppressUnusedWarnings :: Proxy (MaximumSym0 a6989586621679389242) t -> () #

type Apply [a] a (MaximumSym0 a) l # 
type Apply [a] a (MaximumSym0 a) l = Maximum a l

type MaximumSym1 (t :: [a6989586621679389242]) = Maximum t #

data MinimumSym0 (l :: TyFun [a6989586621679389241] a6989586621679389241) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389241] a6989586621679389241 -> *) (MinimumSym0 a6989586621679389241) # 

Methods

suppressUnusedWarnings :: Proxy (MinimumSym0 a6989586621679389241) t -> () #

type Apply [a] a (MinimumSym0 a) l # 
type Apply [a] a (MinimumSym0 a) l = Minimum a l

type MinimumSym1 (t :: [a6989586621679389241]) = Minimum t #

data GroupSym0 (l :: TyFun [a6989586621679389243] [[a6989586621679389243]]) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389243] [[a6989586621679389243]] -> *) (GroupSym0 a6989586621679389243) # 

Methods

suppressUnusedWarnings :: Proxy (GroupSym0 a6989586621679389243) t -> () #

type Apply [a] [[a]] (GroupSym0 a) l # 
type Apply [a] [[a]] (GroupSym0 a) l = Group a l

type GroupSym1 (t :: [a6989586621679389243]) = Group t #

data GroupBySym0 (l :: TyFun (TyFun a6989586621679389238 (TyFun a6989586621679389238 Bool -> Type) -> Type) (TyFun [a6989586621679389238] [[a6989586621679389238]] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389238 (TyFun a6989586621679389238 Bool -> Type) -> Type) (TyFun [a6989586621679389238] [[a6989586621679389238]] -> Type) -> *) (GroupBySym0 a6989586621679389238) # 

Methods

suppressUnusedWarnings :: Proxy (GroupBySym0 a6989586621679389238) t -> () #

type Apply (TyFun a6989586621679389238 (TyFun a6989586621679389238 Bool -> Type) -> Type) (TyFun [a6989586621679389238] [[a6989586621679389238]] -> Type) (GroupBySym0 a6989586621679389238) l # 
type Apply (TyFun a6989586621679389238 (TyFun a6989586621679389238 Bool -> Type) -> Type) (TyFun [a6989586621679389238] [[a6989586621679389238]] -> Type) (GroupBySym0 a6989586621679389238) l = GroupBySym1 a6989586621679389238 l

data GroupBySym1 (l :: TyFun a6989586621679389238 (TyFun a6989586621679389238 Bool -> Type) -> Type) (l :: TyFun [a6989586621679389238] [[a6989586621679389238]]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389238 (TyFun a6989586621679389238 Bool -> Type) -> Type) -> TyFun [a6989586621679389238] [[a6989586621679389238]] -> *) (GroupBySym1 a6989586621679389238) # 

Methods

suppressUnusedWarnings :: Proxy (GroupBySym1 a6989586621679389238) t -> () #

type Apply [a] [[a]] (GroupBySym1 a l1) l2 # 
type Apply [a] [[a]] (GroupBySym1 a l1) l2 = GroupBy a l1 l2

type GroupBySym2 (t :: TyFun a6989586621679389238 (TyFun a6989586621679389238 Bool -> Type) -> Type) (t :: [a6989586621679389238]) = GroupBy 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 FindSym0 (l :: TyFun (TyFun a6989586621679389258 Bool -> Type) (TyFun [a6989586621679389258] (Maybe a6989586621679389258) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389258 Bool -> Type) (TyFun [a6989586621679389258] (Maybe a6989586621679389258) -> Type) -> *) (FindSym0 a6989586621679389258) # 

Methods

suppressUnusedWarnings :: Proxy (FindSym0 a6989586621679389258) t -> () #

type Apply (TyFun a6989586621679389258 Bool -> Type) (TyFun [a6989586621679389258] (Maybe a6989586621679389258) -> Type) (FindSym0 a6989586621679389258) l # 
type Apply (TyFun a6989586621679389258 Bool -> Type) (TyFun [a6989586621679389258] (Maybe a6989586621679389258) -> Type) (FindSym0 a6989586621679389258) l = FindSym1 a6989586621679389258 l

data FindSym1 (l :: TyFun a6989586621679389258 Bool -> Type) (l :: TyFun [a6989586621679389258] (Maybe a6989586621679389258)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389258 Bool -> Type) -> TyFun [a6989586621679389258] (Maybe a6989586621679389258) -> *) (FindSym1 a6989586621679389258) # 

Methods

suppressUnusedWarnings :: Proxy (FindSym1 a6989586621679389258) t -> () #

type Apply [a] (Maybe a) (FindSym1 a l1) l2 # 
type Apply [a] (Maybe a) (FindSym1 a l1) l2 = Find a l1 l2

type FindSym2 (t :: TyFun a6989586621679389258 Bool -> Type) (t :: [a6989586621679389258]) = Find 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 PartitionSym0 (l :: TyFun (TyFun a6989586621679389235 Bool -> Type) (TyFun [a6989586621679389235] ([a6989586621679389235], [a6989586621679389235]) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389235 Bool -> Type) (TyFun [a6989586621679389235] ([a6989586621679389235], [a6989586621679389235]) -> Type) -> *) (PartitionSym0 a6989586621679389235) # 

Methods

suppressUnusedWarnings :: Proxy (PartitionSym0 a6989586621679389235) t -> () #

type Apply (TyFun a6989586621679389235 Bool -> Type) (TyFun [a6989586621679389235] ([a6989586621679389235], [a6989586621679389235]) -> Type) (PartitionSym0 a6989586621679389235) l # 
type Apply (TyFun a6989586621679389235 Bool -> Type) (TyFun [a6989586621679389235] ([a6989586621679389235], [a6989586621679389235]) -> Type) (PartitionSym0 a6989586621679389235) l = PartitionSym1 a6989586621679389235 l

data PartitionSym1 (l :: TyFun a6989586621679389235 Bool -> Type) (l :: TyFun [a6989586621679389235] ([a6989586621679389235], [a6989586621679389235])) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389235 Bool -> Type) -> TyFun [a6989586621679389235] ([a6989586621679389235], [a6989586621679389235]) -> *) (PartitionSym1 a6989586621679389235) # 

Methods

suppressUnusedWarnings :: Proxy (PartitionSym1 a6989586621679389235) t -> () #

type Apply [a] ([a], [a]) (PartitionSym1 a l1) l2 # 
type Apply [a] ([a], [a]) (PartitionSym1 a l1) l2 = Partition a l1 l2

type PartitionSym2 (t :: TyFun a6989586621679389235 Bool -> Type) (t :: [a6989586621679389235]) = Partition 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 #

data ElemIndexSym0 (l :: TyFun a6989586621679389257 (TyFun [a6989586621679389257] (Maybe Nat) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679389257 (TyFun [a6989586621679389257] (Maybe Nat) -> Type) -> *) (ElemIndexSym0 a6989586621679389257) # 

Methods

suppressUnusedWarnings :: Proxy (ElemIndexSym0 a6989586621679389257) t -> () #

type Apply a6989586621679389257 (TyFun [a6989586621679389257] (Maybe Nat) -> Type) (ElemIndexSym0 a6989586621679389257) l # 
type Apply a6989586621679389257 (TyFun [a6989586621679389257] (Maybe Nat) -> Type) (ElemIndexSym0 a6989586621679389257) l = ElemIndexSym1 a6989586621679389257 l

data ElemIndexSym1 (l :: a6989586621679389257) (l :: TyFun [a6989586621679389257] (Maybe Nat)) #

Instances

SuppressUnusedWarnings (a6989586621679389257 -> TyFun [a6989586621679389257] (Maybe Nat) -> *) (ElemIndexSym1 a6989586621679389257) # 

Methods

suppressUnusedWarnings :: Proxy (ElemIndexSym1 a6989586621679389257) t -> () #

type Apply [a] (Maybe Nat) (ElemIndexSym1 a l1) l2 # 
type Apply [a] (Maybe Nat) (ElemIndexSym1 a l1) l2 = ElemIndex a l1 l2

type ElemIndexSym2 (t :: a6989586621679389257) (t :: [a6989586621679389257]) = ElemIndex t t #

data ElemIndicesSym0 (l :: TyFun a6989586621679389256 (TyFun [a6989586621679389256] [Nat] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679389256 (TyFun [a6989586621679389256] [Nat] -> Type) -> *) (ElemIndicesSym0 a6989586621679389256) # 

Methods

suppressUnusedWarnings :: Proxy (ElemIndicesSym0 a6989586621679389256) t -> () #

type Apply a6989586621679389256 (TyFun [a6989586621679389256] [Nat] -> Type) (ElemIndicesSym0 a6989586621679389256) l # 
type Apply a6989586621679389256 (TyFun [a6989586621679389256] [Nat] -> Type) (ElemIndicesSym0 a6989586621679389256) l = ElemIndicesSym1 a6989586621679389256 l

data ElemIndicesSym1 (l :: a6989586621679389256) (l :: TyFun [a6989586621679389256] [Nat]) #

Instances

SuppressUnusedWarnings (a6989586621679389256 -> TyFun [a6989586621679389256] [Nat] -> *) (ElemIndicesSym1 a6989586621679389256) # 

Methods

suppressUnusedWarnings :: Proxy (ElemIndicesSym1 a6989586621679389256) t -> () #

type Apply [a] [Nat] (ElemIndicesSym1 a l1) l2 # 
type Apply [a] [Nat] (ElemIndicesSym1 a l1) l2 = ElemIndices a l1 l2

type ElemIndicesSym2 (t :: a6989586621679389256) (t :: [a6989586621679389256]) = ElemIndices t t #

data FindIndexSym0 (l :: TyFun (TyFun a6989586621679389255 Bool -> Type) (TyFun [a6989586621679389255] (Maybe Nat) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389255 Bool -> Type) (TyFun [a6989586621679389255] (Maybe Nat) -> Type) -> *) (FindIndexSym0 a6989586621679389255) # 

Methods

suppressUnusedWarnings :: Proxy (FindIndexSym0 a6989586621679389255) t -> () #

type Apply (TyFun a6989586621679389255 Bool -> Type) (TyFun [a6989586621679389255] (Maybe Nat) -> Type) (FindIndexSym0 a6989586621679389255) l # 
type Apply (TyFun a6989586621679389255 Bool -> Type) (TyFun [a6989586621679389255] (Maybe Nat) -> Type) (FindIndexSym0 a6989586621679389255) l = FindIndexSym1 a6989586621679389255 l

data FindIndexSym1 (l :: TyFun a6989586621679389255 Bool -> Type) (l :: TyFun [a6989586621679389255] (Maybe Nat)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389255 Bool -> Type) -> TyFun [a6989586621679389255] (Maybe Nat) -> *) (FindIndexSym1 a6989586621679389255) # 

Methods

suppressUnusedWarnings :: Proxy (FindIndexSym1 a6989586621679389255) t -> () #

type Apply [a] (Maybe Nat) (FindIndexSym1 a l1) l2 # 
type Apply [a] (Maybe Nat) (FindIndexSym1 a l1) l2 = FindIndex a l1 l2

type FindIndexSym2 (t :: TyFun a6989586621679389255 Bool -> Type) (t :: [a6989586621679389255]) = FindIndex t t #

data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679389254 Bool -> Type) (TyFun [a6989586621679389254] [Nat] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389254 Bool -> Type) (TyFun [a6989586621679389254] [Nat] -> Type) -> *) (FindIndicesSym0 a6989586621679389254) # 

Methods

suppressUnusedWarnings :: Proxy (FindIndicesSym0 a6989586621679389254) t -> () #

type Apply (TyFun a6989586621679389254 Bool -> Type) (TyFun [a6989586621679389254] [Nat] -> Type) (FindIndicesSym0 a6989586621679389254) l # 
type Apply (TyFun a6989586621679389254 Bool -> Type) (TyFun [a6989586621679389254] [Nat] -> Type) (FindIndicesSym0 a6989586621679389254) l = FindIndicesSym1 a6989586621679389254 l

data FindIndicesSym1 (l :: TyFun a6989586621679389254 Bool -> Type) (l :: TyFun [a6989586621679389254] [Nat]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389254 Bool -> Type) -> TyFun [a6989586621679389254] [Nat] -> *) (FindIndicesSym1 a6989586621679389254) # 

Methods

suppressUnusedWarnings :: Proxy (FindIndicesSym1 a6989586621679389254) t -> () #

type Apply [a] [Nat] (FindIndicesSym1 a l1) l2 # 
type Apply [a] [Nat] (FindIndicesSym1 a l1) l2 = FindIndices a l1 l2

type FindIndicesSym2 (t :: TyFun a6989586621679389254 Bool -> Type) (t :: [a6989586621679389254]) = FindIndices t t #

data Zip4Sym0 (l :: TyFun [a6989586621679727940] (TyFun [b6989586621679727941] (TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679727940] (TyFun [b6989586621679727941] (TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) -> Type) -> Type) -> *) (Zip4Sym0 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) # 

Methods

suppressUnusedWarnings :: Proxy (Zip4Sym0 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) t -> () #

type Apply [a6989586621679727940] (TyFun [b6989586621679727941] (TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) -> Type) -> Type) (Zip4Sym0 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) l # 
type Apply [a6989586621679727940] (TyFun [b6989586621679727941] (TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) -> Type) -> Type) (Zip4Sym0 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) l = Zip4Sym1 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943 l

data Zip4Sym1 (l :: [a6989586621679727940]) (l :: TyFun [b6989586621679727941] (TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727940] -> TyFun [b6989586621679727941] (TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) -> Type) -> *) (Zip4Sym1 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) # 

Methods

suppressUnusedWarnings :: Proxy (Zip4Sym1 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) t -> () #

type Apply [b6989586621679727941] (TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) -> Type) (Zip4Sym1 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943 l1) l2 # 
type Apply [b6989586621679727941] (TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) -> Type) (Zip4Sym1 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943 l1) l2 = Zip4Sym2 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943 l1 l2

data Zip4Sym2 (l :: [a6989586621679727940]) (l :: [b6989586621679727941]) (l :: TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727940] -> [b6989586621679727941] -> TyFun [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) -> *) (Zip4Sym2 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) # 

Methods

suppressUnusedWarnings :: Proxy (Zip4Sym2 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) t -> () #

type Apply [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) (Zip4Sym2 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943 l1 l2) l3 # 
type Apply [c6989586621679727942] (TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> Type) (Zip4Sym2 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943 l1 l2) l3 = Zip4Sym3 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943 l1 l2 l3

data Zip4Sym3 (l :: [a6989586621679727940]) (l :: [b6989586621679727941]) (l :: [c6989586621679727942]) (l :: TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)]) #

Instances

SuppressUnusedWarnings ([a6989586621679727940] -> [b6989586621679727941] -> [c6989586621679727942] -> TyFun [d6989586621679727943] [(a6989586621679727940, b6989586621679727941, c6989586621679727942, d6989586621679727943)] -> *) (Zip4Sym3 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) # 

Methods

suppressUnusedWarnings :: Proxy (Zip4Sym3 a6989586621679727940 b6989586621679727941 c6989586621679727942 d6989586621679727943) t -> () #

type Apply [d] [(a, b, c, d)] (Zip4Sym3 a b c d l1 l2 l3) l4 # 
type Apply [d] [(a, b, c, d)] (Zip4Sym3 a b c d l1 l2 l3) l4 = Zip4 a b c d l1 l2 l3 l4

type Zip4Sym4 (t :: [a6989586621679727940]) (t :: [b6989586621679727941]) (t :: [c6989586621679727942]) (t :: [d6989586621679727943]) = Zip4 t t t t #

data Zip5Sym0 (l :: TyFun [a6989586621679727935] (TyFun [b6989586621679727936] (TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679727935] (TyFun [b6989586621679727936] (TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip5Sym0 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym0 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) t -> () #

type Apply [a6989586621679727935] (TyFun [b6989586621679727936] (TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) -> Type) -> Type) (Zip5Sym0 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) l # 
type Apply [a6989586621679727935] (TyFun [b6989586621679727936] (TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) -> Type) -> Type) (Zip5Sym0 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) l = Zip5Sym1 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l

data Zip5Sym1 (l :: [a6989586621679727935]) (l :: TyFun [b6989586621679727936] (TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727935] -> TyFun [b6989586621679727936] (TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) -> Type) -> *) (Zip5Sym1 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym1 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) t -> () #

type Apply [b6989586621679727936] (TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) -> Type) (Zip5Sym1 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l1) l2 # 
type Apply [b6989586621679727936] (TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) -> Type) (Zip5Sym1 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l1) l2 = Zip5Sym2 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l1 l2

data Zip5Sym2 (l :: [a6989586621679727935]) (l :: [b6989586621679727936]) (l :: TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727935] -> [b6989586621679727936] -> TyFun [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) -> *) (Zip5Sym2 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym2 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) t -> () #

type Apply [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) (Zip5Sym2 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l1 l2) l3 # 
type Apply [c6989586621679727937] (TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> Type) (Zip5Sym2 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l1 l2) l3 = Zip5Sym3 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l1 l2 l3

data Zip5Sym3 (l :: [a6989586621679727935]) (l :: [b6989586621679727936]) (l :: [c6989586621679727937]) (l :: TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727935] -> [b6989586621679727936] -> [c6989586621679727937] -> TyFun [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) -> *) (Zip5Sym3 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym3 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) t -> () #

type Apply [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) (Zip5Sym3 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l1 l2 l3) l4 # 
type Apply [d6989586621679727938] (TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> Type) (Zip5Sym3 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l1 l2 l3) l4 = Zip5Sym4 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939 l1 l2 l3 l4

data Zip5Sym4 (l :: [a6989586621679727935]) (l :: [b6989586621679727936]) (l :: [c6989586621679727937]) (l :: [d6989586621679727938]) (l :: TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)]) #

Instances

SuppressUnusedWarnings ([a6989586621679727935] -> [b6989586621679727936] -> [c6989586621679727937] -> [d6989586621679727938] -> TyFun [e6989586621679727939] [(a6989586621679727935, b6989586621679727936, c6989586621679727937, d6989586621679727938, e6989586621679727939)] -> *) (Zip5Sym4 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym4 a6989586621679727935 b6989586621679727936 c6989586621679727937 d6989586621679727938 e6989586621679727939) t -> () #

type Apply [e] [(a, b, c, d, e)] (Zip5Sym4 a b c d e l1 l2 l3 l4) l5 # 
type Apply [e] [(a, b, c, d, e)] (Zip5Sym4 a b c d e l1 l2 l3 l4) l5 = Zip5 a b c d e l1 l2 l3 l4 l5

type Zip5Sym5 (t :: [a6989586621679727935]) (t :: [b6989586621679727936]) (t :: [c6989586621679727937]) (t :: [d6989586621679727938]) (t :: [e6989586621679727939]) = Zip5 t t t t t #

data Zip6Sym0 (l :: TyFun [a6989586621679727929] (TyFun [b6989586621679727930] (TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679727929] (TyFun [b6989586621679727930] (TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip6Sym0 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym0 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) t -> () #

type Apply [a6989586621679727929] (TyFun [b6989586621679727930] (TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) -> Type) -> Type) (Zip6Sym0 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) l # 
type Apply [a6989586621679727929] (TyFun [b6989586621679727930] (TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) -> Type) -> Type) (Zip6Sym0 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) l = Zip6Sym1 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l

data Zip6Sym1 (l :: [a6989586621679727929]) (l :: TyFun [b6989586621679727930] (TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727929] -> TyFun [b6989586621679727930] (TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip6Sym1 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym1 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) t -> () #

type Apply [b6989586621679727930] (TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) -> Type) (Zip6Sym1 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1) l2 # 
type Apply [b6989586621679727930] (TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) -> Type) (Zip6Sym1 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1) l2 = Zip6Sym2 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2

data Zip6Sym2 (l :: [a6989586621679727929]) (l :: [b6989586621679727930]) (l :: TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727929] -> [b6989586621679727930] -> TyFun [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) -> *) (Zip6Sym2 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym2 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) t -> () #

type Apply [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) (Zip6Sym2 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2) l3 # 
type Apply [c6989586621679727931] (TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> Type) (Zip6Sym2 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2) l3 = Zip6Sym3 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2 l3

data Zip6Sym3 (l :: [a6989586621679727929]) (l :: [b6989586621679727930]) (l :: [c6989586621679727931]) (l :: TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727929] -> [b6989586621679727930] -> [c6989586621679727931] -> TyFun [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) -> *) (Zip6Sym3 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym3 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) t -> () #

type Apply [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) (Zip6Sym3 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2 l3) l4 # 
type Apply [d6989586621679727932] (TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> Type) (Zip6Sym3 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2 l3) l4 = Zip6Sym4 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2 l3 l4

data Zip6Sym4 (l :: [a6989586621679727929]) (l :: [b6989586621679727930]) (l :: [c6989586621679727931]) (l :: [d6989586621679727932]) (l :: TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727929] -> [b6989586621679727930] -> [c6989586621679727931] -> [d6989586621679727932] -> TyFun [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) -> *) (Zip6Sym4 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym4 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) t -> () #

type Apply [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) (Zip6Sym4 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2 l3 l4) l5 # 
type Apply [e6989586621679727933] (TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> Type) (Zip6Sym4 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2 l3 l4) l5 = Zip6Sym5 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934 l1 l2 l3 l4 l5

data Zip6Sym5 (l :: [a6989586621679727929]) (l :: [b6989586621679727930]) (l :: [c6989586621679727931]) (l :: [d6989586621679727932]) (l :: [e6989586621679727933]) (l :: TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)]) #

Instances

SuppressUnusedWarnings ([a6989586621679727929] -> [b6989586621679727930] -> [c6989586621679727931] -> [d6989586621679727932] -> [e6989586621679727933] -> TyFun [f6989586621679727934] [(a6989586621679727929, b6989586621679727930, c6989586621679727931, d6989586621679727932, e6989586621679727933, f6989586621679727934)] -> *) (Zip6Sym5 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym5 a6989586621679727929 b6989586621679727930 c6989586621679727931 d6989586621679727932 e6989586621679727933 f6989586621679727934) t -> () #

type Apply [f] [(a, b, c, d, e, f)] (Zip6Sym5 a b c d e f l1 l2 l3 l4 l5) l6 # 
type Apply [f] [(a, b, c, d, e, f)] (Zip6Sym5 a b c d e f l1 l2 l3 l4 l5) l6 = Zip6 a b c d e f l1 l2 l3 l4 l5 l6

type Zip6Sym6 (t :: [a6989586621679727929]) (t :: [b6989586621679727930]) (t :: [c6989586621679727931]) (t :: [d6989586621679727932]) (t :: [e6989586621679727933]) (t :: [f6989586621679727934]) = Zip6 t t t t t t #

data Zip7Sym0 (l :: TyFun [a6989586621679727922] (TyFun [b6989586621679727923] (TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679727922] (TyFun [b6989586621679727923] (TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym0 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym0 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) t -> () #

type Apply [a6989586621679727922] (TyFun [b6989586621679727923] (TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (Zip7Sym0 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) l # 
type Apply [a6989586621679727922] (TyFun [b6989586621679727923] (TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (Zip7Sym0 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) l = Zip7Sym1 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l

data Zip7Sym1 (l :: [a6989586621679727922]) (l :: TyFun [b6989586621679727923] (TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727922] -> TyFun [b6989586621679727923] (TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym1 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym1 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) t -> () #

type Apply [b6989586621679727923] (TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) -> Type) (Zip7Sym1 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1) l2 # 
type Apply [b6989586621679727923] (TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) -> Type) (Zip7Sym1 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1) l2 = Zip7Sym2 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2

data Zip7Sym2 (l :: [a6989586621679727922]) (l :: [b6989586621679727923]) (l :: TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727922] -> [b6989586621679727923] -> TyFun [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym2 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym2 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) t -> () #

type Apply [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) (Zip7Sym2 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2) l3 # 
type Apply [c6989586621679727924] (TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> Type) (Zip7Sym2 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2) l3 = Zip7Sym3 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3

data Zip7Sym3 (l :: [a6989586621679727922]) (l :: [b6989586621679727923]) (l :: [c6989586621679727924]) (l :: TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727922] -> [b6989586621679727923] -> [c6989586621679727924] -> TyFun [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) -> *) (Zip7Sym3 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym3 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) t -> () #

type Apply [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) (Zip7Sym3 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3) l4 # 
type Apply [d6989586621679727925] (TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> Type) (Zip7Sym3 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3) l4 = Zip7Sym4 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3 l4

data Zip7Sym4 (l :: [a6989586621679727922]) (l :: [b6989586621679727923]) (l :: [c6989586621679727924]) (l :: [d6989586621679727925]) (l :: TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727922] -> [b6989586621679727923] -> [c6989586621679727924] -> [d6989586621679727925] -> TyFun [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) -> *) (Zip7Sym4 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym4 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) t -> () #

type Apply [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) (Zip7Sym4 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3 l4) l5 # 
type Apply [e6989586621679727926] (TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> Type) (Zip7Sym4 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3 l4) l5 = Zip7Sym5 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3 l4 l5

data Zip7Sym5 (l :: [a6989586621679727922]) (l :: [b6989586621679727923]) (l :: [c6989586621679727924]) (l :: [d6989586621679727925]) (l :: [e6989586621679727926]) (l :: TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679727922] -> [b6989586621679727923] -> [c6989586621679727924] -> [d6989586621679727925] -> [e6989586621679727926] -> TyFun [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) -> *) (Zip7Sym5 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym5 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) t -> () #

type Apply [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) (Zip7Sym5 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3 l4 l5) l6 # 
type Apply [f6989586621679727927] (TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> Type) (Zip7Sym5 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3 l4 l5) l6 = Zip7Sym6 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928 l1 l2 l3 l4 l5 l6

data Zip7Sym6 (l :: [a6989586621679727922]) (l :: [b6989586621679727923]) (l :: [c6989586621679727924]) (l :: [d6989586621679727925]) (l :: [e6989586621679727926]) (l :: [f6989586621679727927]) (l :: TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)]) #

Instances

SuppressUnusedWarnings ([a6989586621679727922] -> [b6989586621679727923] -> [c6989586621679727924] -> [d6989586621679727925] -> [e6989586621679727926] -> [f6989586621679727927] -> TyFun [g6989586621679727928] [(a6989586621679727922, b6989586621679727923, c6989586621679727924, d6989586621679727925, e6989586621679727926, f6989586621679727927, g6989586621679727928)] -> *) (Zip7Sym6 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym6 a6989586621679727922 b6989586621679727923 c6989586621679727924 d6989586621679727925 e6989586621679727926 f6989586621679727927 g6989586621679727928) t -> () #

type Apply [g] [(a, b, c, d, e, f, g)] (Zip7Sym6 a b c d e f g l1 l2 l3 l4 l5 l6) l7 # 
type Apply [g] [(a, b, c, d, e, f, g)] (Zip7Sym6 a b c d e f g l1 l2 l3 l4 l5 l6) l7 = Zip7 a b c d e f g l1 l2 l3 l4 l5 l6 l7

type Zip7Sym7 (t :: [a6989586621679727922]) (t :: [b6989586621679727923]) (t :: [c6989586621679727924]) (t :: [d6989586621679727925]) (t :: [e6989586621679727926]) (t :: [f6989586621679727927]) (t :: [g6989586621679727928]) = Zip7 t t t t t t t #

data ZipWith4Sym0 (l :: TyFun (TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727917] (TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727917] (TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith4Sym0 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym0 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) t -> () #

type Apply (TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727917] (TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) -> Type) -> Type) (ZipWith4Sym0 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) l # 
type Apply (TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727917] (TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) -> Type) -> Type) (ZipWith4Sym0 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) l = ZipWith4Sym1 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l

data ZipWith4Sym1 (l :: TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679727917] (TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679727917] (TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) -> Type) -> *) (ZipWith4Sym1 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym1 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) t -> () #

type Apply [a6989586621679727917] (TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) -> Type) (ZipWith4Sym1 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l1) l2 # 
type Apply [a6989586621679727917] (TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) -> Type) (ZipWith4Sym1 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l1) l2 = ZipWith4Sym2 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l1 l2

data ZipWith4Sym2 (l :: TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727917]) (l :: TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727917] -> TyFun [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) -> *) (ZipWith4Sym2 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym2 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) t -> () #

type Apply [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) (ZipWith4Sym2 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l1 l2) l3 # 
type Apply [b6989586621679727918] (TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> Type) (ZipWith4Sym2 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l1 l2) l3 = ZipWith4Sym3 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l1 l2 l3

data ZipWith4Sym3 (l :: TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727917]) (l :: [b6989586621679727918]) (l :: TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727917] -> [b6989586621679727918] -> TyFun [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) -> *) (ZipWith4Sym3 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym3 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) t -> () #

type Apply [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) (ZipWith4Sym3 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l1 l2 l3) l4 # 
type Apply [c6989586621679727919] (TyFun [d6989586621679727920] [e6989586621679727921] -> Type) (ZipWith4Sym3 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l1 l2 l3) l4 = ZipWith4Sym4 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921 l1 l2 l3 l4

data ZipWith4Sym4 (l :: TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727917]) (l :: [b6989586621679727918]) (l :: [c6989586621679727919]) (l :: TyFun [d6989586621679727920] [e6989586621679727921]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727917] -> [b6989586621679727918] -> [c6989586621679727919] -> TyFun [d6989586621679727920] [e6989586621679727921] -> *) (ZipWith4Sym4 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym4 a6989586621679727917 b6989586621679727918 c6989586621679727919 d6989586621679727920 e6989586621679727921) t -> () #

type Apply [d] [e] (ZipWith4Sym4 a b c d e l1 l2 l3 l4) l5 # 
type Apply [d] [e] (ZipWith4Sym4 a b c d e l1 l2 l3 l4) l5 = ZipWith4 a b c d e l1 l2 l3 l4 l5

type ZipWith4Sym5 (t :: TyFun a6989586621679727917 (TyFun b6989586621679727918 (TyFun c6989586621679727919 (TyFun d6989586621679727920 e6989586621679727921 -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679727917]) (t :: [b6989586621679727918]) (t :: [c6989586621679727919]) (t :: [d6989586621679727920]) = ZipWith4 t t t t t #

data ZipWith5Sym0 (l :: TyFun (TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727911] (TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727911] (TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith5Sym0 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym0 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) t -> () #

type Apply (TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727911] (TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith5Sym0 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) l # 
type Apply (TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727911] (TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith5Sym0 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) l = ZipWith5Sym1 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l

data ZipWith5Sym1 (l :: TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679727911] (TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679727911] (TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith5Sym1 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym1 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) t -> () #

type Apply [a6989586621679727911] (TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) -> Type) (ZipWith5Sym1 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1) l2 # 
type Apply [a6989586621679727911] (TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) -> Type) (ZipWith5Sym1 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1) l2 = ZipWith5Sym2 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2

data ZipWith5Sym2 (l :: TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727911]) (l :: TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727911] -> TyFun [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) -> *) (ZipWith5Sym2 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym2 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) t -> () #

type Apply [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) (ZipWith5Sym2 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2) l3 # 
type Apply [b6989586621679727912] (TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> Type) (ZipWith5Sym2 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2) l3 = ZipWith5Sym3 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2 l3

data ZipWith5Sym3 (l :: TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727911]) (l :: [b6989586621679727912]) (l :: TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727911] -> [b6989586621679727912] -> TyFun [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) -> *) (ZipWith5Sym3 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym3 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) t -> () #

type Apply [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) (ZipWith5Sym3 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2 l3) l4 # 
type Apply [c6989586621679727913] (TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> Type) (ZipWith5Sym3 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2 l3) l4 = ZipWith5Sym4 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2 l3 l4

data ZipWith5Sym4 (l :: TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727911]) (l :: [b6989586621679727912]) (l :: [c6989586621679727913]) (l :: TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727911] -> [b6989586621679727912] -> [c6989586621679727913] -> TyFun [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) -> *) (ZipWith5Sym4 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym4 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) t -> () #

type Apply [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) (ZipWith5Sym4 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2 l3 l4) l5 # 
type Apply [d6989586621679727914] (TyFun [e6989586621679727915] [f6989586621679727916] -> Type) (ZipWith5Sym4 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2 l3 l4) l5 = ZipWith5Sym5 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916 l1 l2 l3 l4 l5

data ZipWith5Sym5 (l :: TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727911]) (l :: [b6989586621679727912]) (l :: [c6989586621679727913]) (l :: [d6989586621679727914]) (l :: TyFun [e6989586621679727915] [f6989586621679727916]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727911] -> [b6989586621679727912] -> [c6989586621679727913] -> [d6989586621679727914] -> TyFun [e6989586621679727915] [f6989586621679727916] -> *) (ZipWith5Sym5 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym5 a6989586621679727911 b6989586621679727912 c6989586621679727913 d6989586621679727914 e6989586621679727915 f6989586621679727916) t -> () #

type Apply [e] [f] (ZipWith5Sym5 a b c d e f l1 l2 l3 l4 l5) l6 # 
type Apply [e] [f] (ZipWith5Sym5 a b c d e f l1 l2 l3 l4 l5) l6 = ZipWith5 a b c d e f l1 l2 l3 l4 l5 l6

type ZipWith5Sym6 (t :: TyFun a6989586621679727911 (TyFun b6989586621679727912 (TyFun c6989586621679727913 (TyFun d6989586621679727914 (TyFun e6989586621679727915 f6989586621679727916 -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679727911]) (t :: [b6989586621679727912]) (t :: [c6989586621679727913]) (t :: [d6989586621679727914]) (t :: [e6989586621679727915]) = ZipWith5 t t t t t t #

data ZipWith6Sym0 (l :: TyFun (TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727904] (TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727904] (TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym0 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym0 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) t -> () #

type Apply (TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727904] (TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym0 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) l # 
type Apply (TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727904] (TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym0 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) l = ZipWith6Sym1 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l

data ZipWith6Sym1 (l :: TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679727904] (TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679727904] (TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym1 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym1 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) t -> () #

type Apply [a6989586621679727904] (TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym1 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1) l2 # 
type Apply [a6989586621679727904] (TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym1 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1) l2 = ZipWith6Sym2 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2

data ZipWith6Sym2 (l :: TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727904]) (l :: TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727904] -> TyFun [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym2 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym2 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) t -> () #

type Apply [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym2 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2) l3 # 
type Apply [b6989586621679727905] (TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym2 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2) l3 = ZipWith6Sym3 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3

data ZipWith6Sym3 (l :: TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727904]) (l :: [b6989586621679727905]) (l :: TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727904] -> [b6989586621679727905] -> TyFun [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) -> *) (ZipWith6Sym3 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym3 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) t -> () #

type Apply [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) (ZipWith6Sym3 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3) l4 # 
type Apply [c6989586621679727906] (TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> Type) (ZipWith6Sym3 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3) l4 = ZipWith6Sym4 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3 l4

data ZipWith6Sym4 (l :: TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727904]) (l :: [b6989586621679727905]) (l :: [c6989586621679727906]) (l :: TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727904] -> [b6989586621679727905] -> [c6989586621679727906] -> TyFun [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) -> *) (ZipWith6Sym4 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym4 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) t -> () #

type Apply [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) (ZipWith6Sym4 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3 l4) l5 # 
type Apply [d6989586621679727907] (TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> Type) (ZipWith6Sym4 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3 l4) l5 = ZipWith6Sym5 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3 l4 l5

data ZipWith6Sym5 (l :: TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727904]) (l :: [b6989586621679727905]) (l :: [c6989586621679727906]) (l :: [d6989586621679727907]) (l :: TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727904] -> [b6989586621679727905] -> [c6989586621679727906] -> [d6989586621679727907] -> TyFun [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) -> *) (ZipWith6Sym5 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym5 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) t -> () #

type Apply [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) (ZipWith6Sym5 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3 l4 l5) l6 # 
type Apply [e6989586621679727908] (TyFun [f6989586621679727909] [g6989586621679727910] -> Type) (ZipWith6Sym5 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3 l4 l5) l6 = ZipWith6Sym6 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910 l1 l2 l3 l4 l5 l6

data ZipWith6Sym6 (l :: TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727904]) (l :: [b6989586621679727905]) (l :: [c6989586621679727906]) (l :: [d6989586621679727907]) (l :: [e6989586621679727908]) (l :: TyFun [f6989586621679727909] [g6989586621679727910]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727904] -> [b6989586621679727905] -> [c6989586621679727906] -> [d6989586621679727907] -> [e6989586621679727908] -> TyFun [f6989586621679727909] [g6989586621679727910] -> *) (ZipWith6Sym6 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym6 a6989586621679727904 b6989586621679727905 c6989586621679727906 d6989586621679727907 e6989586621679727908 f6989586621679727909 g6989586621679727910) t -> () #

type Apply [f] [g] (ZipWith6Sym6 a b c d e f g l1 l2 l3 l4 l5 l6) l7 # 
type Apply [f] [g] (ZipWith6Sym6 a b c d e f g l1 l2 l3 l4 l5 l6) l7 = ZipWith6 a b c d e f g l1 l2 l3 l4 l5 l6 l7

type ZipWith6Sym7 (t :: TyFun a6989586621679727904 (TyFun b6989586621679727905 (TyFun c6989586621679727906 (TyFun d6989586621679727907 (TyFun e6989586621679727908 (TyFun f6989586621679727909 g6989586621679727910 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679727904]) (t :: [b6989586621679727905]) (t :: [c6989586621679727906]) (t :: [d6989586621679727907]) (t :: [e6989586621679727908]) (t :: [f6989586621679727909]) = ZipWith6 t t t t t t t #

data ZipWith7Sym0 (l :: TyFun (TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727896] (TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727896] (TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym0 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym0 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) t -> () #

type Apply (TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727896] (TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym0 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) l # 
type Apply (TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679727896] (TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym0 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) l = ZipWith7Sym1 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l

data ZipWith7Sym1 (l :: TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679727896] (TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679727896] (TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym1 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym1 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) t -> () #

type Apply [a6989586621679727896] (TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym1 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1) l2 # 
type Apply [a6989586621679727896] (TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym1 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1) l2 = ZipWith7Sym2 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2

data ZipWith7Sym2 (l :: TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727896]) (l :: TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727896] -> TyFun [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym2 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym2 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) t -> () #

type Apply [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym2 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2) l3 # 
type Apply [b6989586621679727897] (TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym2 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2) l3 = ZipWith7Sym3 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3

data ZipWith7Sym3 (l :: TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727896]) (l :: [b6989586621679727897]) (l :: TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727896] -> [b6989586621679727897] -> TyFun [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym3 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym3 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) t -> () #

type Apply [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym3 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3) l4 # 
type Apply [c6989586621679727898] (TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym3 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3) l4 = ZipWith7Sym4 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4

data ZipWith7Sym4 (l :: TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727896]) (l :: [b6989586621679727897]) (l :: [c6989586621679727898]) (l :: TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727896] -> [b6989586621679727897] -> [c6989586621679727898] -> TyFun [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) -> *) (ZipWith7Sym4 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym4 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) t -> () #

type Apply [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) (ZipWith7Sym4 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4) l5 # 
type Apply [d6989586621679727899] (TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> Type) (ZipWith7Sym4 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4) l5 = ZipWith7Sym5 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4 l5

data ZipWith7Sym5 (l :: TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727896]) (l :: [b6989586621679727897]) (l :: [c6989586621679727898]) (l :: [d6989586621679727899]) (l :: TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727896] -> [b6989586621679727897] -> [c6989586621679727898] -> [d6989586621679727899] -> TyFun [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) -> *) (ZipWith7Sym5 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym5 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) t -> () #

type Apply [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) (ZipWith7Sym5 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4 l5) l6 # 
type Apply [e6989586621679727900] (TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> Type) (ZipWith7Sym5 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4 l5) l6 = ZipWith7Sym6 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4 l5 l6

data ZipWith7Sym6 (l :: TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727896]) (l :: [b6989586621679727897]) (l :: [c6989586621679727898]) (l :: [d6989586621679727899]) (l :: [e6989586621679727900]) (l :: TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727896] -> [b6989586621679727897] -> [c6989586621679727898] -> [d6989586621679727899] -> [e6989586621679727900] -> TyFun [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) -> *) (ZipWith7Sym6 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym6 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) t -> () #

type Apply [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) (ZipWith7Sym6 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4 l5 l6) l7 # 
type Apply [f6989586621679727901] (TyFun [g6989586621679727902] [h6989586621679727903] -> Type) (ZipWith7Sym6 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4 l5 l6) l7 = ZipWith7Sym7 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903 l1 l2 l3 l4 l5 l6 l7

data ZipWith7Sym7 (l :: TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679727896]) (l :: [b6989586621679727897]) (l :: [c6989586621679727898]) (l :: [d6989586621679727899]) (l :: [e6989586621679727900]) (l :: [f6989586621679727901]) (l :: TyFun [g6989586621679727902] [h6989586621679727903]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679727896] -> [b6989586621679727897] -> [c6989586621679727898] -> [d6989586621679727899] -> [e6989586621679727900] -> [f6989586621679727901] -> TyFun [g6989586621679727902] [h6989586621679727903] -> *) (ZipWith7Sym7 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym7 a6989586621679727896 b6989586621679727897 c6989586621679727898 d6989586621679727899 e6989586621679727900 f6989586621679727901 g6989586621679727902 h6989586621679727903) t -> () #

type Apply [g] [h] (ZipWith7Sym7 a b c d e f g h l1 l2 l3 l4 l5 l6 l7) l8 # 
type Apply [g] [h] (ZipWith7Sym7 a b c d e f g h l1 l2 l3 l4 l5 l6 l7) l8 = ZipWith7 a b c d e f g h l1 l2 l3 l4 l5 l6 l7 l8

type ZipWith7Sym8 (t :: TyFun a6989586621679727896 (TyFun b6989586621679727897 (TyFun c6989586621679727898 (TyFun d6989586621679727899 (TyFun e6989586621679727900 (TyFun f6989586621679727901 (TyFun g6989586621679727902 h6989586621679727903 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679727896]) (t :: [b6989586621679727897]) (t :: [c6989586621679727898]) (t :: [d6989586621679727899]) (t :: [e6989586621679727900]) (t :: [f6989586621679727901]) (t :: [g6989586621679727902]) = ZipWith7 t t t t t t t t #

data NubSym0 (l :: TyFun [a6989586621679389227] [a6989586621679389227]) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389227] [a6989586621679389227] -> *) (NubSym0 a6989586621679389227) # 

Methods

suppressUnusedWarnings :: Proxy (NubSym0 a6989586621679389227) t -> () #

type Apply [a] [a] (NubSym0 a) l # 
type Apply [a] [a] (NubSym0 a) l = Nub a l

type NubSym1 (t :: [a6989586621679389227]) = Nub t #

data NubBySym0 (l :: TyFun (TyFun a6989586621679389226 (TyFun a6989586621679389226 Bool -> Type) -> Type) (TyFun [a6989586621679389226] [a6989586621679389226] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389226 (TyFun a6989586621679389226 Bool -> Type) -> Type) (TyFun [a6989586621679389226] [a6989586621679389226] -> Type) -> *) (NubBySym0 a6989586621679389226) # 

Methods

suppressUnusedWarnings :: Proxy (NubBySym0 a6989586621679389226) t -> () #

type Apply (TyFun a6989586621679389226 (TyFun a6989586621679389226 Bool -> Type) -> Type) (TyFun [a6989586621679389226] [a6989586621679389226] -> Type) (NubBySym0 a6989586621679389226) l # 
type Apply (TyFun a6989586621679389226 (TyFun a6989586621679389226 Bool -> Type) -> Type) (TyFun [a6989586621679389226] [a6989586621679389226] -> Type) (NubBySym0 a6989586621679389226) l = NubBySym1 a6989586621679389226 l

data NubBySym1 (l :: TyFun a6989586621679389226 (TyFun a6989586621679389226 Bool -> Type) -> Type) (l :: TyFun [a6989586621679389226] [a6989586621679389226]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389226 (TyFun a6989586621679389226 Bool -> Type) -> Type) -> TyFun [a6989586621679389226] [a6989586621679389226] -> *) (NubBySym1 a6989586621679389226) # 

Methods

suppressUnusedWarnings :: Proxy (NubBySym1 a6989586621679389226) t -> () #

type Apply [a] [a] (NubBySym1 a l1) l2 # 
type Apply [a] [a] (NubBySym1 a l1) l2 = NubBy a l1 l2

type NubBySym2 (t :: TyFun a6989586621679389226 (TyFun a6989586621679389226 Bool -> Type) -> Type) (t :: [a6989586621679389226]) = NubBy t t #

data UnionSym0 (l :: TyFun [a6989586621679389223] (TyFun [a6989586621679389223] [a6989586621679389223] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389223] (TyFun [a6989586621679389223] [a6989586621679389223] -> Type) -> *) (UnionSym0 a6989586621679389223) # 

Methods

suppressUnusedWarnings :: Proxy (UnionSym0 a6989586621679389223) t -> () #

type Apply [a6989586621679389223] (TyFun [a6989586621679389223] [a6989586621679389223] -> Type) (UnionSym0 a6989586621679389223) l # 
type Apply [a6989586621679389223] (TyFun [a6989586621679389223] [a6989586621679389223] -> Type) (UnionSym0 a6989586621679389223) l = UnionSym1 a6989586621679389223 l

data UnionSym1 (l :: [a6989586621679389223]) (l :: TyFun [a6989586621679389223] [a6989586621679389223]) #

Instances

SuppressUnusedWarnings ([a6989586621679389223] -> TyFun [a6989586621679389223] [a6989586621679389223] -> *) (UnionSym1 a6989586621679389223) # 

Methods

suppressUnusedWarnings :: Proxy (UnionSym1 a6989586621679389223) t -> () #

type Apply [a] [a] (UnionSym1 a l1) l2 # 
type Apply [a] [a] (UnionSym1 a l1) l2 = Union a l1 l2

type UnionSym2 (t :: [a6989586621679389223]) (t :: [a6989586621679389223]) = Union t t #

data UnionBySym0 (l :: TyFun (TyFun a6989586621679389224 (TyFun a6989586621679389224 Bool -> Type) -> Type) (TyFun [a6989586621679389224] (TyFun [a6989586621679389224] [a6989586621679389224] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679389224 (TyFun a6989586621679389224 Bool -> Type) -> Type) (TyFun [a6989586621679389224] (TyFun [a6989586621679389224] [a6989586621679389224] -> Type) -> Type) -> *) (UnionBySym0 a6989586621679389224) # 

Methods

suppressUnusedWarnings :: Proxy (UnionBySym0 a6989586621679389224) t -> () #

type Apply (TyFun a6989586621679389224 (TyFun a6989586621679389224 Bool -> Type) -> Type) (TyFun [a6989586621679389224] (TyFun [a6989586621679389224] [a6989586621679389224] -> Type) -> Type) (UnionBySym0 a6989586621679389224) l # 
type Apply (TyFun a6989586621679389224 (TyFun a6989586621679389224 Bool -> Type) -> Type) (TyFun [a6989586621679389224] (TyFun [a6989586621679389224] [a6989586621679389224] -> Type) -> Type) (UnionBySym0 a6989586621679389224) l = UnionBySym1 a6989586621679389224 l

data UnionBySym1 (l :: TyFun a6989586621679389224 (TyFun a6989586621679389224 Bool -> Type) -> Type) (l :: TyFun [a6989586621679389224] (TyFun [a6989586621679389224] [a6989586621679389224] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389224 (TyFun a6989586621679389224 Bool -> Type) -> Type) -> TyFun [a6989586621679389224] (TyFun [a6989586621679389224] [a6989586621679389224] -> Type) -> *) (UnionBySym1 a6989586621679389224) # 

Methods

suppressUnusedWarnings :: Proxy (UnionBySym1 a6989586621679389224) t -> () #

type Apply [a6989586621679389224] (TyFun [a6989586621679389224] [a6989586621679389224] -> Type) (UnionBySym1 a6989586621679389224 l1) l2 # 
type Apply [a6989586621679389224] (TyFun [a6989586621679389224] [a6989586621679389224] -> Type) (UnionBySym1 a6989586621679389224 l1) l2 = UnionBySym2 a6989586621679389224 l1 l2

data UnionBySym2 (l :: TyFun a6989586621679389224 (TyFun a6989586621679389224 Bool -> Type) -> Type) (l :: [a6989586621679389224]) (l :: TyFun [a6989586621679389224] [a6989586621679389224]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679389224 (TyFun a6989586621679389224 Bool -> Type) -> Type) -> [a6989586621679389224] -> TyFun [a6989586621679389224] [a6989586621679389224] -> *) (UnionBySym2 a6989586621679389224) # 

Methods

suppressUnusedWarnings :: Proxy (UnionBySym2 a6989586621679389224) t -> () #

type Apply [a] [a] (UnionBySym2 a l1 l2) l3 # 
type Apply [a] [a] (UnionBySym2 a l1 l2) l3 = UnionBy a l1 l2 l3

type UnionBySym3 (t :: TyFun a6989586621679389224 (TyFun a6989586621679389224 Bool -> Type) -> Type) (t :: [a6989586621679389224]) (t :: [a6989586621679389224]) = UnionBy t t t #

data GenericLengthSym0 (l :: TyFun [a6989586621679389222] i6989586621679389221) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679389222] i6989586621679389221 -> *) (GenericLengthSym0 a6989586621679389222 i6989586621679389221) # 

Methods

suppressUnusedWarnings :: Proxy (GenericLengthSym0 a6989586621679389222 i6989586621679389221) t -> () #

type Apply [a] k2 (GenericLengthSym0 a k2) l # 
type Apply [a] k2 (GenericLengthSym0 a k2) l = GenericLength a k2 l

type GenericLengthSym1 (t :: [a6989586621679389222]) = GenericLength t #

data GenericTakeSym0 (l :: TyFun i6989586621679727894 (TyFun [a6989586621679727895] [a6989586621679727895] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun i6989586621679727894 (TyFun [a6989586621679727895] [a6989586621679727895] -> Type) -> *) (GenericTakeSym0 i6989586621679727894 a6989586621679727895) # 

Methods

suppressUnusedWarnings :: Proxy (GenericTakeSym0 i6989586621679727894 a6989586621679727895) t -> () #

type Apply i6989586621679727894 (TyFun [a6989586621679727895] [a6989586621679727895] -> Type) (GenericTakeSym0 i6989586621679727894 a6989586621679727895) l # 
type Apply i6989586621679727894 (TyFun [a6989586621679727895] [a6989586621679727895] -> Type) (GenericTakeSym0 i6989586621679727894 a6989586621679727895) l = GenericTakeSym1 i6989586621679727894 a6989586621679727895 l

data GenericTakeSym1 (l :: i6989586621679727894) (l :: TyFun [a6989586621679727895] [a6989586621679727895]) #

Instances

SuppressUnusedWarnings (i6989586621679727894 -> TyFun [a6989586621679727895] [a6989586621679727895] -> *) (GenericTakeSym1 i6989586621679727894 a6989586621679727895) # 

Methods

suppressUnusedWarnings :: Proxy (GenericTakeSym1 i6989586621679727894 a6989586621679727895) t -> () #

type Apply [a] [a] (GenericTakeSym1 i a l1) l2 # 
type Apply [a] [a] (GenericTakeSym1 i a l1) l2 = GenericTake i a l1 l2

type GenericTakeSym2 (t :: i6989586621679727894) (t :: [a6989586621679727895]) = GenericTake t t #

data GenericDropSym0 (l :: TyFun i6989586621679727892 (TyFun [a6989586621679727893] [a6989586621679727893] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun i6989586621679727892 (TyFun [a6989586621679727893] [a6989586621679727893] -> Type) -> *) (GenericDropSym0 i6989586621679727892 a6989586621679727893) # 

Methods

suppressUnusedWarnings :: Proxy (GenericDropSym0 i6989586621679727892 a6989586621679727893) t -> () #

type Apply i6989586621679727892 (TyFun [a6989586621679727893] [a6989586621679727893] -> Type) (GenericDropSym0 i6989586621679727892 a6989586621679727893) l # 
type Apply i6989586621679727892 (TyFun [a6989586621679727893] [a6989586621679727893] -> Type) (GenericDropSym0 i6989586621679727892 a6989586621679727893) l = GenericDropSym1 i6989586621679727892 a6989586621679727893 l

data GenericDropSym1 (l :: i6989586621679727892) (l :: TyFun [a6989586621679727893] [a6989586621679727893]) #

Instances

SuppressUnusedWarnings (i6989586621679727892 -> TyFun [a6989586621679727893] [a6989586621679727893] -> *) (GenericDropSym1 i6989586621679727892 a6989586621679727893) # 

Methods

suppressUnusedWarnings :: Proxy (GenericDropSym1 i6989586621679727892 a6989586621679727893) t -> () #

type Apply [a] [a] (GenericDropSym1 i a l1) l2 # 
type Apply [a] [a] (GenericDropSym1 i a l1) l2 = GenericDrop i a l1 l2

type GenericDropSym2 (t :: i6989586621679727892) (t :: [a6989586621679727893]) = GenericDrop t t #

data GenericSplitAtSym0 (l :: TyFun i6989586621679727890 (TyFun [a6989586621679727891] ([a6989586621679727891], [a6989586621679727891]) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun i6989586621679727890 (TyFun [a6989586621679727891] ([a6989586621679727891], [a6989586621679727891]) -> Type) -> *) (GenericSplitAtSym0 i6989586621679727890 a6989586621679727891) # 

Methods

suppressUnusedWarnings :: Proxy (GenericSplitAtSym0 i6989586621679727890 a6989586621679727891) t -> () #

type Apply i6989586621679727890 (TyFun [a6989586621679727891] ([a6989586621679727891], [a6989586621679727891]) -> Type) (GenericSplitAtSym0 i6989586621679727890 a6989586621679727891) l # 
type Apply i6989586621679727890 (TyFun [a6989586621679727891] ([a6989586621679727891], [a6989586621679727891]) -> Type) (GenericSplitAtSym0 i6989586621679727890 a6989586621679727891) l = GenericSplitAtSym1 i6989586621679727890 a6989586621679727891 l

data GenericSplitAtSym1 (l :: i6989586621679727890) (l :: TyFun [a6989586621679727891] ([a6989586621679727891], [a6989586621679727891])) #

Instances

SuppressUnusedWarnings (i6989586621679727890 -> TyFun [a6989586621679727891] ([a6989586621679727891], [a6989586621679727891]) -> *) (GenericSplitAtSym1 i6989586621679727890 a6989586621679727891) # 

Methods

suppressUnusedWarnings :: Proxy (GenericSplitAtSym1 i6989586621679727890 a6989586621679727891) t -> () #

type Apply [a] ([a], [a]) (GenericSplitAtSym1 i a l1) l2 # 
type Apply [a] ([a], [a]) (GenericSplitAtSym1 i a l1) l2 = GenericSplitAt i a l1 l2

type GenericSplitAtSym2 (t :: i6989586621679727890) (t :: [a6989586621679727891]) = GenericSplitAt t t #

data GenericIndexSym0 (l :: TyFun [a6989586621679727889] (TyFun i6989586621679727888 a6989586621679727889 -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679727889] (TyFun i6989586621679727888 a6989586621679727889 -> Type) -> *) (GenericIndexSym0 i6989586621679727888 a6989586621679727889) # 

Methods

suppressUnusedWarnings :: Proxy (GenericIndexSym0 i6989586621679727888 a6989586621679727889) t -> () #

type Apply [a6989586621679727889] (TyFun i6989586621679727888 a6989586621679727889 -> Type) (GenericIndexSym0 i6989586621679727888 a6989586621679727889) l # 
type Apply [a6989586621679727889] (TyFun i6989586621679727888 a6989586621679727889 -> Type) (GenericIndexSym0 i6989586621679727888 a6989586621679727889) l = GenericIndexSym1 i6989586621679727888 a6989586621679727889 l

data GenericIndexSym1 (l :: [a6989586621679727889]) (l :: TyFun i6989586621679727888 a6989586621679727889) #

Instances

SuppressUnusedWarnings ([a6989586621679727889] -> TyFun i6989586621679727888 a6989586621679727889 -> *) (GenericIndexSym1 i6989586621679727888 a6989586621679727889) # 

Methods

suppressUnusedWarnings :: Proxy (GenericIndexSym1 i6989586621679727888 a6989586621679727889) t -> () #

type Apply i a (GenericIndexSym1 i a l1) l2 # 
type Apply i a (GenericIndexSym1 i a l1) l2 = GenericIndex i a l1 l2

type GenericIndexSym2 (t :: [a6989586621679727889]) (t :: i6989586621679727888) = GenericIndex t t #

data GenericReplicateSym0 (l :: TyFun i6989586621679727886 (TyFun a6989586621679727887 [a6989586621679727887] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun i6989586621679727886 (TyFun a6989586621679727887 [a6989586621679727887] -> Type) -> *) (GenericReplicateSym0 i6989586621679727886 a6989586621679727887) # 

Methods

suppressUnusedWarnings :: Proxy (GenericReplicateSym0 i6989586621679727886 a6989586621679727887) t -> () #

type Apply i6989586621679727886 (TyFun a6989586621679727887 [a6989586621679727887] -> Type) (GenericReplicateSym0 i6989586621679727886 a6989586621679727887) l # 
type Apply i6989586621679727886 (TyFun a6989586621679727887 [a6989586621679727887] -> Type) (GenericReplicateSym0 i6989586621679727886 a6989586621679727887) l = GenericReplicateSym1 i6989586621679727886 a6989586621679727887 l

data GenericReplicateSym1 (l :: i6989586621679727886) (l :: TyFun a6989586621679727887 [a6989586621679727887]) #

Instances

SuppressUnusedWarnings (i6989586621679727886 -> TyFun a6989586621679727887 [a6989586621679727887] -> *) (GenericReplicateSym1 i6989586621679727886 a6989586621679727887) # 

Methods

suppressUnusedWarnings :: Proxy (GenericReplicateSym1 i6989586621679727886 a6989586621679727887) t -> () #

type Apply a [a] (GenericReplicateSym1 i a l1) l2 # 
type Apply a [a] (GenericReplicateSym1 i a l1) l2 = GenericReplicate i a l1 l2

type GenericReplicateSym2 (t :: i6989586621679727886) (t :: a6989586621679727887) = GenericReplicate t t #