singletons-2.3.1: A framework for generating singleton types

Copyright(C) 2013-2014 Richard Eisenberg Jan Stolarek
LicenseBSD-style (see LICENSE)
MaintainerRichard Eisenberg (rae@cs.brynmawr.edu)
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Data.Singletons.Prelude.List

Contents

Description

Defines functions and datatypes relating to the singleton for '[]', including a singletons version of a few of 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

The singleton for lists

data family Sing (a :: k) #

The singleton kind-indexed data family.

Instances

data Sing Bool # 
data Sing Bool where
data Sing Ordering # 
data Sing * # 
data Sing * where
data Sing Nat # 
data Sing Nat where
data Sing Symbol # 
data Sing Symbol where
data Sing () # 
data Sing () where
data Sing [a] # 
data Sing [a] where
data Sing (Maybe a) # 
data Sing (Maybe a) where
data Sing (NonEmpty a) # 
data Sing (NonEmpty a) where
data Sing (Either a b) # 
data Sing (Either a b) where
data Sing (a, b) # 
data Sing (a, b) where
data Sing ((~>) k1 k2) # 
data Sing ((~>) k1 k2) = SLambda {}
data Sing (a, b, c) # 
data Sing (a, b, c) where
data Sing (a, b, c, d) # 
data Sing (a, b, c, d) where
data Sing (a, b, c, d, e) # 
data Sing (a, b, c, d, e) where
data Sing (a, b, c, d, e, f) # 
data Sing (a, b, c, d, e, f) where
data Sing (a, b, c, d, e, f, g) # 
data Sing (a, b, c, d, e, f, g) where

Though Haddock doesn't show it, the Sing instance above declares constructors

SNil  :: Sing '[]
SCons :: Sing (h :: k) -> Sing (t :: [k]) -> Sing (h ': t)

type SList = (Sing :: [a] -> Type) #

SList is a kind-restricted synonym for Sing: type SList (a :: [k]) = Sing a

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) 

(%:++) :: forall (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply (:++$) t) t :: [a]) infixr 5 #

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

Equations

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

sHead :: forall (t :: [a]). Sing t -> Sing (Apply HeadSym0 t :: a) #

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

Equations

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

sLast :: forall (t :: [a]). Sing t -> Sing (Apply LastSym0 t :: a) #

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

Equations

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

sTail :: forall (t :: [a]). Sing t -> Sing (Apply TailSym0 t :: [a]) #

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

Equations

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

sInit :: forall (t :: [a]). Sing t -> Sing (Apply InitSym0 t :: [a]) #

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

Equations

Null '[] = TrueSym0 
Null ((:) _z_6989586621679476458 _z_6989586621679476461) = FalseSym0 

sNull :: forall (t :: [a]). Sing t -> Sing (Apply NullSym0 t :: Bool) #

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

Equations

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

sLength :: forall (t :: [a]). Sing t -> Sing (Apply LengthSym0 t :: Nat) #

List transformations

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

Equations

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

sMap :: forall (t :: TyFun a b -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MapSym0 t) t :: [b]) #

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

Equations

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

sReverse :: forall (t :: [a]). Sing t -> Sing (Apply ReverseSym0 t :: [a]) #

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

Equations

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

sIntersperse :: forall (t :: a) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply IntersperseSym0 t) t :: [a]) #

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

Equations

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

sIntercalate :: forall (t :: [a]) (t :: [[a]]). Sing t -> Sing t -> Sing (Apply (Apply IntercalateSym0 t) t :: [a]) #

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

sTranspose :: forall (t :: [[a]]). Sing t -> Sing (Apply TransposeSym0 t :: [[a]]) #

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

Equations

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

sSubsequences :: forall (t :: [a]). Sing t -> Sing (Apply SubsequencesSym0 t :: [[a]]) #

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

Equations

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

sPermutations :: forall (t :: [a]). Sing t -> Sing (Apply PermutationsSym0 t :: [[a]]) #

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 (Let6989586621679249613LgoSym3 f z0 xs0) z0) xs0 

sFoldl :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldlSym0 t) t) t :: b) #

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

Equations

Foldl' f z0 xs0 = Apply (Apply (Let6989586621679475891LgoSym3 f z0 xs0) z0) xs0 

sFoldl' :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply Foldl'Sym0 t) t) t :: b) #

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_6989586621679475668 '[] = Apply ErrorSym0 "Data.Singletons.List.foldl1: empty list" 

sFoldl1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldl1Sym0 t) t :: a) #

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_6989586621679475969 '[] = Apply ErrorSym0 "Data.Singletons.List.foldl1': empty list" 

sFoldl1' :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldl1'Sym0 t) t :: a) #

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

Equations

Foldr k z a_6989586621679289955 = Apply (Let6989586621679289960GoSym3 k z a_6989586621679289955) a_6989586621679289955 

sFoldr :: forall (t :: TyFun a (TyFun b b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldrSym0 t) t) t :: b) #

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

Equations

Foldr1 _z_6989586621679475626 '[x] = x 
Foldr1 f ((:) x ((:) wild_6989586621679473083 wild_6989586621679473085)) = Apply (Apply f x) (Apply (Apply Foldr1Sym0 f) (Let6989586621679475634XsSym4 f x wild_6989586621679473083 wild_6989586621679473085)) 
Foldr1 _z_6989586621679475653 '[] = Apply ErrorSym0 "Data.Singletons.List.foldr1: empty list" 

sFoldr1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldr1Sym0 t) t :: a) #

Special folds

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

Equations

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

sConcat :: forall (t :: [[a]]). Sing t -> Sing (Apply ConcatSym0 t :: [a]) #

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

Equations

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

sConcatMap :: forall (t :: TyFun a [b] -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply ConcatMapSym0 t) t :: [b]) #

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

Equations

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

sAnd :: forall (t :: [Bool]). Sing t -> Sing (Apply AndSym0 t :: Bool) #

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

Equations

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

sOr :: forall (t :: [Bool]). Sing t -> Sing (Apply OrSym0 t :: Bool) #

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

Equations

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

sAny_ :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Any_Sym0 t) t :: Bool) #

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

Equations

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

sAll :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply AllSym0 t) t :: Bool) #

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

Equations

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

sSum :: forall (t :: [a]). SNum a => Sing t -> Sing (Apply SumSym0 t :: a) #

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

Equations

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

sProduct :: forall (t :: [a]). SNum a => Sing t -> Sing (Apply ProductSym0 t :: a) #

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

Equations

Maximum '[] = Apply ErrorSym0 "Data.Singletons.List.maximum: empty list" 
Maximum ((:) wild_6989586621679473163 wild_6989586621679473165) = Apply (Apply Foldl1Sym0 MaxSym0) (Let6989586621679475851XsSym2 wild_6989586621679473163 wild_6989586621679473165) 

sMaximum :: forall (t :: [a]). SOrd a => Sing t -> Sing (Apply MaximumSym0 t :: a) #

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

Equations

Minimum '[] = Apply ErrorSym0 "Data.Singletons.List.minimum: empty list" 
Minimum ((:) wild_6989586621679473167 wild_6989586621679473169) = Apply (Apply Foldl1Sym0 MinSym0) (Let6989586621679475865XsSym2 wild_6989586621679473167 wild_6989586621679473169) 

sMinimum :: forall (t :: [a]). SOrd a => Sing t -> Sing (Apply MinimumSym0 t :: a) #

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_6989586621679475550 f q ls ls) 

sScanl :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ScanlSym0 t) t) t :: [b]) #

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

sScanl1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Scanl1Sym0 t) t :: [a]) #

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

Equations

Scanr _z_6989586621679475500 q0 '[] = Apply (Apply (:$) q0) '[] 
Scanr f q0 ((:) x xs) = Case_6989586621679475527 f q0 x xs (Let6989586621679475508Scrutinee_6989586621679473087Sym4 f q0 x xs) 

sScanr :: forall (t :: TyFun a (TyFun b b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ScanrSym0 t) t) t :: [b]) #

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

Equations

Scanr1 _z_6989586621679475431 '[] = '[] 
Scanr1 _z_6989586621679475434 '[x] = Apply (Apply (:$) x) '[] 
Scanr1 f ((:) x ((:) wild_6989586621679473091 wild_6989586621679473093)) = Case_6989586621679475480 f x wild_6989586621679473091 wild_6989586621679473093 (Let6989586621679475461Scrutinee_6989586621679473089Sym4 f x wild_6989586621679473091 wild_6989586621679473093) 

sScanr1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Scanr1Sym0 t) t :: [a]) #

Accumulating maps

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

Equations

MapAccumL _z_6989586621679475265 s '[] = Apply (Apply Tuple2Sym0 s) '[] 
MapAccumL f s ((:) x xs) = Apply (Apply Tuple2Sym0 (Let6989586621679475273S''Sym4 f s x xs)) (Apply (Apply (:$) (Let6989586621679475273YSym4 f s x xs)) (Let6989586621679475273YsSym4 f s x xs)) 

sMapAccumL :: forall (t :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (t :: acc) (t :: [x]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply MapAccumLSym0 t) t) t :: (acc, [y])) #

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

Equations

MapAccumR _z_6989586621679475093 s '[] = Apply (Apply Tuple2Sym0 s) '[] 
MapAccumR f s ((:) x xs) = Apply (Apply Tuple2Sym0 (Let6989586621679475101S''Sym4 f s x xs)) (Apply (Apply (:$) (Let6989586621679475101YSym4 f s x xs)) (Let6989586621679475101YsSym4 f s x xs)) 

sMapAccumR :: forall (t :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (t :: acc) (t :: [x]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply MapAccumRSym0 t) t) t :: (acc, [y])) #

Cyclical lists

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

Equations

Replicate n x = Case_6989586621679473372 n x (Let6989586621679473364Scrutinee_6989586621679473175Sym2 n x) 

sReplicate :: forall (t :: Nat) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply ReplicateSym0 t) t :: [a]) #

Unfolding

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

Equations

Unfoldr f b = Case_6989586621679475073 f b (Let6989586621679475065Scrutinee_6989586621679473095Sym2 f b) 

sUnfoldr :: forall (t :: TyFun b (Maybe (a, b)) -> Type) (t :: b). Sing t -> Sing t -> Sing (Apply (Apply UnfoldrSym0 t) t :: [a]) #

Sublists

Extracting sublists

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

Equations

Take _z_6989586621679473559 '[] = '[] 
Take n ((:) x xs) = Case_6989586621679473578 n x xs (Let6989586621679473565Scrutinee_6989586621679473159Sym3 n x xs) 

sTake :: forall (t :: Nat) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply TakeSym0 t) t :: [a]) #

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

Equations

Drop _z_6989586621679473528 '[] = '[] 
Drop n ((:) x xs) = Case_6989586621679473547 n x xs (Let6989586621679473534Scrutinee_6989586621679473161Sym3 n x xs) 

sDrop :: forall (t :: Nat) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply DropSym0 t) t :: [a]) #

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) 

sSplitAt :: forall (t :: Nat) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SplitAtSym0 t) t :: ([a], [a])) #

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

Equations

TakeWhile _z_6989586621679473926 '[] = '[] 
TakeWhile p ((:) x xs) = Case_6989586621679473945 p x xs (Let6989586621679473932Scrutinee_6989586621679473149Sym3 p x xs) 

sTakeWhile :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply TakeWhileSym0 t) t :: [a]) #

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

Equations

DropWhile _z_6989586621679473882 '[] = '[] 
DropWhile p ((:) x xs') = Case_6989586621679473914 p x xs' (Let6989586621679473901Scrutinee_6989586621679473151Sym3 p x xs') 

sDropWhile :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply DropWhileSym0 t) t :: [a]) #

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

Equations

DropWhileEnd p a_6989586621679476473 = Apply (Apply (Apply FoldrSym0 (Apply (Apply Lambda_6989586621679476477Sym0 p) a_6989586621679476473)) '[]) a_6989586621679476473 

sDropWhileEnd :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply DropWhileEndSym0 t) t :: [a]) #

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

Equations

Span _z_6989586621679473703 '[] = Apply (Apply Tuple2Sym0 Let6989586621679473706XsSym0) Let6989586621679473706XsSym0 
Span p ((:) x xs') = Case_6989586621679473736 p x xs' (Let6989586621679473723Scrutinee_6989586621679473155Sym3 p x xs') 

sSpan :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SpanSym0 t) t :: ([a], [a])) #

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

Equations

Break _z_6989586621679473601 '[] = Apply (Apply Tuple2Sym0 Let6989586621679473604XsSym0) Let6989586621679473604XsSym0 
Break p ((:) x xs') = Case_6989586621679473634 p x xs' (Let6989586621679473621Scrutinee_6989586621679473157Sym3 p x xs') 

sBreak :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply BreakSym0 t) t :: ([a], [a])) #

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

Equations

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

sGroup :: forall (t :: [a]). SEq a => Sing t -> Sing (Apply GroupSym0 t :: [[a]]) #

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

Equations

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

sInits :: forall (t :: [a]). Sing t -> Sing (Apply InitsSym0 t :: [[a]]) #

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

Equations

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

sTails :: forall (t :: [a]). Sing t -> Sing (Apply TailsSym0 t :: [[a]]) #

Predicates

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

Equations

IsPrefixOf '[] '[] = TrueSym0 
IsPrefixOf '[] ((:) _z_6989586621679475005 _z_6989586621679475008) = TrueSym0 
IsPrefixOf ((:) _z_6989586621679475011 _z_6989586621679475014) '[] = FalseSym0 
IsPrefixOf ((:) x xs) ((:) y ys) = Apply (Apply (:&&$) (Apply (Apply (:==$) x) y)) (Apply (Apply IsPrefixOfSym0 xs) ys) 

sIsPrefixOf :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IsPrefixOfSym0 t) t :: Bool) #

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

sIsSuffixOf :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IsSuffixOfSym0 t) t :: Bool) #

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

Equations

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

sIsInfixOf :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IsInfixOfSym0 t) t :: Bool) #

Searching lists

Searching by equality

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

Equations

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

sElem :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply ElemSym0 t) t :: Bool) #

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

Equations

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

sNotElem :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply NotElemSym0 t) t :: Bool) #

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

Equations

Lookup _key '[] = NothingSym0 
Lookup key ((:) '(x, y) xys) = Case_6989586621679473516 key x y xys (Let6989586621679473497Scrutinee_6989586621679473171Sym4 key x y xys) 

sLookup :: forall (t :: a) (t :: [(a, b)]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply LookupSym0 t) t :: Maybe b) #

Searching with a predicate

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

Equations

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

sFind :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FindSym0 t) t :: Maybe a) #

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

Equations

Filter _p '[] = '[] 
Filter p ((:) x xs) = Case_6989586621679473974 p x xs (Let6989586621679473961Scrutinee_6989586621679473137Sym3 p x xs) 

sFilter :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FilterSym0 t) t :: [a]) #

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 

sPartition :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply PartitionSym0 t) t :: ([a], [a])) #

Indexing lists

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

Equations

'[] :!! _z_6989586621679473331 = Apply ErrorSym0 "Data.Singletons.List.!!: index too large" 
((:) x xs) :!! n = Case_6989586621679473350 x xs n (Let6989586621679473337Scrutinee_6989586621679473177Sym3 x xs n) 

(%:!!) :: forall (t :: [a]) (t :: Nat). Sing t -> Sing t -> Sing (Apply (Apply (:!!$) t) t :: a) #

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

Equations

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

sElemIndex :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply ElemIndexSym0 t) t :: Maybe Nat) #

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

Equations

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

sElemIndices :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply ElemIndicesSym0 t) t :: [Nat]) #

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

Equations

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

sFindIndex :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FindIndexSym0 t) t :: Maybe Nat) #

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_6989586621679474856Sym0 p) xs)) (Apply (Apply ZipSym0 xs) (Apply (Apply (Let6989586621679474827BuildListSym2 p xs) (FromInteger 0)) xs))) 

sFindIndices :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FindIndicesSym0 t) t :: [Nat]) #

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_6989586621679474804 _z_6989586621679474807) '[] = '[] 
Zip '[] ((:) _z_6989586621679474810 _z_6989586621679474813) = '[] 

sZip :: forall (t :: [a]) (t :: [b]). Sing t -> Sing t -> Sing (Apply (Apply ZipSym0 t) t :: [(a, b)]) #

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_6989586621679474737 _z_6989586621679474740) = '[] 
Zip3 '[] ((:) _z_6989586621679474743 _z_6989586621679474746) '[] = '[] 
Zip3 '[] ((:) _z_6989586621679474749 _z_6989586621679474752) ((:) _z_6989586621679474755 _z_6989586621679474758) = '[] 
Zip3 ((:) _z_6989586621679474761 _z_6989586621679474764) '[] '[] = '[] 
Zip3 ((:) _z_6989586621679474767 _z_6989586621679474770) '[] ((:) _z_6989586621679474773 _z_6989586621679474776) = '[] 
Zip3 ((:) _z_6989586621679474779 _z_6989586621679474782) ((:) _z_6989586621679474785 _z_6989586621679474788) '[] = '[] 

sZip3 :: forall (t :: [a]) (t :: [b]) (t :: [c]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply Zip3Sym0 t) t) t :: [(a, b, c)]) #

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_6989586621679474695 '[] '[] = '[] 
ZipWith _z_6989586621679474698 ((:) _z_6989586621679474701 _z_6989586621679474704) '[] = '[] 
ZipWith _z_6989586621679474707 '[] ((:) _z_6989586621679474710 _z_6989586621679474713) = '[] 

sZipWith :: forall (t :: TyFun a (TyFun b c -> Type) -> Type) (t :: [a]) (t :: [b]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ZipWithSym0 t) t) t :: [c]) #

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_6989586621679474600 '[] '[] '[] = '[] 
ZipWith3 _z_6989586621679474603 '[] '[] ((:) _z_6989586621679474606 _z_6989586621679474609) = '[] 
ZipWith3 _z_6989586621679474612 '[] ((:) _z_6989586621679474615 _z_6989586621679474618) '[] = '[] 
ZipWith3 _z_6989586621679474621 '[] ((:) _z_6989586621679474624 _z_6989586621679474627) ((:) _z_6989586621679474630 _z_6989586621679474633) = '[] 
ZipWith3 _z_6989586621679474636 ((:) _z_6989586621679474639 _z_6989586621679474642) '[] '[] = '[] 
ZipWith3 _z_6989586621679474645 ((:) _z_6989586621679474648 _z_6989586621679474651) '[] ((:) _z_6989586621679474654 _z_6989586621679474657) = '[] 
ZipWith3 _z_6989586621679474660 ((:) _z_6989586621679474663 _z_6989586621679474666) ((:) _z_6989586621679474669 _z_6989586621679474672) '[] = '[] 

sZipWith3 :: forall (t :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (t :: [a]) (t :: [b]) (t :: [c]). Sing t -> Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (Apply ZipWith3Sym0 t) t) t) t :: [d]) #

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

Equations

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

sUnzip :: forall (t :: [(a, b)]). Sing t -> Sing (Apply UnzipSym0 t :: ([a], [b])) #

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

Equations

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

sUnzip3 :: forall (t :: [(a, b, c)]). Sing t -> Sing (Apply Unzip3Sym0 t :: ([a], [b], [c])) #

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

Equations

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

sUnzip4 :: forall (t :: [(a, b, c, d)]). Sing t -> Sing (Apply Unzip4Sym0 t :: ([a], [b], [c], [d])) #

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

Equations

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

sUnzip5 :: forall (t :: [(a, b, c, d, e)]). Sing t -> Sing (Apply Unzip5Sym0 t :: ([a], [b], [c], [d], [e])) #

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_6989586621679474406Sym0 xs)) (Apply (Apply (Apply (Apply (Apply (Apply Tuple6Sym0 '[]) '[]) '[]) '[]) '[]) '[])) xs 

sUnzip6 :: forall (t :: [(a, b, c, d, e, f)]). Sing t -> Sing (Apply Unzip6Sym0 t :: ([a], [b], [c], [d], [e], [f])) #

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_6989586621679474366Sym0 xs)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply Tuple7Sym0 '[]) '[]) '[]) '[]) '[]) '[]) '[])) xs 

sUnzip7 :: forall (t :: [(a, b, c, d, e, f, g)]). Sing t -> Sing (Apply Unzip7Sym0 t :: ([a], [b], [c], [d], [e], [f], [g])) #

Special lists

"Set" operations

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

Equations

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

sNub :: forall (t :: [a]). SEq a => Sing t -> Sing (Apply NubSym0 t :: [a]) #

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

Equations

Delete a_6989586621679474331 a_6989586621679474333 = Apply (Apply (Apply DeleteBySym0 (:==$)) a_6989586621679474331) a_6989586621679474333 

sDelete :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply DeleteSym0 t) t :: [a]) #

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

Equations

a_6989586621679474346 :\\ a_6989586621679474348 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 DeleteSym0)) a_6989586621679474346) a_6989586621679474348 

(%:\\) :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply (:\\$) t) t :: [a]) infix 5 #

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

Equations

Union a_6989586621679474316 a_6989586621679474318 = Apply (Apply (Apply UnionBySym0 (:==$)) a_6989586621679474316) a_6989586621679474318 

sUnion :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply UnionSym0 t) t :: [a]) #

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

Equations

Intersect a_6989586621679474119 a_6989586621679474121 = Apply (Apply (Apply IntersectBySym0 (:==$)) a_6989586621679474119) a_6989586621679474121 

sIntersect :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IntersectSym0 t) t :: [a]) #

Ordered lists

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

Equations

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

sInsert :: forall (t :: a) (t :: [a]). SOrd a => Sing t -> Sing t -> Sing (Apply (Apply InsertSym0 t) t :: [a]) #

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

Equations

Sort a_6989586621679474222 = Apply (Apply SortBySym0 CompareSym0) a_6989586621679474222 

sSort :: forall (t :: [a]). SOrd a => Sing t -> Sing (Apply SortSym0 t :: [a]) #

Generalized functions

The "By" operations

User-supplied equality (replacing an Eq context)

The predicate is assumed to define an equivalence.

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

Equations

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

sNubBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply NubBySym0 t) t :: [a]) #

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

Equations

DeleteBy _z_6989586621679474244 _z_6989586621679474247 '[] = '[] 
DeleteBy eq x ((:) y ys) = Case_6989586621679474273 eq x y ys (Let6989586621679474254Scrutinee_6989586621679473121Sym4 eq x y ys) 

sDeleteBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: a) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply DeleteBySym0 t) t) t :: [a]) #

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

Equations

DeleteFirstsBy eq a_6989586621679474291 a_6989586621679474293 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) a_6989586621679474291) a_6989586621679474293 

sDeleteFirstsBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply DeleteFirstsBySym0 t) t) t :: [a]) #

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) 

sUnionBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply UnionBySym0 t) t) t :: [a]) #

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

Equations

IntersectBy _z_6989586621679474005 '[] '[] = '[] 
IntersectBy _z_6989586621679474008 '[] ((:) _z_6989586621679474011 _z_6989586621679474014) = '[] 
IntersectBy _z_6989586621679474017 ((:) _z_6989586621679474020 _z_6989586621679474023) '[] = '[] 
IntersectBy eq ((:) wild_6989586621679473141 wild_6989586621679473143) ((:) wild_6989586621679473145 wild_6989586621679473147) = Apply (Apply FilterSym0 (Apply (Apply (Apply (Apply (Apply Lambda_6989586621679474082Sym0 eq) wild_6989586621679473141) wild_6989586621679473143) wild_6989586621679473145) wild_6989586621679473147)) (Let6989586621679474031XsSym5 eq wild_6989586621679473141 wild_6989586621679473143 wild_6989586621679473145 wild_6989586621679473147) 

sIntersectBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply IntersectBySym0 t) t) t :: [a]) #

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

Equations

GroupBy _z_6989586621679473805 '[] = '[] 
GroupBy eq ((:) x xs) = Apply (Apply (:$) (Apply (Apply (:$) x) (Let6989586621679473811YsSym3 eq x xs))) (Apply (Apply GroupBySym0 eq) (Let6989586621679473811ZsSym3 eq x xs)) 

sGroupBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply GroupBySym0 t) t :: [[a]]) #

User-supplied comparison (replacing an Ord context)

The function is assumed to define a total ordering.

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

Equations

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

sSortBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SortBySym0 t) t :: [a]) #

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

Equations

InsertBy _z_6989586621679474149 x '[] = Apply (Apply (:$) x) '[] 
InsertBy cmp x ((:) y ys') = Case_6989586621679474195 cmp x y ys' (Let6989586621679474176Scrutinee_6989586621679473123Sym4 cmp x y ys') 

sInsertBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: a) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply InsertBySym0 t) t) t :: [a]) #

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

Equations

MaximumBy _z_6989586621679475680 '[] = Apply ErrorSym0 "Data.Singletons.List.maximumBy: empty list" 
MaximumBy cmp ((:) wild_6989586621679473127 wild_6989586621679473129) = Apply (Apply Foldl1Sym0 (Let6989586621679475699MaxBySym3 cmp wild_6989586621679473127 wild_6989586621679473129)) (Let6989586621679475686XsSym3 cmp wild_6989586621679473127 wild_6989586621679473129) 

sMaximumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MaximumBySym0 t) t :: a) #

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

Equations

MinimumBy _z_6989586621679475767 '[] = Apply ErrorSym0 "Data.Singletons.List.minimumBy: empty list" 
MinimumBy cmp ((:) wild_6989586621679473133 wild_6989586621679473135) = Apply (Apply Foldl1Sym0 (Let6989586621679475786MinBySym3 cmp wild_6989586621679473133 wild_6989586621679473135)) (Let6989586621679475773XsSym3 cmp wild_6989586621679473133 wild_6989586621679473135) 

sMinimumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MinimumBySym0 t) t :: a) #

The "generic" operations

The prefix `generic' indicates an overloaded function that is a generalized version of a Prelude function.

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

Equations

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

sGenericLength :: forall (t :: [a]). SNum i => Sing t -> Sing (Apply GenericLengthSym0 t :: i) #

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 :: [a6989586621679289771]) (t :: [a6989586621679289771]) = (:++) t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

data MapSym0 (l :: TyFun (TyFun a6989586621679289772 b6989586621679289773 -> Type) (TyFun [a6989586621679289772] [b6989586621679289773] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679289772 b6989586621679289773 -> Type) (TyFun [a6989586621679289772] [b6989586621679289773] -> Type) -> *) (MapSym0 a6989586621679289772 b6989586621679289773) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym0 a6989586621679289772 b6989586621679289773) t -> () #

type Apply (TyFun a6989586621679289772 b6989586621679289773 -> Type) (TyFun [a6989586621679289772] [b6989586621679289773] -> Type) (MapSym0 a6989586621679289772 b6989586621679289773) l # 
type Apply (TyFun a6989586621679289772 b6989586621679289773 -> Type) (TyFun [a6989586621679289772] [b6989586621679289773] -> Type) (MapSym0 a6989586621679289772 b6989586621679289773) l = MapSym1 a6989586621679289772 b6989586621679289773 l

data MapSym1 (l :: TyFun a6989586621679289772 b6989586621679289773 -> Type) (l :: TyFun [a6989586621679289772] [b6989586621679289773]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679289772 b6989586621679289773 -> Type) -> TyFun [a6989586621679289772] [b6989586621679289773] -> *) (MapSym1 a6989586621679289772 b6989586621679289773) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym1 a6989586621679289772 b6989586621679289773) 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 a6989586621679289772 b6989586621679289773 -> Type) (t :: [a6989586621679289772]) = Map t t #

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

Instances

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

Methods

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

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

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

data IntersperseSym0 (l :: TyFun a6989586621679472629 (TyFun [a6989586621679472629] [a6989586621679472629] -> Type)) #

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

data TransposeSym0 (l :: TyFun [[a6989586621679472516]] [[a6989586621679472516]]) #

Instances

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

Methods

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

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

type TransposeSym1 (t :: [[a6989586621679472516]]) = Transpose t #

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

type PermutationsSym1 (t :: [a6989586621679472624]) = Permutations t #

data FoldlSym0 (l :: TyFun (TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> Type) -> *) (FoldlSym0 a6989586621679249584 b6989586621679249585) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym0 a6989586621679249584 b6989586621679249585) t -> () #

type Apply (TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> Type) (FoldlSym0 a6989586621679249584 b6989586621679249585) l # 
type Apply (TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> Type) (FoldlSym0 a6989586621679249584 b6989586621679249585) l = FoldlSym1 a6989586621679249584 b6989586621679249585 l

data FoldlSym1 (l :: TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (l :: TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) -> TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> *) (FoldlSym1 a6989586621679249584 b6989586621679249585) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym1 a6989586621679249584 b6989586621679249585) t -> () #

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

data FoldlSym2 (l :: TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (l :: b6989586621679249585) (l :: TyFun [a6989586621679249584] b6989586621679249585) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) -> b6989586621679249585 -> TyFun [a6989586621679249584] b6989586621679249585 -> *) (FoldlSym2 a6989586621679249584 b6989586621679249585) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym2 a6989586621679249584 b6989586621679249585) 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 b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (t :: b6989586621679249585) (t :: [a6989586621679249584]) = Foldl t t t #

data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type) -> Type) -> *) (Foldl'Sym0 a6989586621679472622 b6989586621679472623) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl'Sym0 a6989586621679472622 b6989586621679472623) t -> () #

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

data Foldl'Sym1 (l :: TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (l :: TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) -> TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type) -> *) (Foldl'Sym1 a6989586621679472622 b6989586621679472623) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl'Sym1 a6989586621679472622 b6989586621679472623) t -> () #

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

data Foldl'Sym2 (l :: TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (l :: b6989586621679472623) (l :: TyFun [a6989586621679472622] b6989586621679472623) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) -> b6989586621679472623 -> TyFun [a6989586621679472622] b6989586621679472623 -> *) (Foldl'Sym2 a6989586621679472622 b6989586621679472623) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl'Sym2 a6989586621679472622 b6989586621679472623) 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 b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (t :: b6989586621679472623) (t :: [a6989586621679472622]) = Foldl' t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (Foldl1Sym1 a6989586621679472621) 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 a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) (t :: [a6989586621679472621]) = Foldl1 t t #

data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (TyFun [a6989586621679472620] a6989586621679472620 -> Type)) #

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (Foldl1'Sym1 a6989586621679472620) 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 a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (t :: [a6989586621679472620]) = Foldl1' t t #

data FoldrSym0 (l :: TyFun (TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> Type) -> *) (FoldrSym0 a6989586621679289774 b6989586621679289775) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym0 a6989586621679289774 b6989586621679289775) t -> () #

type Apply (TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> Type) (FoldrSym0 a6989586621679289774 b6989586621679289775) l # 
type Apply (TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> Type) (FoldrSym0 a6989586621679289774 b6989586621679289775) l = FoldrSym1 a6989586621679289774 b6989586621679289775 l

data FoldrSym1 (l :: TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (l :: TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) -> TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> *) (FoldrSym1 a6989586621679289774 b6989586621679289775) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym1 a6989586621679289774 b6989586621679289775) t -> () #

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

data FoldrSym2 (l :: TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (l :: b6989586621679289775) (l :: TyFun [a6989586621679289774] b6989586621679289775) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) -> b6989586621679289775 -> TyFun [a6989586621679289774] b6989586621679289775 -> *) (FoldrSym2 a6989586621679289774 b6989586621679289775) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym2 a6989586621679289774 b6989586621679289775) 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 a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (t :: b6989586621679289775) (t :: [a6989586621679289774]) = Foldr t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (Foldr1Sym1 a6989586621679472619) 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 a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) (t :: [a6989586621679472619]) = Foldr1 t t #

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

Instances

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

Methods

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

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

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

data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679472616 [b6989586621679472617] -> Type) (TyFun [a6989586621679472616] [b6989586621679472617] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679472616 [b6989586621679472617] -> Type) (TyFun [a6989586621679472616] [b6989586621679472617] -> Type) -> *) (ConcatMapSym0 a6989586621679472616 b6989586621679472617) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatMapSym0 a6989586621679472616 b6989586621679472617) t -> () #

type Apply (TyFun a6989586621679472616 [b6989586621679472617] -> Type) (TyFun [a6989586621679472616] [b6989586621679472617] -> Type) (ConcatMapSym0 a6989586621679472616 b6989586621679472617) l # 
type Apply (TyFun a6989586621679472616 [b6989586621679472617] -> Type) (TyFun [a6989586621679472616] [b6989586621679472617] -> Type) (ConcatMapSym0 a6989586621679472616 b6989586621679472617) l = ConcatMapSym1 a6989586621679472616 b6989586621679472617 l

data ConcatMapSym1 (l :: TyFun a6989586621679472616 [b6989586621679472617] -> Type) (l :: TyFun [a6989586621679472616] [b6989586621679472617]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679472616 [b6989586621679472617] -> Type) -> TyFun [a6989586621679472616] [b6989586621679472617] -> *) (ConcatMapSym1 a6989586621679472616 b6989586621679472617) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatMapSym1 a6989586621679472616 b6989586621679472617) 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 a6989586621679472616 [b6989586621679472617] -> Type) (t :: [a6989586621679472616]) = 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 a6989586621679462399 Bool -> Type) (TyFun [a6989586621679462399] Bool -> Type)) #

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (Any_Sym1 a6989586621679462399) 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 a6989586621679462399 Bool -> Type) (t :: [a6989586621679462399]) = Any_ t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (AllSym1 a6989586621679472615) 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 a6989586621679472615 Bool -> Type) (t :: [a6989586621679472615]) = All t t #

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

data ScanlSym0 (l :: TyFun (TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> Type) -> *) (ScanlSym0 a6989586621679472614 b6989586621679472613) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym0 a6989586621679472614 b6989586621679472613) t -> () #

type Apply (TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> Type) (ScanlSym0 a6989586621679472614 b6989586621679472613) l # 
type Apply (TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> Type) (ScanlSym0 a6989586621679472614 b6989586621679472613) l = ScanlSym1 a6989586621679472614 b6989586621679472613 l

data ScanlSym1 (l :: TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (l :: TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) -> TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> *) (ScanlSym1 a6989586621679472614 b6989586621679472613) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym1 a6989586621679472614 b6989586621679472613) t -> () #

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

data ScanlSym2 (l :: TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (l :: b6989586621679472613) (l :: TyFun [a6989586621679472614] [b6989586621679472613]) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) -> b6989586621679472613 -> TyFun [a6989586621679472614] [b6989586621679472613] -> *) (ScanlSym2 a6989586621679472614 b6989586621679472613) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym2 a6989586621679472614 b6989586621679472613) 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 b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (t :: b6989586621679472613) (t :: [a6989586621679472614]) = Scanl t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (Scanl1Sym1 a6989586621679472612) 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 a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) (t :: [a6989586621679472612]) = Scanl1 t t #

data ScanrSym0 (l :: TyFun (TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> Type) -> *) (ScanrSym0 a6989586621679472610 b6989586621679472611) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym0 a6989586621679472610 b6989586621679472611) t -> () #

type Apply (TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> Type) (ScanrSym0 a6989586621679472610 b6989586621679472611) l # 
type Apply (TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> Type) (ScanrSym0 a6989586621679472610 b6989586621679472611) l = ScanrSym1 a6989586621679472610 b6989586621679472611 l

data ScanrSym1 (l :: TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (l :: TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) -> TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> *) (ScanrSym1 a6989586621679472610 b6989586621679472611) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym1 a6989586621679472610 b6989586621679472611) t -> () #

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

data ScanrSym2 (l :: TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (l :: b6989586621679472611) (l :: TyFun [a6989586621679472610] [b6989586621679472611]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) -> b6989586621679472611 -> TyFun [a6989586621679472610] [b6989586621679472611] -> *) (ScanrSym2 a6989586621679472610 b6989586621679472611) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym2 a6989586621679472610 b6989586621679472611) 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 a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (t :: b6989586621679472611) (t :: [a6989586621679472610]) = Scanr t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (Scanr1Sym1 a6989586621679472609) 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 a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) (t :: [a6989586621679472609]) = Scanr1 t t #

data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> Type) -> *) (MapAccumLSym0 x6989586621679472607 acc6989586621679472606 y6989586621679472608) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumLSym0 x6989586621679472607 acc6989586621679472606 y6989586621679472608) t -> () #

type Apply (TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> Type) (MapAccumLSym0 x6989586621679472607 acc6989586621679472606 y6989586621679472608) l # 
type Apply (TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> Type) (MapAccumLSym0 x6989586621679472607 acc6989586621679472606 y6989586621679472608) l = MapAccumLSym1 x6989586621679472607 acc6989586621679472606 y6989586621679472608 l

data MapAccumLSym1 (l :: TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (l :: TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) -> TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> *) (MapAccumLSym1 x6989586621679472607 acc6989586621679472606 y6989586621679472608) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumLSym1 x6989586621679472607 acc6989586621679472606 y6989586621679472608) t -> () #

type Apply acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) (MapAccumLSym1 x6989586621679472607 acc6989586621679472606 y6989586621679472608 l1) l2 # 
type Apply acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) (MapAccumLSym1 x6989586621679472607 acc6989586621679472606 y6989586621679472608 l1) l2 = MapAccumLSym2 x6989586621679472607 acc6989586621679472606 y6989586621679472608 l1 l2

data MapAccumLSym2 (l :: TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (l :: acc6989586621679472606) (l :: TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608])) #

Instances

SuppressUnusedWarnings ((TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) -> acc6989586621679472606 -> TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> *) (MapAccumLSym2 x6989586621679472607 acc6989586621679472606 y6989586621679472608) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumLSym2 x6989586621679472607 acc6989586621679472606 y6989586621679472608) 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 acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (t :: acc6989586621679472606) (t :: [x6989586621679472607]) = MapAccumL t t t #

data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> Type) -> *) (MapAccumRSym0 x6989586621679472604 acc6989586621679472603 y6989586621679472605) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumRSym0 x6989586621679472604 acc6989586621679472603 y6989586621679472605) t -> () #

type Apply (TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> Type) (MapAccumRSym0 x6989586621679472604 acc6989586621679472603 y6989586621679472605) l # 
type Apply (TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> Type) (MapAccumRSym0 x6989586621679472604 acc6989586621679472603 y6989586621679472605) l = MapAccumRSym1 x6989586621679472604 acc6989586621679472603 y6989586621679472605 l

data MapAccumRSym1 (l :: TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (l :: TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) -> TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> *) (MapAccumRSym1 x6989586621679472604 acc6989586621679472603 y6989586621679472605) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumRSym1 x6989586621679472604 acc6989586621679472603 y6989586621679472605) t -> () #

type Apply acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) (MapAccumRSym1 x6989586621679472604 acc6989586621679472603 y6989586621679472605 l1) l2 # 
type Apply acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) (MapAccumRSym1 x6989586621679472604 acc6989586621679472603 y6989586621679472605 l1) l2 = MapAccumRSym2 x6989586621679472604 acc6989586621679472603 y6989586621679472605 l1 l2

data MapAccumRSym2 (l :: TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (l :: acc6989586621679472603) (l :: TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605])) #

Instances

SuppressUnusedWarnings ((TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) -> acc6989586621679472603 -> TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> *) (MapAccumRSym2 x6989586621679472604 acc6989586621679472603 y6989586621679472605) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumRSym2 x6989586621679472604 acc6989586621679472603 y6989586621679472605) 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 acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (t :: acc6989586621679472603) (t :: [x6989586621679472604]) = MapAccumR t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (ReplicateSym1 a6989586621679472517) 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 :: a6989586621679472517) = Replicate t t #

data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (TyFun b6989586621679472601 [a6989586621679472602] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (TyFun b6989586621679472601 [a6989586621679472602] -> Type) -> *) (UnfoldrSym0 b6989586621679472601 a6989586621679472602) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldrSym0 b6989586621679472601 a6989586621679472602) t -> () #

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

data UnfoldrSym1 (l :: TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (l :: TyFun b6989586621679472601 [a6989586621679472602]) #

Instances

SuppressUnusedWarnings ((TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) -> TyFun b6989586621679472601 [a6989586621679472602] -> *) (UnfoldrSym1 b6989586621679472601 a6989586621679472602) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldrSym1 b6989586621679472601 a6989586621679472602) 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 b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (t :: b6989586621679472601) = Unfoldr t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (TakeSym1 a6989586621679472533) 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 :: [a6989586621679472533]) = Take t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (DropSym1 a6989586621679472532) 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 :: [a6989586621679472532]) = Drop t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (SplitAtSym1 a6989586621679472531) 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 :: [a6989586621679472531]) = SplitAt t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (TakeWhileSym1 a6989586621679472538) 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 a6989586621679472538 Bool -> Type) (t :: [a6989586621679472538]) = TakeWhile t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (DropWhileSym1 a6989586621679472537) 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 a6989586621679472537 Bool -> Type) (t :: [a6989586621679472537]) = DropWhile t t #

data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679472536 Bool -> Type) (TyFun [a6989586621679472536] [a6989586621679472536] -> Type)) #

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (DropWhileEndSym1 a6989586621679472536) 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 a6989586621679472536 Bool -> Type) (t :: [a6989586621679472536]) = DropWhileEnd t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (SpanSym1 a6989586621679472535) 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 a6989586621679472535 Bool -> Type) (t :: [a6989586621679472535]) = Span t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (BreakSym1 a6989586621679472534) 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 a6989586621679472534 Bool -> Type) (t :: [a6989586621679472534]) = Break t t #

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

type IsInfixOfSym2 (t :: [a6989586621679472596]) (t :: [a6989586621679472596]) = IsInfixOf t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

data LookupSym0 (l :: TyFun a6989586621679472523 (TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679472523 (TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524) -> Type) -> *) (LookupSym0 a6989586621679472523 b6989586621679472524) # 

Methods

suppressUnusedWarnings :: Proxy (LookupSym0 a6989586621679472523 b6989586621679472524) t -> () #

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

data LookupSym1 (l :: a6989586621679472523) (l :: TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524)) #

Instances

SuppressUnusedWarnings (a6989586621679472523 -> TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524) -> *) (LookupSym1 a6989586621679472523 b6989586621679472524) # 

Methods

suppressUnusedWarnings :: Proxy (LookupSym1 a6989586621679472523 b6989586621679472524) 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 :: a6989586621679472523) (t :: [(a6989586621679472523, b6989586621679472524)]) = Lookup t t #

data FindSym0 (l :: TyFun (TyFun a6989586621679472545 Bool -> Type) (TyFun [a6989586621679472545] (Maybe a6989586621679472545) -> Type)) #

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (FindSym1 a6989586621679472545) 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 a6989586621679472545 Bool -> Type) (t :: [a6989586621679472545]) = Find t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (FilterSym1 a6989586621679472546) 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 a6989586621679472546 Bool -> Type) (t :: [a6989586621679472546]) = Filter t t #

data PartitionSym0 (l :: TyFun (TyFun a6989586621679472522 Bool -> Type) (TyFun [a6989586621679472522] ([a6989586621679472522], [a6989586621679472522]) -> Type)) #

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (PartitionSym1 a6989586621679472522) 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 a6989586621679472522 Bool -> Type) (t :: [a6989586621679472522]) = Partition t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (ElemIndexSym1 a6989586621679472544) 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 :: a6989586621679472544) (t :: [a6989586621679472544]) = ElemIndex t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (FindIndexSym1 a6989586621679472542) 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 a6989586621679472542 Bool -> Type) (t :: [a6989586621679472542]) = FindIndex t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (FindIndicesSym1 a6989586621679472541) 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 a6989586621679472541 Bool -> Type) (t :: [a6989586621679472541]) = FindIndices t t #

data ZipSym0 (l :: TyFun [a6989586621679472592] (TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)] -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679472592] (TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)] -> Type) -> *) (ZipSym0 a6989586621679472592 b6989586621679472593) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym0 a6989586621679472592 b6989586621679472593) t -> () #

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

data ZipSym1 (l :: [a6989586621679472592]) (l :: TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)]) #

Instances

SuppressUnusedWarnings ([a6989586621679472592] -> TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)] -> *) (ZipSym1 a6989586621679472592 b6989586621679472593) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym1 a6989586621679472592 b6989586621679472593) 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 :: [a6989586621679472592]) (t :: [b6989586621679472593]) = Zip t t #

data Zip3Sym0 (l :: TyFun [a6989586621679472589] (TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679472589] (TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> Type) -> *) (Zip3Sym0 a6989586621679472589 b6989586621679472590 c6989586621679472591) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym0 a6989586621679472589 b6989586621679472590 c6989586621679472591) t -> () #

type Apply [a6989586621679472589] (TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> Type) (Zip3Sym0 a6989586621679472589 b6989586621679472590 c6989586621679472591) l # 
type Apply [a6989586621679472589] (TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> Type) (Zip3Sym0 a6989586621679472589 b6989586621679472590 c6989586621679472591) l = Zip3Sym1 a6989586621679472589 b6989586621679472590 c6989586621679472591 l

data Zip3Sym1 (l :: [a6989586621679472589]) (l :: TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type)) #

Instances

SuppressUnusedWarnings ([a6989586621679472589] -> TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> *) (Zip3Sym1 a6989586621679472589 b6989586621679472590 c6989586621679472591) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym1 a6989586621679472589 b6989586621679472590 c6989586621679472591) t -> () #

type Apply [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) (Zip3Sym1 a6989586621679472589 b6989586621679472590 c6989586621679472591 l1) l2 # 
type Apply [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) (Zip3Sym1 a6989586621679472589 b6989586621679472590 c6989586621679472591 l1) l2 = Zip3Sym2 a6989586621679472589 b6989586621679472590 c6989586621679472591 l1 l2

data Zip3Sym2 (l :: [a6989586621679472589]) (l :: [b6989586621679472590]) (l :: TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)]) #

Instances

SuppressUnusedWarnings ([a6989586621679472589] -> [b6989586621679472590] -> TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> *) (Zip3Sym2 a6989586621679472589 b6989586621679472590 c6989586621679472591) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym2 a6989586621679472589 b6989586621679472590 c6989586621679472591) 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 :: [a6989586621679472589]) (t :: [b6989586621679472590]) (t :: [c6989586621679472591]) = Zip3 t t t #

data ZipWithSym0 (l :: TyFun (TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> Type) -> *) (ZipWithSym0 a6989586621679472586 b6989586621679472587 c6989586621679472588) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym0 a6989586621679472586 b6989586621679472587 c6989586621679472588) t -> () #

type Apply (TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> Type) (ZipWithSym0 a6989586621679472586 b6989586621679472587 c6989586621679472588) l # 
type Apply (TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> Type) (ZipWithSym0 a6989586621679472586 b6989586621679472587 c6989586621679472588) l = ZipWithSym1 a6989586621679472586 b6989586621679472587 c6989586621679472588 l

data ZipWithSym1 (l :: TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (l :: TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) -> TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> *) (ZipWithSym1 a6989586621679472586 b6989586621679472587 c6989586621679472588) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym1 a6989586621679472586 b6989586621679472587 c6989586621679472588) t -> () #

type Apply [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) (ZipWithSym1 a6989586621679472586 b6989586621679472587 c6989586621679472588 l1) l2 # 
type Apply [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) (ZipWithSym1 a6989586621679472586 b6989586621679472587 c6989586621679472588 l1) l2 = ZipWithSym2 a6989586621679472586 b6989586621679472587 c6989586621679472588 l1 l2

data ZipWithSym2 (l :: TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (l :: [a6989586621679472586]) (l :: TyFun [b6989586621679472587] [c6989586621679472588]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) -> [a6989586621679472586] -> TyFun [b6989586621679472587] [c6989586621679472588] -> *) (ZipWithSym2 a6989586621679472586 b6989586621679472587 c6989586621679472588) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym2 a6989586621679472586 b6989586621679472587 c6989586621679472588) 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 a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (t :: [a6989586621679472586]) (t :: [b6989586621679472587]) = ZipWith t t t #

data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> Type) -> *) (ZipWith3Sym0 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym0 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) t -> () #

type Apply (TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> Type) (ZipWith3Sym0 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) l # 
type Apply (TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> Type) (ZipWith3Sym0 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) l = ZipWith3Sym1 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585 l

data ZipWith3Sym1 (l :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) -> TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> *) (ZipWith3Sym1 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym1 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) t -> () #

type Apply [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) (ZipWith3Sym1 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585 l1) l2 # 
type Apply [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) (ZipWith3Sym1 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585 l1) l2 = ZipWith3Sym2 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585 l1 l2

data ZipWith3Sym2 (l :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (l :: [a6989586621679472582]) (l :: TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type)) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) -> [a6989586621679472582] -> TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> *) (ZipWith3Sym2 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym2 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) t -> () #

type Apply [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) (ZipWith3Sym2 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585 l1 l2) l3 # 
type Apply [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) (ZipWith3Sym2 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585 l1 l2) l3 = ZipWith3Sym3 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585 l1 l2 l3

data ZipWith3Sym3 (l :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (l :: [a6989586621679472582]) (l :: [b6989586621679472583]) (l :: TyFun [c6989586621679472584] [d6989586621679472585]) #

Instances

SuppressUnusedWarnings ((TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) -> [a6989586621679472582] -> [b6989586621679472583] -> TyFun [c6989586621679472584] [d6989586621679472585] -> *) (ZipWith3Sym3 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym3 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) 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 a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (t :: [a6989586621679472582]) (t :: [b6989586621679472583]) (t :: [c6989586621679472584]) = ZipWith3 t t t t #

data UnzipSym0 (l :: TyFun [(a6989586621679472580, b6989586621679472581)] ([a6989586621679472580], [b6989586621679472581])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679472580, b6989586621679472581)] ([a6989586621679472580], [b6989586621679472581]) -> *) (UnzipSym0 a6989586621679472580 b6989586621679472581) # 

Methods

suppressUnusedWarnings :: Proxy (UnzipSym0 a6989586621679472580 b6989586621679472581) 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 :: [(a6989586621679472580, b6989586621679472581)]) = Unzip t #

data Unzip3Sym0 (l :: TyFun [(a6989586621679472577, b6989586621679472578, c6989586621679472579)] ([a6989586621679472577], [b6989586621679472578], [c6989586621679472579])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679472577, b6989586621679472578, c6989586621679472579)] ([a6989586621679472577], [b6989586621679472578], [c6989586621679472579]) -> *) (Unzip3Sym0 a6989586621679472577 b6989586621679472578 c6989586621679472579) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip3Sym0 a6989586621679472577 b6989586621679472578 c6989586621679472579) 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 :: [(a6989586621679472577, b6989586621679472578, c6989586621679472579)]) = Unzip3 t #

data Unzip4Sym0 (l :: TyFun [(a6989586621679472573, b6989586621679472574, c6989586621679472575, d6989586621679472576)] ([a6989586621679472573], [b6989586621679472574], [c6989586621679472575], [d6989586621679472576])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679472573, b6989586621679472574, c6989586621679472575, d6989586621679472576)] ([a6989586621679472573], [b6989586621679472574], [c6989586621679472575], [d6989586621679472576]) -> *) (Unzip4Sym0 a6989586621679472573 b6989586621679472574 c6989586621679472575 d6989586621679472576) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip4Sym0 a6989586621679472573 b6989586621679472574 c6989586621679472575 d6989586621679472576) 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 :: [(a6989586621679472573, b6989586621679472574, c6989586621679472575, d6989586621679472576)]) = Unzip4 t #

data Unzip5Sym0 (l :: TyFun [(a6989586621679472568, b6989586621679472569, c6989586621679472570, d6989586621679472571, e6989586621679472572)] ([a6989586621679472568], [b6989586621679472569], [c6989586621679472570], [d6989586621679472571], [e6989586621679472572])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679472568, b6989586621679472569, c6989586621679472570, d6989586621679472571, e6989586621679472572)] ([a6989586621679472568], [b6989586621679472569], [c6989586621679472570], [d6989586621679472571], [e6989586621679472572]) -> *) (Unzip5Sym0 a6989586621679472568 b6989586621679472569 c6989586621679472570 d6989586621679472571 e6989586621679472572) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip5Sym0 a6989586621679472568 b6989586621679472569 c6989586621679472570 d6989586621679472571 e6989586621679472572) 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 :: [(a6989586621679472568, b6989586621679472569, c6989586621679472570, d6989586621679472571, e6989586621679472572)]) = Unzip5 t #

data Unzip6Sym0 (l :: TyFun [(a6989586621679472562, b6989586621679472563, c6989586621679472564, d6989586621679472565, e6989586621679472566, f6989586621679472567)] ([a6989586621679472562], [b6989586621679472563], [c6989586621679472564], [d6989586621679472565], [e6989586621679472566], [f6989586621679472567])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679472562, b6989586621679472563, c6989586621679472564, d6989586621679472565, e6989586621679472566, f6989586621679472567)] ([a6989586621679472562], [b6989586621679472563], [c6989586621679472564], [d6989586621679472565], [e6989586621679472566], [f6989586621679472567]) -> *) (Unzip6Sym0 a6989586621679472562 b6989586621679472563 c6989586621679472564 d6989586621679472565 e6989586621679472566 f6989586621679472567) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip6Sym0 a6989586621679472562 b6989586621679472563 c6989586621679472564 d6989586621679472565 e6989586621679472566 f6989586621679472567) 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 :: [(a6989586621679472562, b6989586621679472563, c6989586621679472564, d6989586621679472565, e6989586621679472566, f6989586621679472567)]) = Unzip6 t #

data Unzip7Sym0 (l :: TyFun [(a6989586621679472555, b6989586621679472556, c6989586621679472557, d6989586621679472558, e6989586621679472559, f6989586621679472560, g6989586621679472561)] ([a6989586621679472555], [b6989586621679472556], [c6989586621679472557], [d6989586621679472558], [e6989586621679472559], [f6989586621679472560], [g6989586621679472561])) #

Instances

SuppressUnusedWarnings (TyFun [(a6989586621679472555, b6989586621679472556, c6989586621679472557, d6989586621679472558, e6989586621679472559, f6989586621679472560, g6989586621679472561)] ([a6989586621679472555], [b6989586621679472556], [c6989586621679472557], [d6989586621679472558], [e6989586621679472559], [f6989586621679472560], [g6989586621679472561]) -> *) (Unzip7Sym0 a6989586621679472555 b6989586621679472556 c6989586621679472557 d6989586621679472558 e6989586621679472559 f6989586621679472560 g6989586621679472561) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip7Sym0 a6989586621679472555 b6989586621679472556 c6989586621679472557 d6989586621679472558 e6989586621679472559 f6989586621679472560 g6989586621679472561) 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 :: [(a6989586621679472555, b6989586621679472556, c6989586621679472557, d6989586621679472558, e6989586621679472559, f6989586621679472560, g6989586621679472561)]) = Unzip7 t #

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (NubBySym1 a6989586621679472513) 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 a6989586621679472513 (TyFun a6989586621679472513 Bool -> Type) -> Type) (t :: [a6989586621679472513]) = NubBy t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (DeleteBySym2 a6989586621679472552) 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 a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (t :: a6989586621679472552) (t :: [a6989586621679472552]) = DeleteBy t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (DeleteFirstsBySym2 a6989586621679472551) 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 a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (t :: [a6989586621679472551]) (t :: [a6989586621679472551]) = DeleteFirstsBy t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (UnionBySym2 a6989586621679472511) 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 a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (t :: [a6989586621679472511]) (t :: [a6989586621679472511]) = UnionBy t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

type IntersectBySym3 (t :: TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) (t :: [a6989586621679472539]) (t :: [a6989586621679472539]) = IntersectBy t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (GroupBySym1 a6989586621679472525) 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 a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) (t :: [a6989586621679472525]) = GroupBy t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (SortBySym1 a6989586621679472550) 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 a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) (t :: [a6989586621679472550]) = SortBy t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (InsertBySym2 a6989586621679472549) 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 a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (t :: a6989586621679472549) (t :: [a6989586621679472549]) = InsertBy t t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (MaximumBySym1 a6989586621679472548) 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 a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) (t :: [a6989586621679472548]) = MaximumBy t t #

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

Instances

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

Methods

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

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

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

Instances

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

Methods

suppressUnusedWarnings :: Proxy (MinimumBySym1 a6989586621679472547) 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 a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) (t :: [a6989586621679472547]) = MinimumBy t t #

data GenericLengthSym0 (l :: TyFun [a6989586621679472509] i6989586621679472508) #

Instances

SuppressUnusedWarnings (TyFun [a6989586621679472509] i6989586621679472508 -> *) (GenericLengthSym0 a6989586621679472509 i6989586621679472508) # 

Methods

suppressUnusedWarnings :: Proxy (GenericLengthSym0 a6989586621679472509 i6989586621679472508) t -> () #

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

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