singletons-2.4: A framework for generating singleton types

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

Data.Promotion.Prelude.List

Contents

Description

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

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

Synopsis
  • type family (a :: [a]) ++ (a :: [a]) :: [a] where ...
  • type family Head (a :: [a]) :: a where ...
  • type family Last (a :: [a]) :: a where ...
  • type family Tail (a :: [a]) :: [a] where ...
  • type family Init (a :: [a]) :: [a] where ...
  • type family Null (a :: [a]) :: Bool where ...
  • type family Length (a :: [a]) :: Nat where ...
  • type family Map (a :: TyFun a b -> Type) (a :: [a]) :: [b] where ...
  • type family Reverse (a :: [a]) :: [a] where ...
  • type family Intersperse (a :: a) (a :: [a]) :: [a] where ...
  • type family Intercalate (a :: [a]) (a :: [[a]]) :: [a] where ...
  • type family Transpose (a :: [[a]]) :: [[a]] where ...
  • type family Subsequences (a :: [a]) :: [[a]] where ...
  • type family Permutations (a :: [a]) :: [[a]] where ...
  • type family Foldl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
  • type family Foldl' (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
  • type family Foldl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
  • type family Foldl1' (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
  • type family Foldr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
  • type family Foldr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
  • type family Concat (a :: [[a]]) :: [a] where ...
  • type family ConcatMap (a :: TyFun a [b] -> Type) (a :: [a]) :: [b] where ...
  • type family And (a :: [Bool]) :: Bool where ...
  • type family Or (a :: [Bool]) :: Bool where ...
  • type family Any (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ...
  • type family All (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ...
  • type family Sum (a :: [a]) :: a where ...
  • type family Product (a :: [a]) :: a where ...
  • type family Maximum (a :: [a]) :: a where ...
  • type family Minimum (a :: [a]) :: a where ...
  • type family Scanl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ...
  • type family Scanl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ...
  • type family Scanr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ...
  • type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ...
  • type family MapAccumL (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ...
  • type family MapAccumR (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ...
  • type family Replicate (a :: Nat) (a :: a) :: [a] where ...
  • type family Unfoldr (a :: TyFun b (Maybe (a, b)) -> Type) (a :: b) :: [a] where ...
  • type family Take (a :: Nat) (a :: [a]) :: [a] where ...
  • type family Drop (a :: Nat) (a :: [a]) :: [a] where ...
  • type family SplitAt (a :: Nat) (a :: [a]) :: ([a], [a]) where ...
  • type family TakeWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
  • type family DropWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
  • type family DropWhileEnd (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
  • type family Span (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
  • type family Break (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
  • type family StripPrefix (a :: [a]) (a :: [a]) :: Maybe [a] where ...
  • type family Group (a :: [a]) :: [[a]] where ...
  • type family Inits (a :: [a]) :: [[a]] where ...
  • type family Tails (a :: [a]) :: [[a]] where ...
  • type family IsPrefixOf (a :: [a]) (a :: [a]) :: Bool where ...
  • type family IsSuffixOf (a :: [a]) (a :: [a]) :: Bool where ...
  • type family IsInfixOf (a :: [a]) (a :: [a]) :: Bool where ...
  • type family Elem (a :: a) (a :: [a]) :: Bool where ...
  • type family NotElem (a :: a) (a :: [a]) :: Bool where ...
  • type family Lookup (a :: a) (a :: [(a, b)]) :: Maybe b where ...
  • type family Find (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe a where ...
  • type family Filter (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
  • type family Partition (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
  • type family (a :: [a]) !! (a :: Nat) :: a where ...
  • type family ElemIndex (a :: a) (a :: [a]) :: Maybe Nat where ...
  • type family ElemIndices (a :: a) (a :: [a]) :: [Nat] where ...
  • type family FindIndex (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe Nat where ...
  • type family FindIndices (a :: TyFun a Bool -> Type) (a :: [a]) :: [Nat] where ...
  • type family Zip (a :: [a]) (a :: [b]) :: [(a, b)] where ...
  • type family Zip3 (a :: [a]) (a :: [b]) (a :: [c]) :: [(a, b, c)] where ...
  • type family Zip4 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [(a, b, c, d)] where ...
  • type family Zip5 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [(a, b, c, d, e)] where ...
  • type family Zip6 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [(a, b, c, d, e, f)] where ...
  • type family Zip7 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [(a, b, c, d, e, f, g)] where ...
  • type family ZipWith (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: [a]) (a :: [b]) :: [c] where ...
  • type family ZipWith3 (a :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) :: [d] where ...
  • type family ZipWith4 (a :: TyFun a (TyFun b (TyFun c (TyFun d e -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [e] where ...
  • type family ZipWith5 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e f -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [f] where ...
  • type family ZipWith6 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f g -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [g] where ...
  • type family ZipWith7 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f (TyFun g h -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [h] where ...
  • type family Unzip (a :: [(a, b)]) :: ([a], [b]) where ...
  • type family Unzip3 (a :: [(a, b, c)]) :: ([a], [b], [c]) where ...
  • type family Unzip4 (a :: [(a, b, c, d)]) :: ([a], [b], [c], [d]) where ...
  • type family Unzip5 (a :: [(a, b, c, d, e)]) :: ([a], [b], [c], [d], [e]) where ...
  • type family Unzip6 (a :: [(a, b, c, d, e, f)]) :: ([a], [b], [c], [d], [e], [f]) where ...
  • type family Unzip7 (a :: [(a, b, c, d, e, f, g)]) :: ([a], [b], [c], [d], [e], [f], [g]) where ...
  • type family Unlines (a :: [Symbol]) :: Symbol where ...
  • type family Unwords (a :: [Symbol]) :: Symbol where ...
  • type family Nub (a :: [a]) :: [a] where ...
  • type family Delete (a :: a) (a :: [a]) :: [a] where ...
  • type family (a :: [a]) \\ (a :: [a]) :: [a] where ...
  • type family Union (a :: [a]) (a :: [a]) :: [a] where ...
  • type family Intersect (a :: [a]) (a :: [a]) :: [a] where ...
  • type family Sort (a :: [a]) :: [a] where ...
  • type family Insert (a :: a) (a :: [a]) :: [a] where ...
  • type family NubBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [a] where ...
  • type family DeleteBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
  • type family DeleteFirstsBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
  • type family UnionBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
  • type family GroupBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [[a]] where ...
  • type family IntersectBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
  • type family SortBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: [a] where ...
  • type family InsertBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
  • type family MaximumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
  • type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
  • type family GenericLength (a :: [a]) :: i where ...
  • type family GenericTake (a :: i) (a :: [a]) :: [a] where ...
  • type family GenericDrop (a :: i) (a :: [a]) :: [a] where ...
  • type family GenericSplitAt (a :: i) (a :: [a]) :: ([a], [a]) where ...
  • type family GenericIndex (a :: [a]) (a :: i) :: a where ...
  • type family GenericReplicate (a :: i) (a :: a) :: [a] where ...
  • type NilSym0 = '[]
  • data (:@#@$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type))
  • data (l :: a3530822107858468865) :@#@$$ (l :: TyFun [a3530822107858468865] [a3530822107858468865])
  • type (:@#@$$$) (t :: a3530822107858468865) (t :: [a3530822107858468865]) = (:) t t
  • type (++@#@$$$) (t :: [a6989586621679419904]) (t :: [a6989586621679419904]) = (++) t t
  • data (l :: [a6989586621679419904]) ++@#@$$ (l :: TyFun [a6989586621679419904] [a6989586621679419904])
  • data (++@#@$) (l :: TyFun [a6989586621679419904] (TyFun [a6989586621679419904] [a6989586621679419904] -> Type))
  • data HeadSym0 (l :: TyFun [a6989586621679442541] a6989586621679442541)
  • type HeadSym1 (t :: [a6989586621679442541]) = Head t
  • data LastSym0 (l :: TyFun [a6989586621679442540] a6989586621679442540)
  • type LastSym1 (t :: [a6989586621679442540]) = Last t
  • data TailSym0 (l :: TyFun [a6989586621679442539] [a6989586621679442539])
  • type TailSym1 (t :: [a6989586621679442539]) = Tail t
  • data InitSym0 (l :: TyFun [a6989586621679442538] [a6989586621679442538])
  • type InitSym1 (t :: [a6989586621679442538]) = Init t
  • data NullSym0 (l :: TyFun [a6989586621679442537] Bool)
  • type NullSym1 (t :: [a6989586621679442537]) = Null t
  • data MapSym0 (l :: TyFun (TyFun a6989586621679419905 b6989586621679419906 -> Type) (TyFun [a6989586621679419905] [b6989586621679419906] -> Type))
  • data MapSym1 (l :: TyFun a6989586621679419905 b6989586621679419906 -> Type) (l :: TyFun [a6989586621679419905] [b6989586621679419906])
  • type MapSym2 (t :: TyFun a6989586621679419905 b6989586621679419906 -> Type) (t :: [a6989586621679419905]) = Map t t
  • data ReverseSym0 (l :: TyFun [a6989586621679442536] [a6989586621679442536])
  • type ReverseSym1 (t :: [a6989586621679442536]) = Reverse t
  • data IntersperseSym0 (l :: TyFun a6989586621679442535 (TyFun [a6989586621679442535] [a6989586621679442535] -> Type))
  • data IntersperseSym1 (l :: a6989586621679442535) (l :: TyFun [a6989586621679442535] [a6989586621679442535])
  • type IntersperseSym2 (t :: a6989586621679442535) (t :: [a6989586621679442535]) = Intersperse t t
  • data IntercalateSym0 (l :: TyFun [a6989586621679442534] (TyFun [[a6989586621679442534]] [a6989586621679442534] -> Type))
  • data IntercalateSym1 (l :: [a6989586621679442534]) (l :: TyFun [[a6989586621679442534]] [a6989586621679442534])
  • type IntercalateSym2 (t :: [a6989586621679442534]) (t :: [[a6989586621679442534]]) = Intercalate t t
  • data SubsequencesSym0 (l :: TyFun [a6989586621679442533] [[a6989586621679442533]])
  • type SubsequencesSym1 (t :: [a6989586621679442533]) = Subsequences t
  • data PermutationsSym0 (l :: TyFun [a6989586621679442530] [[a6989586621679442530]])
  • type PermutationsSym1 (t :: [a6989586621679442530]) = Permutations t
  • data FoldlSym0 (l :: TyFun (TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type) -> Type))
  • data FoldlSym1 (l :: TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (l :: TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type))
  • data FoldlSym2 (l :: TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (l :: b6989586621679259259) (l :: TyFun [a6989586621679259258] b6989586621679259259)
  • type FoldlSym3 (t :: TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (t :: b6989586621679259259) (t :: [a6989586621679259258]) = Foldl t t t
  • data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type) -> Type))
  • data Foldl'Sym1 (l :: TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (l :: TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type))
  • data Foldl'Sym2 (l :: TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (l :: b6989586621679442529) (l :: TyFun [a6989586621679442528] b6989586621679442529)
  • type Foldl'Sym3 (t :: TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (t :: b6989586621679442529) (t :: [a6989586621679442528]) = Foldl' t t t
  • data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679442527 (TyFun a6989586621679442527 a6989586621679442527 -> Type) -> Type) (TyFun [a6989586621679442527] a6989586621679442527 -> Type))
  • data Foldl1Sym1 (l :: TyFun a6989586621679442527 (TyFun a6989586621679442527 a6989586621679442527 -> Type) -> Type) (l :: TyFun [a6989586621679442527] a6989586621679442527)
  • type Foldl1Sym2 (t :: TyFun a6989586621679442527 (TyFun a6989586621679442527 a6989586621679442527 -> Type) -> Type) (t :: [a6989586621679442527]) = Foldl1 t t
  • data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) (TyFun [a6989586621679442526] a6989586621679442526 -> Type))
  • data Foldl1'Sym1 (l :: TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) (l :: TyFun [a6989586621679442526] a6989586621679442526)
  • type Foldl1'Sym2 (t :: TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) (t :: [a6989586621679442526]) = Foldl1' t t
  • data FoldrSym0 (l :: TyFun (TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type) -> Type))
  • data FoldrSym1 (l :: TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (l :: TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type))
  • data FoldrSym2 (l :: TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (l :: b6989586621679419908) (l :: TyFun [a6989586621679419907] b6989586621679419908)
  • type FoldrSym3 (t :: TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (t :: b6989586621679419908) (t :: [a6989586621679419907]) = Foldr t t t
  • data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679442525 (TyFun a6989586621679442525 a6989586621679442525 -> Type) -> Type) (TyFun [a6989586621679442525] a6989586621679442525 -> Type))
  • data Foldr1Sym1 (l :: TyFun a6989586621679442525 (TyFun a6989586621679442525 a6989586621679442525 -> Type) -> Type) (l :: TyFun [a6989586621679442525] a6989586621679442525)
  • type Foldr1Sym2 (t :: TyFun a6989586621679442525 (TyFun a6989586621679442525 a6989586621679442525 -> Type) -> Type) (t :: [a6989586621679442525]) = Foldr1 t t
  • data ConcatSym0 (l :: TyFun [[a6989586621679442524]] [a6989586621679442524])
  • type ConcatSym1 (t :: [[a6989586621679442524]]) = Concat t
  • data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679442522 [b6989586621679442523] -> Type) (TyFun [a6989586621679442522] [b6989586621679442523] -> Type))
  • data ConcatMapSym1 (l :: TyFun a6989586621679442522 [b6989586621679442523] -> Type) (l :: TyFun [a6989586621679442522] [b6989586621679442523])
  • type ConcatMapSym2 (t :: TyFun a6989586621679442522 [b6989586621679442523] -> Type) (t :: [a6989586621679442522]) = ConcatMap t t
  • data AndSym0 (l :: TyFun [Bool] Bool)
  • type AndSym1 (t :: [Bool]) = And t
  • data OrSym0 (l :: TyFun [Bool] Bool)
  • type OrSym1 (t :: [Bool]) = Or t
  • data AnySym0 (l :: TyFun (TyFun a6989586621679442520 Bool -> Type) (TyFun [a6989586621679442520] Bool -> Type))
  • data AnySym1 (l :: TyFun a6989586621679442520 Bool -> Type) (l :: TyFun [a6989586621679442520] Bool)
  • type AnySym2 (t :: TyFun a6989586621679442520 Bool -> Type) (t :: [a6989586621679442520]) = Any t t
  • data AllSym0 (l :: TyFun (TyFun a6989586621679442521 Bool -> Type) (TyFun [a6989586621679442521] Bool -> Type))
  • data AllSym1 (l :: TyFun a6989586621679442521 Bool -> Type) (l :: TyFun [a6989586621679442521] Bool)
  • type AllSym2 (t :: TyFun a6989586621679442521 Bool -> Type) (t :: [a6989586621679442521]) = All t t
  • data ScanlSym0 (l :: TyFun (TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type) -> Type))
  • data ScanlSym1 (l :: TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (l :: TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type))
  • data ScanlSym2 (l :: TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (l :: b6989586621679442518) (l :: TyFun [a6989586621679442519] [b6989586621679442518])
  • type ScanlSym3 (t :: TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (t :: b6989586621679442518) (t :: [a6989586621679442519]) = Scanl t t t
  • data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679442517 (TyFun a6989586621679442517 a6989586621679442517 -> Type) -> Type) (TyFun [a6989586621679442517] [a6989586621679442517] -> Type))
  • data Scanl1Sym1 (l :: TyFun a6989586621679442517 (TyFun a6989586621679442517 a6989586621679442517 -> Type) -> Type) (l :: TyFun [a6989586621679442517] [a6989586621679442517])
  • type Scanl1Sym2 (t :: TyFun a6989586621679442517 (TyFun a6989586621679442517 a6989586621679442517 -> Type) -> Type) (t :: [a6989586621679442517]) = Scanl1 t t
  • data ScanrSym0 (l :: TyFun (TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type) -> Type))
  • data ScanrSym1 (l :: TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (l :: TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type))
  • data ScanrSym2 (l :: TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (l :: b6989586621679442516) (l :: TyFun [a6989586621679442515] [b6989586621679442516])
  • type ScanrSym3 (t :: TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (t :: b6989586621679442516) (t :: [a6989586621679442515]) = Scanr t t t
  • data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679442514 (TyFun a6989586621679442514 a6989586621679442514 -> Type) -> Type) (TyFun [a6989586621679442514] [a6989586621679442514] -> Type))
  • data Scanr1Sym1 (l :: TyFun a6989586621679442514 (TyFun a6989586621679442514 a6989586621679442514 -> Type) -> Type) (l :: TyFun [a6989586621679442514] [a6989586621679442514])
  • type Scanr1Sym2 (t :: TyFun a6989586621679442514 (TyFun a6989586621679442514 a6989586621679442514 -> Type) -> Type) (t :: [a6989586621679442514]) = Scanr1 t t
  • data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type) -> Type))
  • data MapAccumLSym1 (l :: TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (l :: TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type))
  • data MapAccumLSym2 (l :: TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (l :: acc6989586621679442511) (l :: TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]))
  • type MapAccumLSym3 (t :: TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (t :: acc6989586621679442511) (t :: [x6989586621679442512]) = MapAccumL t t t
  • data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type) -> Type))
  • data MapAccumRSym1 (l :: TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (l :: TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type))
  • data MapAccumRSym2 (l :: TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (l :: acc6989586621679442508) (l :: TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]))
  • type MapAccumRSym3 (t :: TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (t :: acc6989586621679442508) (t :: [x6989586621679442509]) = MapAccumR t t t
  • data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) (TyFun b6989586621679442506 [a6989586621679442507] -> Type))
  • data UnfoldrSym1 (l :: TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) (l :: TyFun b6989586621679442506 [a6989586621679442507])
  • type UnfoldrSym2 (t :: TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) (t :: b6989586621679442506) = Unfoldr t t
  • data InitsSym0 (l :: TyFun [a6989586621679442505] [[a6989586621679442505]])
  • type InitsSym1 (t :: [a6989586621679442505]) = Inits t
  • data TailsSym0 (l :: TyFun [a6989586621679442504] [[a6989586621679442504]])
  • type TailsSym1 (t :: [a6989586621679442504]) = Tails t
  • data IsPrefixOfSym0 (l :: TyFun [a6989586621679442503] (TyFun [a6989586621679442503] Bool -> Type))
  • data IsPrefixOfSym1 (l :: [a6989586621679442503]) (l :: TyFun [a6989586621679442503] Bool)
  • type IsPrefixOfSym2 (t :: [a6989586621679442503]) (t :: [a6989586621679442503]) = IsPrefixOf t t
  • data IsSuffixOfSym0 (l :: TyFun [a6989586621679442502] (TyFun [a6989586621679442502] Bool -> Type))
  • data IsSuffixOfSym1 (l :: [a6989586621679442502]) (l :: TyFun [a6989586621679442502] Bool)
  • type IsSuffixOfSym2 (t :: [a6989586621679442502]) (t :: [a6989586621679442502]) = IsSuffixOf t t
  • data IsInfixOfSym0 (l :: TyFun [a6989586621679442501] (TyFun [a6989586621679442501] Bool -> Type))
  • data IsInfixOfSym1 (l :: [a6989586621679442501]) (l :: TyFun [a6989586621679442501] Bool)
  • type IsInfixOfSym2 (t :: [a6989586621679442501]) (t :: [a6989586621679442501]) = IsInfixOf t t
  • data ElemSym0 (l :: TyFun a6989586621679442500 (TyFun [a6989586621679442500] Bool -> Type))
  • data ElemSym1 (l :: a6989586621679442500) (l :: TyFun [a6989586621679442500] Bool)
  • type ElemSym2 (t :: a6989586621679442500) (t :: [a6989586621679442500]) = Elem t t
  • data NotElemSym0 (l :: TyFun a6989586621679442499 (TyFun [a6989586621679442499] Bool -> Type))
  • data NotElemSym1 (l :: a6989586621679442499) (l :: TyFun [a6989586621679442499] Bool)
  • type NotElemSym2 (t :: a6989586621679442499) (t :: [a6989586621679442499]) = NotElem t t
  • data ZipSym0 (l :: TyFun [a6989586621679442497] (TyFun [b6989586621679442498] [(a6989586621679442497, b6989586621679442498)] -> Type))
  • data ZipSym1 (l :: [a6989586621679442497]) (l :: TyFun [b6989586621679442498] [(a6989586621679442497, b6989586621679442498)])
  • type ZipSym2 (t :: [a6989586621679442497]) (t :: [b6989586621679442498]) = Zip t t
  • data Zip3Sym0 (l :: TyFun [a6989586621679442494] (TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type) -> Type))
  • data Zip3Sym1 (l :: [a6989586621679442494]) (l :: TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type))
  • data Zip3Sym2 (l :: [a6989586621679442494]) (l :: [b6989586621679442495]) (l :: TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)])
  • type Zip3Sym3 (t :: [a6989586621679442494]) (t :: [b6989586621679442495]) (t :: [c6989586621679442496]) = Zip3 t t t
  • data ZipWithSym0 (l :: TyFun (TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type) -> Type))
  • data ZipWithSym1 (l :: TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (l :: TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type))
  • data ZipWithSym2 (l :: TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (l :: [a6989586621679442491]) (l :: TyFun [b6989586621679442492] [c6989586621679442493])
  • type ZipWithSym3 (t :: TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (t :: [a6989586621679442491]) (t :: [b6989586621679442492]) = ZipWith t t t
  • data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type) -> Type))
  • data ZipWith3Sym1 (l :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type))
  • data ZipWith3Sym2 (l :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (l :: [a6989586621679442487]) (l :: TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type))
  • data ZipWith3Sym3 (l :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (l :: [a6989586621679442487]) (l :: [b6989586621679442488]) (l :: TyFun [c6989586621679442489] [d6989586621679442490])
  • type ZipWith3Sym4 (t :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (t :: [a6989586621679442487]) (t :: [b6989586621679442488]) (t :: [c6989586621679442489]) = ZipWith3 t t t t
  • data UnzipSym0 (l :: TyFun [(a6989586621679442485, b6989586621679442486)] ([a6989586621679442485], [b6989586621679442486]))
  • type UnzipSym1 (t :: [(a6989586621679442485, b6989586621679442486)]) = Unzip t
  • data Unzip3Sym0 (l :: TyFun [(a6989586621679442482, b6989586621679442483, c6989586621679442484)] ([a6989586621679442482], [b6989586621679442483], [c6989586621679442484]))
  • type Unzip3Sym1 (t :: [(a6989586621679442482, b6989586621679442483, c6989586621679442484)]) = Unzip3 t
  • data Unzip4Sym0 (l :: TyFun [(a6989586621679442478, b6989586621679442479, c6989586621679442480, d6989586621679442481)] ([a6989586621679442478], [b6989586621679442479], [c6989586621679442480], [d6989586621679442481]))
  • type Unzip4Sym1 (t :: [(a6989586621679442478, b6989586621679442479, c6989586621679442480, d6989586621679442481)]) = Unzip4 t
  • data Unzip5Sym0 (l :: TyFun [(a6989586621679442473, b6989586621679442474, c6989586621679442475, d6989586621679442476, e6989586621679442477)] ([a6989586621679442473], [b6989586621679442474], [c6989586621679442475], [d6989586621679442476], [e6989586621679442477]))
  • type Unzip5Sym1 (t :: [(a6989586621679442473, b6989586621679442474, c6989586621679442475, d6989586621679442476, e6989586621679442477)]) = Unzip5 t
  • data Unzip6Sym0 (l :: TyFun [(a6989586621679442467, b6989586621679442468, c6989586621679442469, d6989586621679442470, e6989586621679442471, f6989586621679442472)] ([a6989586621679442467], [b6989586621679442468], [c6989586621679442469], [d6989586621679442470], [e6989586621679442471], [f6989586621679442472]))
  • type Unzip6Sym1 (t :: [(a6989586621679442467, b6989586621679442468, c6989586621679442469, d6989586621679442470, e6989586621679442471, f6989586621679442472)]) = Unzip6 t
  • data Unzip7Sym0 (l :: TyFun [(a6989586621679442460, b6989586621679442461, c6989586621679442462, d6989586621679442463, e6989586621679442464, f6989586621679442465, g6989586621679442466)] ([a6989586621679442460], [b6989586621679442461], [c6989586621679442462], [d6989586621679442463], [e6989586621679442464], [f6989586621679442465], [g6989586621679442466]))
  • type Unzip7Sym1 (t :: [(a6989586621679442460, b6989586621679442461, c6989586621679442462, d6989586621679442463, e6989586621679442464, f6989586621679442465, g6989586621679442466)]) = Unzip7 t
  • data DeleteSym0 (l :: TyFun a6989586621679442459 (TyFun [a6989586621679442459] [a6989586621679442459] -> Type))
  • data DeleteSym1 (l :: a6989586621679442459) (l :: TyFun [a6989586621679442459] [a6989586621679442459])
  • type DeleteSym2 (t :: a6989586621679442459) (t :: [a6989586621679442459]) = Delete t t
  • data (\\@#@$) (l :: TyFun [a6989586621679442458] (TyFun [a6989586621679442458] [a6989586621679442458] -> Type))
  • data (l :: [a6989586621679442458]) \\@#@$$ (l :: TyFun [a6989586621679442458] [a6989586621679442458])
  • type (\\@#@$$$) (t :: [a6989586621679442458]) (t :: [a6989586621679442458]) = (\\) t t
  • data IntersectSym0 (l :: TyFun [a6989586621679442445] (TyFun [a6989586621679442445] [a6989586621679442445] -> Type))
  • data IntersectSym1 (l :: [a6989586621679442445]) (l :: TyFun [a6989586621679442445] [a6989586621679442445])
  • type IntersectSym2 (t :: [a6989586621679442445]) (t :: [a6989586621679442445]) = Intersect t t
  • data InsertSym0 (l :: TyFun a6989586621679442432 (TyFun [a6989586621679442432] [a6989586621679442432] -> Type))
  • data InsertSym1 (l :: a6989586621679442432) (l :: TyFun [a6989586621679442432] [a6989586621679442432])
  • type InsertSym2 (t :: a6989586621679442432) (t :: [a6989586621679442432]) = Insert t t
  • data SortSym0 (l :: TyFun [a6989586621679442431] [a6989586621679442431])
  • type SortSym1 (t :: [a6989586621679442431]) = Sort t
  • data DeleteBySym0 (l :: TyFun (TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) (TyFun a6989586621679442457 (TyFun [a6989586621679442457] [a6989586621679442457] -> Type) -> Type))
  • data DeleteBySym1 (l :: TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) (l :: TyFun a6989586621679442457 (TyFun [a6989586621679442457] [a6989586621679442457] -> Type))
  • data DeleteBySym2 (l :: TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) (l :: a6989586621679442457) (l :: TyFun [a6989586621679442457] [a6989586621679442457])
  • type DeleteBySym3 (t :: TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) (t :: a6989586621679442457) (t :: [a6989586621679442457]) = DeleteBy t t t
  • data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) (TyFun [a6989586621679442456] (TyFun [a6989586621679442456] [a6989586621679442456] -> Type) -> Type))
  • data DeleteFirstsBySym1 (l :: TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) (l :: TyFun [a6989586621679442456] (TyFun [a6989586621679442456] [a6989586621679442456] -> Type))
  • data DeleteFirstsBySym2 (l :: TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) (l :: [a6989586621679442456]) (l :: TyFun [a6989586621679442456] [a6989586621679442456])
  • type DeleteFirstsBySym3 (t :: TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) (t :: [a6989586621679442456]) (t :: [a6989586621679442456]) = DeleteFirstsBy t t t
  • data IntersectBySym0 (l :: TyFun (TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) (TyFun [a6989586621679442444] (TyFun [a6989586621679442444] [a6989586621679442444] -> Type) -> Type))
  • data IntersectBySym1 (l :: TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) (l :: TyFun [a6989586621679442444] (TyFun [a6989586621679442444] [a6989586621679442444] -> Type))
  • data IntersectBySym2 (l :: TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) (l :: [a6989586621679442444]) (l :: TyFun [a6989586621679442444] [a6989586621679442444])
  • data SortBySym0 (l :: TyFun (TyFun a6989586621679442455 (TyFun a6989586621679442455 Ordering -> Type) -> Type) (TyFun [a6989586621679442455] [a6989586621679442455] -> Type))
  • data SortBySym1 (l :: TyFun a6989586621679442455 (TyFun a6989586621679442455 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679442455] [a6989586621679442455])
  • type SortBySym2 (t :: TyFun a6989586621679442455 (TyFun a6989586621679442455 Ordering -> Type) -> Type) (t :: [a6989586621679442455]) = SortBy t t
  • data InsertBySym0 (l :: TyFun (TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) (TyFun a6989586621679442454 (TyFun [a6989586621679442454] [a6989586621679442454] -> Type) -> Type))
  • data InsertBySym1 (l :: TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) (l :: TyFun a6989586621679442454 (TyFun [a6989586621679442454] [a6989586621679442454] -> Type))
  • data InsertBySym2 (l :: TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) (l :: a6989586621679442454) (l :: TyFun [a6989586621679442454] [a6989586621679442454])
  • type InsertBySym3 (t :: TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) (t :: a6989586621679442454) (t :: [a6989586621679442454]) = InsertBy t t t
  • data MaximumBySym0 (l :: TyFun (TyFun a6989586621679442453 (TyFun a6989586621679442453 Ordering -> Type) -> Type) (TyFun [a6989586621679442453] a6989586621679442453 -> Type))
  • data MaximumBySym1 (l :: TyFun a6989586621679442453 (TyFun a6989586621679442453 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679442453] a6989586621679442453)
  • type MaximumBySym2 (t :: TyFun a6989586621679442453 (TyFun a6989586621679442453 Ordering -> Type) -> Type) (t :: [a6989586621679442453]) = MaximumBy t t
  • data MinimumBySym0 (l :: TyFun (TyFun a6989586621679442452 (TyFun a6989586621679442452 Ordering -> Type) -> Type) (TyFun [a6989586621679442452] a6989586621679442452 -> Type))
  • data MinimumBySym1 (l :: TyFun a6989586621679442452 (TyFun a6989586621679442452 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679442452] a6989586621679442452)
  • type MinimumBySym2 (t :: TyFun a6989586621679442452 (TyFun a6989586621679442452 Ordering -> Type) -> Type) (t :: [a6989586621679442452]) = MinimumBy t t
  • data LengthSym0 (l :: TyFun [a6989586621679442423] Nat)
  • type LengthSym1 (t :: [a6989586621679442423]) = Length t
  • data SumSym0 (l :: TyFun [a6989586621679442425] a6989586621679442425)
  • type SumSym1 (t :: [a6989586621679442425]) = Sum t
  • data ProductSym0 (l :: TyFun [a6989586621679442424] a6989586621679442424)
  • type ProductSym1 (t :: [a6989586621679442424]) = Product t
  • data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679442422 [a6989586621679442422] -> Type))
  • data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679442422 [a6989586621679442422])
  • type ReplicateSym2 (t :: Nat) (t :: a6989586621679442422) = Replicate t t
  • data TransposeSym0 (l :: TyFun [[a6989586621679442421]] [[a6989586621679442421]])
  • type TransposeSym1 (t :: [[a6989586621679442421]]) = Transpose t
  • data TakeSym0 (l :: TyFun Nat (TyFun [a6989586621679442438] [a6989586621679442438] -> Type))
  • data TakeSym1 (l :: Nat) (l :: TyFun [a6989586621679442438] [a6989586621679442438])
  • type TakeSym2 (t :: Nat) (t :: [a6989586621679442438]) = Take t t
  • data DropSym0 (l :: TyFun Nat (TyFun [a6989586621679442437] [a6989586621679442437] -> Type))
  • data DropSym1 (l :: Nat) (l :: TyFun [a6989586621679442437] [a6989586621679442437])
  • type DropSym2 (t :: Nat) (t :: [a6989586621679442437]) = Drop t t
  • data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679442436] ([a6989586621679442436], [a6989586621679442436]) -> Type))
  • data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679442436] ([a6989586621679442436], [a6989586621679442436]))
  • type SplitAtSym2 (t :: Nat) (t :: [a6989586621679442436]) = SplitAt t t
  • data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679442443 Bool -> Type) (TyFun [a6989586621679442443] [a6989586621679442443] -> Type))
  • data TakeWhileSym1 (l :: TyFun a6989586621679442443 Bool -> Type) (l :: TyFun [a6989586621679442443] [a6989586621679442443])
  • type TakeWhileSym2 (t :: TyFun a6989586621679442443 Bool -> Type) (t :: [a6989586621679442443]) = TakeWhile t t
  • data DropWhileSym0 (l :: TyFun (TyFun a6989586621679442442 Bool -> Type) (TyFun [a6989586621679442442] [a6989586621679442442] -> Type))
  • data DropWhileSym1 (l :: TyFun a6989586621679442442 Bool -> Type) (l :: TyFun [a6989586621679442442] [a6989586621679442442])
  • type DropWhileSym2 (t :: TyFun a6989586621679442442 Bool -> Type) (t :: [a6989586621679442442]) = DropWhile t t
  • data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679442441 Bool -> Type) (TyFun [a6989586621679442441] [a6989586621679442441] -> Type))
  • data DropWhileEndSym1 (l :: TyFun a6989586621679442441 Bool -> Type) (l :: TyFun [a6989586621679442441] [a6989586621679442441])
  • type DropWhileEndSym2 (t :: TyFun a6989586621679442441 Bool -> Type) (t :: [a6989586621679442441]) = DropWhileEnd t t
  • data SpanSym0 (l :: TyFun (TyFun a6989586621679442440 Bool -> Type) (TyFun [a6989586621679442440] ([a6989586621679442440], [a6989586621679442440]) -> Type))
  • data SpanSym1 (l :: TyFun a6989586621679442440 Bool -> Type) (l :: TyFun [a6989586621679442440] ([a6989586621679442440], [a6989586621679442440]))
  • type SpanSym2 (t :: TyFun a6989586621679442440 Bool -> Type) (t :: [a6989586621679442440]) = Span t t
  • data BreakSym0 (l :: TyFun (TyFun a6989586621679442439 Bool -> Type) (TyFun [a6989586621679442439] ([a6989586621679442439], [a6989586621679442439]) -> Type))
  • data BreakSym1 (l :: TyFun a6989586621679442439 Bool -> Type) (l :: TyFun [a6989586621679442439] ([a6989586621679442439], [a6989586621679442439]))
  • type BreakSym2 (t :: TyFun a6989586621679442439 Bool -> Type) (t :: [a6989586621679442439]) = Break t t
  • data StripPrefixSym0 (l :: TyFun [a6989586621679922315] (TyFun [a6989586621679922315] (Maybe [a6989586621679922315]) -> Type))
  • data StripPrefixSym1 (l :: [a6989586621679922315]) (l :: TyFun [a6989586621679922315] (Maybe [a6989586621679922315]))
  • type StripPrefixSym2 (t :: [a6989586621679922315]) (t :: [a6989586621679922315]) = StripPrefix t t
  • data MaximumSym0 (l :: TyFun [a6989586621679442434] a6989586621679442434)
  • type MaximumSym1 (t :: [a6989586621679442434]) = Maximum t
  • data MinimumSym0 (l :: TyFun [a6989586621679442433] a6989586621679442433)
  • type MinimumSym1 (t :: [a6989586621679442433]) = Minimum t
  • data GroupSym0 (l :: TyFun [a6989586621679442435] [[a6989586621679442435]])
  • type GroupSym1 (t :: [a6989586621679442435]) = Group t
  • data GroupBySym0 (l :: TyFun (TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) (TyFun [a6989586621679442430] [[a6989586621679442430]] -> Type))
  • data GroupBySym1 (l :: TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) (l :: TyFun [a6989586621679442430] [[a6989586621679442430]])
  • type GroupBySym2 (t :: TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) (t :: [a6989586621679442430]) = GroupBy t t
  • data LookupSym0 (l :: TyFun a6989586621679442428 (TyFun [(a6989586621679442428, b6989586621679442429)] (Maybe b6989586621679442429) -> Type))
  • data LookupSym1 (l :: a6989586621679442428) (l :: TyFun [(a6989586621679442428, b6989586621679442429)] (Maybe b6989586621679442429))
  • type LookupSym2 (t :: a6989586621679442428) (t :: [(a6989586621679442428, b6989586621679442429)]) = Lookup t t
  • data FindSym0 (l :: TyFun (TyFun a6989586621679442450 Bool -> Type) (TyFun [a6989586621679442450] (Maybe a6989586621679442450) -> Type))
  • data FindSym1 (l :: TyFun a6989586621679442450 Bool -> Type) (l :: TyFun [a6989586621679442450] (Maybe a6989586621679442450))
  • type FindSym2 (t :: TyFun a6989586621679442450 Bool -> Type) (t :: [a6989586621679442450]) = Find t t
  • data FilterSym0 (l :: TyFun (TyFun a6989586621679442451 Bool -> Type) (TyFun [a6989586621679442451] [a6989586621679442451] -> Type))
  • data FilterSym1 (l :: TyFun a6989586621679442451 Bool -> Type) (l :: TyFun [a6989586621679442451] [a6989586621679442451])
  • type FilterSym2 (t :: TyFun a6989586621679442451 Bool -> Type) (t :: [a6989586621679442451]) = Filter t t
  • data PartitionSym0 (l :: TyFun (TyFun a6989586621679442427 Bool -> Type) (TyFun [a6989586621679442427] ([a6989586621679442427], [a6989586621679442427]) -> Type))
  • data PartitionSym1 (l :: TyFun a6989586621679442427 Bool -> Type) (l :: TyFun [a6989586621679442427] ([a6989586621679442427], [a6989586621679442427]))
  • type PartitionSym2 (t :: TyFun a6989586621679442427 Bool -> Type) (t :: [a6989586621679442427]) = Partition t t
  • data (!!@#@$) (l :: TyFun [a6989586621679442420] (TyFun Nat a6989586621679442420 -> Type))
  • data (l :: [a6989586621679442420]) !!@#@$$ (l :: TyFun Nat a6989586621679442420)
  • type (!!@#@$$$) (t :: [a6989586621679442420]) (t :: Nat) = (!!) t t
  • data ElemIndexSym0 (l :: TyFun a6989586621679442449 (TyFun [a6989586621679442449] (Maybe Nat) -> Type))
  • data ElemIndexSym1 (l :: a6989586621679442449) (l :: TyFun [a6989586621679442449] (Maybe Nat))
  • type ElemIndexSym2 (t :: a6989586621679442449) (t :: [a6989586621679442449]) = ElemIndex t t
  • data ElemIndicesSym0 (l :: TyFun a6989586621679442448 (TyFun [a6989586621679442448] [Nat] -> Type))
  • data ElemIndicesSym1 (l :: a6989586621679442448) (l :: TyFun [a6989586621679442448] [Nat])
  • type ElemIndicesSym2 (t :: a6989586621679442448) (t :: [a6989586621679442448]) = ElemIndices t t
  • data FindIndexSym0 (l :: TyFun (TyFun a6989586621679442447 Bool -> Type) (TyFun [a6989586621679442447] (Maybe Nat) -> Type))
  • data FindIndexSym1 (l :: TyFun a6989586621679442447 Bool -> Type) (l :: TyFun [a6989586621679442447] (Maybe Nat))
  • type FindIndexSym2 (t :: TyFun a6989586621679442447 Bool -> Type) (t :: [a6989586621679442447]) = FindIndex t t
  • data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679442446 Bool -> Type) (TyFun [a6989586621679442446] [Nat] -> Type))
  • data FindIndicesSym1 (l :: TyFun a6989586621679442446 Bool -> Type) (l :: TyFun [a6989586621679442446] [Nat])
  • type FindIndicesSym2 (t :: TyFun a6989586621679442446 Bool -> Type) (t :: [a6989586621679442446]) = FindIndices t t
  • data Zip4Sym0 (l :: TyFun [a6989586621679922311] (TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type) -> Type))
  • data Zip4Sym1 (l :: [a6989586621679922311]) (l :: TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type))
  • data Zip4Sym2 (l :: [a6989586621679922311]) (l :: [b6989586621679922312]) (l :: TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type))
  • data Zip4Sym3 (l :: [a6989586621679922311]) (l :: [b6989586621679922312]) (l :: [c6989586621679922313]) (l :: TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)])
  • type Zip4Sym4 (t :: [a6989586621679922311]) (t :: [b6989586621679922312]) (t :: [c6989586621679922313]) (t :: [d6989586621679922314]) = Zip4 t t t t
  • data Zip5Sym0 (l :: TyFun [a6989586621679922306] (TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type) -> Type))
  • data Zip5Sym1 (l :: [a6989586621679922306]) (l :: TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type))
  • data Zip5Sym2 (l :: [a6989586621679922306]) (l :: [b6989586621679922307]) (l :: TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type))
  • data Zip5Sym3 (l :: [a6989586621679922306]) (l :: [b6989586621679922307]) (l :: [c6989586621679922308]) (l :: TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type))
  • data Zip5Sym4 (l :: [a6989586621679922306]) (l :: [b6989586621679922307]) (l :: [c6989586621679922308]) (l :: [d6989586621679922309]) (l :: TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)])
  • type Zip5Sym5 (t :: [a6989586621679922306]) (t :: [b6989586621679922307]) (t :: [c6989586621679922308]) (t :: [d6989586621679922309]) (t :: [e6989586621679922310]) = Zip5 t t t t t
  • data Zip6Sym0 (l :: TyFun [a6989586621679922300] (TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type) -> Type))
  • data Zip6Sym1 (l :: [a6989586621679922300]) (l :: TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type))
  • data Zip6Sym2 (l :: [a6989586621679922300]) (l :: [b6989586621679922301]) (l :: TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type))
  • data Zip6Sym3 (l :: [a6989586621679922300]) (l :: [b6989586621679922301]) (l :: [c6989586621679922302]) (l :: TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type))
  • data Zip6Sym4 (l :: [a6989586621679922300]) (l :: [b6989586621679922301]) (l :: [c6989586621679922302]) (l :: [d6989586621679922303]) (l :: TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type))
  • data Zip6Sym5 (l :: [a6989586621679922300]) (l :: [b6989586621679922301]) (l :: [c6989586621679922302]) (l :: [d6989586621679922303]) (l :: [e6989586621679922304]) (l :: TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)])
  • type Zip6Sym6 (t :: [a6989586621679922300]) (t :: [b6989586621679922301]) (t :: [c6989586621679922302]) (t :: [d6989586621679922303]) (t :: [e6989586621679922304]) (t :: [f6989586621679922305]) = Zip6 t t t t t t
  • data Zip7Sym0 (l :: TyFun [a6989586621679922293] (TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
  • data Zip7Sym1 (l :: [a6989586621679922293]) (l :: TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type))
  • data Zip7Sym2 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type))
  • data Zip7Sym3 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: [c6989586621679922295]) (l :: TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type))
  • data Zip7Sym4 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: [c6989586621679922295]) (l :: [d6989586621679922296]) (l :: TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type))
  • data Zip7Sym5 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: [c6989586621679922295]) (l :: [d6989586621679922296]) (l :: [e6989586621679922297]) (l :: TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type))
  • data Zip7Sym6 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: [c6989586621679922295]) (l :: [d6989586621679922296]) (l :: [e6989586621679922297]) (l :: [f6989586621679922298]) (l :: TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)])
  • type Zip7Sym7 (t :: [a6989586621679922293]) (t :: [b6989586621679922294]) (t :: [c6989586621679922295]) (t :: [d6989586621679922296]) (t :: [e6989586621679922297]) (t :: [f6989586621679922298]) (t :: [g6989586621679922299]) = Zip7 t t t t t t t
  • data ZipWith4Sym0 (l :: TyFun (TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type) -> Type))
  • data ZipWith4Sym1 (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type))
  • data ZipWith4Sym2 (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922288]) (l :: TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type))
  • data ZipWith4Sym3 (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922288]) (l :: [b6989586621679922289]) (l :: TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type))
  • data ZipWith4Sym4 (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922288]) (l :: [b6989586621679922289]) (l :: [c6989586621679922290]) (l :: TyFun [d6989586621679922291] [e6989586621679922292])
  • type ZipWith4Sym5 (t :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679922288]) (t :: [b6989586621679922289]) (t :: [c6989586621679922290]) (t :: [d6989586621679922291]) = ZipWith4 t t t t t
  • data ZipWith5Sym0 (l :: TyFun (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type) -> Type))
  • data ZipWith5Sym1 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type))
  • data ZipWith5Sym2 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922282]) (l :: TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type))
  • data ZipWith5Sym3 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922282]) (l :: [b6989586621679922283]) (l :: TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type))
  • data ZipWith5Sym4 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922282]) (l :: [b6989586621679922283]) (l :: [c6989586621679922284]) (l :: TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type))
  • data ZipWith5Sym5 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922282]) (l :: [b6989586621679922283]) (l :: [c6989586621679922284]) (l :: [d6989586621679922285]) (l :: TyFun [e6989586621679922286] [f6989586621679922287])
  • type ZipWith5Sym6 (t :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679922282]) (t :: [b6989586621679922283]) (t :: [c6989586621679922284]) (t :: [d6989586621679922285]) (t :: [e6989586621679922286]) = ZipWith5 t t t t t t
  • data ZipWith6Sym0 (l :: TyFun (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
  • data ZipWith6Sym1 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type))
  • data ZipWith6Sym2 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type))
  • data ZipWith6Sym3 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: [b6989586621679922276]) (l :: TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type))
  • data ZipWith6Sym4 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: [b6989586621679922276]) (l :: [c6989586621679922277]) (l :: TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type))
  • data ZipWith6Sym5 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: [b6989586621679922276]) (l :: [c6989586621679922277]) (l :: [d6989586621679922278]) (l :: TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type))
  • data ZipWith6Sym6 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: [b6989586621679922276]) (l :: [c6989586621679922277]) (l :: [d6989586621679922278]) (l :: [e6989586621679922279]) (l :: TyFun [f6989586621679922280] [g6989586621679922281])
  • type ZipWith6Sym7 (t :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679922275]) (t :: [b6989586621679922276]) (t :: [c6989586621679922277]) (t :: [d6989586621679922278]) (t :: [e6989586621679922279]) (t :: [f6989586621679922280]) = ZipWith6 t t t t t t t
  • data ZipWith7Sym0 (l :: TyFun (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
  • data ZipWith7Sym1 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
  • data ZipWith7Sym2 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type))
  • data ZipWith7Sym3 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type))
  • data ZipWith7Sym4 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: [c6989586621679922269]) (l :: TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type))
  • data ZipWith7Sym5 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: [c6989586621679922269]) (l :: [d6989586621679922270]) (l :: TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type))
  • data ZipWith7Sym6 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: [c6989586621679922269]) (l :: [d6989586621679922270]) (l :: [e6989586621679922271]) (l :: TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type))
  • data ZipWith7Sym7 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: [c6989586621679922269]) (l :: [d6989586621679922270]) (l :: [e6989586621679922271]) (l :: [f6989586621679922272]) (l :: TyFun [g6989586621679922273] [h6989586621679922274])
  • type ZipWith7Sym8 (t :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679922267]) (t :: [b6989586621679922268]) (t :: [c6989586621679922269]) (t :: [d6989586621679922270]) (t :: [e6989586621679922271]) (t :: [f6989586621679922272]) (t :: [g6989586621679922273]) = ZipWith7 t t t t t t t t
  • data UnlinesSym0 (l :: TyFun [Symbol] Symbol)
  • type UnlinesSym1 (t :: [Symbol]) = Unlines t
  • data UnwordsSym0 (l :: TyFun [Symbol] Symbol)
  • type UnwordsSym1 (t :: [Symbol]) = Unwords t
  • data NubSym0 (l :: TyFun [a6989586621679442419] [a6989586621679442419])
  • type NubSym1 (t :: [a6989586621679442419]) = Nub t
  • data NubBySym0 (l :: TyFun (TyFun a6989586621679442418 (TyFun a6989586621679442418 Bool -> Type) -> Type) (TyFun [a6989586621679442418] [a6989586621679442418] -> Type))
  • data NubBySym1 (l :: TyFun a6989586621679442418 (TyFun a6989586621679442418 Bool -> Type) -> Type) (l :: TyFun [a6989586621679442418] [a6989586621679442418])
  • type NubBySym2 (t :: TyFun a6989586621679442418 (TyFun a6989586621679442418 Bool -> Type) -> Type) (t :: [a6989586621679442418]) = NubBy t t
  • data UnionSym0 (l :: TyFun [a6989586621679442415] (TyFun [a6989586621679442415] [a6989586621679442415] -> Type))
  • data UnionSym1 (l :: [a6989586621679442415]) (l :: TyFun [a6989586621679442415] [a6989586621679442415])
  • type UnionSym2 (t :: [a6989586621679442415]) (t :: [a6989586621679442415]) = Union t t
  • data UnionBySym0 (l :: TyFun (TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) (TyFun [a6989586621679442416] (TyFun [a6989586621679442416] [a6989586621679442416] -> Type) -> Type))
  • data UnionBySym1 (l :: TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) (l :: TyFun [a6989586621679442416] (TyFun [a6989586621679442416] [a6989586621679442416] -> Type))
  • data UnionBySym2 (l :: TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) (l :: [a6989586621679442416]) (l :: TyFun [a6989586621679442416] [a6989586621679442416])
  • type UnionBySym3 (t :: TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) (t :: [a6989586621679442416]) (t :: [a6989586621679442416]) = UnionBy t t t
  • data GenericLengthSym0 (l :: TyFun [a6989586621679442414] i6989586621679442413)
  • type GenericLengthSym1 (t :: [a6989586621679442414]) = GenericLength t
  • data GenericTakeSym0 (l :: TyFun i6989586621679922265 (TyFun [a6989586621679922266] [a6989586621679922266] -> Type))
  • data GenericTakeSym1 (l :: i6989586621679922265) (l :: TyFun [a6989586621679922266] [a6989586621679922266])
  • type GenericTakeSym2 (t :: i6989586621679922265) (t :: [a6989586621679922266]) = GenericTake t t
  • data GenericDropSym0 (l :: TyFun i6989586621679922263 (TyFun [a6989586621679922264] [a6989586621679922264] -> Type))
  • data GenericDropSym1 (l :: i6989586621679922263) (l :: TyFun [a6989586621679922264] [a6989586621679922264])
  • type GenericDropSym2 (t :: i6989586621679922263) (t :: [a6989586621679922264]) = GenericDrop t t
  • data GenericSplitAtSym0 (l :: TyFun i6989586621679922261 (TyFun [a6989586621679922262] ([a6989586621679922262], [a6989586621679922262]) -> Type))
  • data GenericSplitAtSym1 (l :: i6989586621679922261) (l :: TyFun [a6989586621679922262] ([a6989586621679922262], [a6989586621679922262]))
  • type GenericSplitAtSym2 (t :: i6989586621679922261) (t :: [a6989586621679922262]) = GenericSplitAt t t
  • data GenericIndexSym0 (l :: TyFun [a6989586621679922260] (TyFun i6989586621679922259 a6989586621679922260 -> Type))
  • data GenericIndexSym1 (l :: [a6989586621679922260]) (l :: TyFun i6989586621679922259 a6989586621679922260)
  • type GenericIndexSym2 (t :: [a6989586621679922260]) (t :: i6989586621679922259) = GenericIndex t t
  • data GenericReplicateSym0 (l :: TyFun i6989586621679922257 (TyFun a6989586621679922258 [a6989586621679922258] -> Type))
  • data GenericReplicateSym1 (l :: i6989586621679922257) (l :: TyFun a6989586621679922258 [a6989586621679922258])
  • type GenericReplicateSym2 (t :: i6989586621679922257) (t :: a6989586621679922258) = GenericReplicate t t

Basic functions

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

Null '[] = TrueSym0 
Null ((:) _ _) = FalseSym0 

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

Equations

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

List transformations

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

Equations

Map _ '[] = '[] 
Map f ((:) x xs) = Apply (Apply (:@#@$) (Apply f x)) (Apply (Apply MapSym0 f) xs) 

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

Equations

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

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

Equations

Intersperse _ '[] = '[] 
Intersperse sep ((:) x xs) = Apply (Apply (:@#@$) x) (Apply (Apply PrependToAllSym0 sep) xs) 

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

Permutations xs0 = Apply (Apply (:@#@$) xs0) (Apply (Apply (Let6989586621679454128PermsSym1 xs0) xs0) '[]) 

Reducing lists (folds)

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

Foldr k z a_6989586621679420172 = Apply (Let6989586621679420177GoSym3 k z a_6989586621679420172) a_6989586621679420172 

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

Equations

Foldr1 _ '[x] = x 
Foldr1 f ((:) x ((:) wild_6989586621679443002 wild_6989586621679443004)) = Apply (Apply f x) (Apply (Apply Foldr1Sym0 f) (Let6989586621679453800XsSym4 f x wild_6989586621679443002 wild_6989586621679443004)) 
Foldr1 _ '[] = Apply ErrorSym0 "Data.Singletons.List.foldr1: empty list" 

Special folds

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

Equations

Concat a_6989586621679453779 = Apply (Apply (Apply FoldrSym0 (++@#@$)) '[]) a_6989586621679453779 

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

Equations

ConcatMap f a_6989586621679453775 = Apply (Apply (Apply FoldrSym0 (Apply (Apply (.@#@$) (++@#@$)) f)) '[]) a_6989586621679453775 

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

Equations

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

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

Equations

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

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

Equations

Any _ '[] = FalseSym0 
Any p ((:) x xs) = Apply (Apply (||@#@$) (Apply p x)) (Apply (Apply AnySym0 p) xs) 

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

Maximum '[] = Apply ErrorSym0 "Data.Singletons.List.maximum: empty list" 
Maximum ((:) wild_6989586621679443106 wild_6989586621679443108) = Apply (Apply Foldl1Sym0 MaxSym0) (Let6989586621679454005XsSym2 wild_6989586621679443106 wild_6989586621679443108) 

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

Equations

Minimum '[] = Apply ErrorSym0 "Data.Singletons.List.minimum: empty list" 
Minimum ((:) wild_6989586621679443110 wild_6989586621679443112) = Apply (Apply Foldl1Sym0 MinSym0) (Let6989586621679454019XsSym2 wild_6989586621679443110 wild_6989586621679443112) 

Building lists

Scans

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

Equations

Scanl f q ls = Apply (Apply (:@#@$) q) (Case_6989586621679453579 f q ls ls) 

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

Equations

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

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

Equations

Scanr _ q0 '[] = Apply (Apply (:@#@$) q0) '[] 
Scanr f q0 ((:) x xs) = Case_6989586621679453556 f q0 x xs (Let6989586621679453537Scrutinee_6989586621679443010Sym4 f q0 x xs) 

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

Equations

Scanr1 _ '[] = '[] 
Scanr1 _ '[x] = Apply (Apply (:@#@$) x) '[] 
Scanr1 f ((:) x ((:) wild_6989586621679443022 wild_6989586621679443024)) = Case_6989586621679453512 f x wild_6989586621679443022 wild_6989586621679443024 (Let6989586621679453493Scrutinee_6989586621679443016Sym4 f x wild_6989586621679443022 wild_6989586621679443024) 

Accumulating maps

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

Equations

MapAccumL _ s '[] = Apply (Apply Tuple2Sym0 s) '[] 
MapAccumL f s ((:) x xs) = Apply (Apply Tuple2Sym0 (Let6989586621679453323S''Sym4 f s x xs)) (Apply (Apply (:@#@$) (Let6989586621679453323YSym4 f s x xs)) (Let6989586621679453323YsSym4 f s x xs)) 

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

Equations

MapAccumR _ s '[] = Apply (Apply Tuple2Sym0 s) '[] 
MapAccumR f s ((:) x xs) = Apply (Apply Tuple2Sym0 (Let6989586621679453166S''Sym4 f s x xs)) (Apply (Apply (:@#@$) (Let6989586621679453166YSym4 f s x xs)) (Let6989586621679453166YsSym4 f s x xs)) 

Infinite lists

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

Equations

Replicate n x = Case_6989586621679451813 n x (Let6989586621679451805Scrutinee_6989586621679443118Sym2 n x) 

Unfolding

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

Equations

Unfoldr f b = Case_6989586621679453141 f b (Let6989586621679453133Scrutinee_6989586621679443026Sym2 f b) 

Sublists

Extracting sublists

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

Equations

Take _ '[] = '[] 
Take n ((:) x xs) = Case_6989586621679452010 n x xs (Let6989586621679451997Scrutinee_6989586621679443102Sym3 n x xs) 

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

Equations

Drop _ '[] = '[] 
Drop n ((:) x xs) = Case_6989586621679451982 n x xs (Let6989586621679451969Scrutinee_6989586621679443104Sym3 n x xs) 

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

Equations

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

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

Equations

TakeWhile _ '[] = '[] 
TakeWhile p ((:) x xs) = Case_6989586621679452344 p x xs (Let6989586621679452331Scrutinee_6989586621679443092Sym3 p x xs) 

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

Equations

DropWhile _ '[] = '[] 
DropWhile p ((:) x xs') = Case_6989586621679452316 p x xs' (Let6989586621679452303Scrutinee_6989586621679443094Sym3 p x xs') 

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

Equations

DropWhileEnd p a_6989586621679454597 = Apply (Apply (Apply FoldrSym0 (Apply (Apply Lambda_6989586621679454601Sym0 p) a_6989586621679454597)) '[]) a_6989586621679454597 

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

Equations

Span _ '[] = Apply (Apply Tuple2Sym0 Let6989586621679452126XsSym0) Let6989586621679452126XsSym0 
Span p ((:) x xs') = Case_6989586621679452156 p x xs' (Let6989586621679452143Scrutinee_6989586621679443098Sym3 p x xs') 

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

Equations

Break _ '[] = Apply (Apply Tuple2Sym0 Let6989586621679452033XsSym0) Let6989586621679452033XsSym0 
Break p ((:) x xs') = Case_6989586621679452063 p x xs' (Let6989586621679452050Scrutinee_6989586621679443100Sym3 p x xs') 

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

Equations

StripPrefix '[] ys = Apply JustSym0 ys 
StripPrefix arg_6989586621679922383 arg_6989586621679922385 = Case_6989586621679935284 arg_6989586621679922383 arg_6989586621679922385 (Apply (Apply Tuple2Sym0 arg_6989586621679922383) arg_6989586621679922385) 

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

Equations

Group xs = Apply (Apply GroupBySym0 (==@#@$)) xs 

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

Equations

Inits xs = Apply (Apply (:@#@$) '[]) (Case_6989586621679453117 xs xs) 

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

Equations

Tails xs = Apply (Apply (:@#@$) xs) (Case_6989586621679453108 xs xs) 

Predicates

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

Equations

IsPrefixOf '[] '[] = TrueSym0 
IsPrefixOf '[] ((:) _ _) = TrueSym0 
IsPrefixOf ((:) _ _) '[] = FalseSym0 
IsPrefixOf ((:) x xs) ((:) y ys) = Apply (Apply (&&@#@$) (Apply (Apply (==@#@$) x) y)) (Apply (Apply IsPrefixOfSym0 xs) ys) 

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

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

Equations

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

Searching lists

Searching by equality

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

Equations

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

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

Equations

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

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

Equations

Lookup _key '[] = NothingSym0 
Lookup key ((:) '(x, y) xys) = Case_6989586621679451954 key x y xys (Let6989586621679451935Scrutinee_6989586621679443114Sym4 key x y xys) 

Searching with a predicate

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

Equations

Find p a_6989586621679452385 = Apply (Apply (Apply (.@#@$) ListToMaybeSym0) (Apply FilterSym0 p)) a_6989586621679452385 

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

Equations

Filter _p '[] = '[] 
Filter p ((:) x xs) = Case_6989586621679452373 p x xs (Let6989586621679452360Scrutinee_6989586621679443080Sym3 p x xs) 

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

Equations

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

Indexing lists

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

Equations

'[] !! _ = Apply ErrorSym0 "Data.Singletons.List.!!: index too large" 
((:) x xs) !! n = Case_6989586621679451791 x xs n (Let6989586621679451778Scrutinee_6989586621679443120Sym3 x xs n) 

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

Equations

ElemIndex x a_6989586621679453017 = Apply (Apply FindIndexSym0 (Apply (==@#@$) x)) a_6989586621679453017 

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

Equations

ElemIndices x a_6989586621679452991 = Apply (Apply FindIndicesSym0 (Apply (==@#@$) x)) a_6989586621679452991 

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

Equations

FindIndex p a_6989586621679453004 = Apply (Apply (Apply (.@#@$) ListToMaybeSym0) (Apply FindIndicesSym0 p)) a_6989586621679453004 

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

Equations

FindIndices p xs = Apply (Apply MapSym0 SndSym0) (Apply (Apply FilterSym0 (Apply (Apply Lambda_6989586621679452962Sym0 p) xs)) (Apply (Apply ZipSym0 xs) (Apply (Apply (Let6989586621679452939BuildListSym2 p xs) (FromInteger 0)) xs))) 

Zipping and unzipping lists

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

Equations

Zip ((:) x xs) ((:) y ys) = Apply (Apply (:@#@$) (Apply (Apply Tuple2Sym0 x) y)) (Apply (Apply ZipSym0 xs) ys) 
Zip '[] '[] = '[] 
Zip ((:) _ _) '[] = '[] 
Zip '[] ((:) _ _) = '[] 

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

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 '[] '[] ((:) _ _) = '[] 
Zip3 '[] ((:) _ _) '[] = '[] 
Zip3 '[] ((:) _ _) ((:) _ _) = '[] 
Zip3 ((:) _ _) '[] '[] = '[] 
Zip3 ((:) _ _) '[] ((:) _ _) = '[] 
Zip3 ((:) _ _) ((:) _ _) '[] = '[] 

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

Equations

Zip4 a_6989586621679935238 a_6989586621679935240 a_6989586621679935242 a_6989586621679935244 = Apply (Apply (Apply (Apply (Apply ZipWith4Sym0 Tuple4Sym0) a_6989586621679935238) a_6989586621679935240) a_6989586621679935242) a_6989586621679935244 

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

Equations

Zip5 a_6989586621679935193 a_6989586621679935195 a_6989586621679935197 a_6989586621679935199 a_6989586621679935201 = Apply (Apply (Apply (Apply (Apply (Apply ZipWith5Sym0 Tuple5Sym0) a_6989586621679935193) a_6989586621679935195) a_6989586621679935197) a_6989586621679935199) a_6989586621679935201 

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

Equations

Zip6 a_6989586621679935136 a_6989586621679935138 a_6989586621679935140 a_6989586621679935142 a_6989586621679935144 a_6989586621679935146 = Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith6Sym0 Tuple6Sym0) a_6989586621679935136) a_6989586621679935138) a_6989586621679935140) a_6989586621679935142) a_6989586621679935144) a_6989586621679935146 

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

Equations

Zip7 a_6989586621679935066 a_6989586621679935068 a_6989586621679935070 a_6989586621679935072 a_6989586621679935074 a_6989586621679935076 a_6989586621679935078 = Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 Tuple7Sym0) a_6989586621679935066) a_6989586621679935068) a_6989586621679935070) a_6989586621679935072) a_6989586621679935074) a_6989586621679935076) a_6989586621679935078 

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

Equations

ZipWith f ((:) x xs) ((:) y ys) = Apply (Apply (:@#@$) (Apply (Apply f x) y)) (Apply (Apply (Apply ZipWithSym0 f) xs) ys) 
ZipWith _ '[] '[] = '[] 
ZipWith _ ((:) _ _) '[] = '[] 
ZipWith _ '[] ((:) _ _) = '[] 

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

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 _ '[] '[] '[] = '[] 
ZipWith3 _ '[] '[] ((:) _ _) = '[] 
ZipWith3 _ '[] ((:) _ _) '[] = '[] 
ZipWith3 _ '[] ((:) _ _) ((:) _ _) = '[] 
ZipWith3 _ ((:) _ _) '[] '[] = '[] 
ZipWith3 _ ((:) _ _) '[] ((:) _ _) = '[] 
ZipWith3 _ ((:) _ _) ((:) _ _) '[] = '[] 

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

Equations

ZipWith4 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) = Apply (Apply (:@#@$) (Apply (Apply (Apply (Apply z a) b) c) d)) (Apply (Apply (Apply (Apply (Apply ZipWith4Sym0 z) as) bs) cs) ds) 
ZipWith4 _ _ _ _ _ = '[] 

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

Equations

ZipWith5 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) = Apply (Apply (:@#@$) (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e)) (Apply (Apply (Apply (Apply (Apply (Apply ZipWith5Sym0 z) as) bs) cs) ds) es) 
ZipWith5 _ _ _ _ _ _ = '[] 

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

Equations

ZipWith6 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) ((:) f fs) = Apply (Apply (:@#@$) (Apply (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e) f)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith6Sym0 z) as) bs) cs) ds) es) fs) 
ZipWith6 _ _ _ _ _ _ _ = '[] 

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

Equations

ZipWith7 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) ((:) f fs) ((:) g gs) = Apply (Apply (:@#@$) (Apply (Apply (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e) f) g)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 z) as) bs) cs) ds) es) fs) gs) 
ZipWith7 _ _ _ _ _ _ _ _ = '[] 

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

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

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

Equations

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

Special lists

Functions on Symbols

type family Unlines (a :: [Symbol]) :: Symbol where ... Source #

Equations

Unlines '[] = "" 
Unlines ((:) l ls) = Apply (Apply (<>@#@$) l) (Apply (Apply (<>@#@$) "\n") (Apply UnlinesSym0 ls)) 

type family Unwords (a :: [Symbol]) :: Symbol where ... Source #

Equations

Unwords '[] = "" 
Unwords ((:) w ws) = Apply (Apply (<>@#@$) w) (Apply (Let6989586621679452613GoSym2 w ws) ws) 

"Set" operations

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

Equations

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

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

Equations

Delete a_6989586621679452577 a_6989586621679452579 = Apply (Apply (Apply DeleteBySym0 (==@#@$)) a_6989586621679452577) a_6989586621679452579 

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

Equations

a_6989586621679452592 \\ a_6989586621679452594 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 DeleteSym0)) a_6989586621679452592) a_6989586621679452594 

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

Equations

Union a_6989586621679452562 a_6989586621679452564 = Apply (Apply (Apply UnionBySym0 (==@#@$)) a_6989586621679452562) a_6989586621679452564 

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

Equations

Intersect a_6989586621679453727 a_6989586621679453729 = Apply (Apply (Apply IntersectBySym0 (==@#@$)) a_6989586621679453727) a_6989586621679453729 

Ordered lists

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

Equations

Sort a_6989586621679452474 = Apply (Apply SortBySym0 CompareSym0) a_6989586621679452474 

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

Equations

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

Generalized functions

The "By" operations

User-supplied equality (replacing an Eq context)

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

Equations

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

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

Equations

DeleteBy _ _ '[] = '[] 
DeleteBy eq x ((:) y ys) = Case_6989586621679452519 eq x y ys (Let6989586621679452500Scrutinee_6989586621679443064Sym4 eq x y ys) 

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

Equations

DeleteFirstsBy eq a_6989586621679452537 a_6989586621679452539 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) a_6989586621679452537) a_6989586621679452539 

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

Equations

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

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

Equations

GroupBy _ '[] = '[] 
GroupBy eq ((:) x xs) = Apply (Apply (:@#@$) (Apply (Apply (:@#@$) x) (Let6989586621679452222YsSym3 eq x xs))) (Apply (Apply GroupBySym0 eq) (Let6989586621679452222ZsSym3 eq x xs)) 

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

Equations

IntersectBy _ '[] '[] = '[] 
IntersectBy _ '[] ((:) _ _) = '[] 
IntersectBy _ ((:) _ _) '[] = '[] 
IntersectBy eq ((:) wild_6989586621679443084 wild_6989586621679443086) ((:) wild_6989586621679443088 wild_6989586621679443090) = Apply (Apply FilterSym0 (Apply (Apply (Apply (Apply (Apply Lambda_6989586621679453690Sym0 eq) wild_6989586621679443084) wild_6989586621679443086) wild_6989586621679443088) wild_6989586621679443090)) (Let6989586621679453639XsSym5 eq wild_6989586621679443084 wild_6989586621679443086 wild_6989586621679443088 wild_6989586621679443090) 

User-supplied comparison (replacing an Ord context)

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

Equations

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

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

Equations

InsertBy _ x '[] = Apply (Apply (:@#@$) x) '[] 
InsertBy cmp x ((:) y ys') = Case_6989586621679452447 cmp x y ys' (Let6989586621679452428Scrutinee_6989586621679443066Sym4 cmp x y ys') 

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

Equations

MaximumBy _ '[] = Apply ErrorSym0 "Data.Singletons.List.maximumBy: empty list" 
MaximumBy cmp ((:) wild_6989586621679443070 wild_6989586621679443072) = Apply (Apply Foldl1Sym0 (Let6989586621679453856MaxBySym3 cmp wild_6989586621679443070 wild_6989586621679443072)) (Let6989586621679453843XsSym3 cmp wild_6989586621679443070 wild_6989586621679443072) 

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

Equations

MinimumBy _ '[] = Apply ErrorSym0 "Data.Singletons.List.minimumBy: empty list" 
MinimumBy cmp ((:) wild_6989586621679443076 wild_6989586621679443078) = Apply (Apply Foldl1Sym0 (Let6989586621679453940MinBySym3 cmp wild_6989586621679443076 wild_6989586621679443078)) (Let6989586621679453927XsSym3 cmp wild_6989586621679443076 wild_6989586621679443078) 

The "generic" operations

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

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

Equations

GenericTake a_6989586621679934825 a_6989586621679934827 = Apply (Apply TakeSym0 a_6989586621679934825) a_6989586621679934827 

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

Equations

GenericDrop a_6989586621679934810 a_6989586621679934812 = Apply (Apply DropSym0 a_6989586621679934810) a_6989586621679934812 

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

Equations

GenericSplitAt a_6989586621679934795 a_6989586621679934797 = Apply (Apply SplitAtSym0 a_6989586621679934795) a_6989586621679934797 

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

Equations

GenericIndex a_6989586621679934780 a_6989586621679934782 = Apply (Apply (!!@#@$) a_6989586621679934780) a_6989586621679934782 

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

Equations

GenericReplicate a_6989586621679934765 a_6989586621679934767 = Apply (Apply ReplicateSym0 a_6989586621679934765) a_6989586621679934767 

Defunctionalization symbols

type NilSym0 = '[] Source #

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

Instances
SuppressUnusedWarnings ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) Source # 
Instance details
type Apply ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) (l :: a3530822107858468865) Source # 
Instance details
type Apply ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) (l :: a3530822107858468865) = (:@#@$$) l

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

Instances
SuppressUnusedWarnings ((:@#@$$) :: a3530822107858468865 -> TyFun [a3530822107858468865] [a3530822107858468865] -> *) Source # 
Instance details
type Apply ((:@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply ((:@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = l1 ': l2

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

type (++@#@$$$) (t :: [a6989586621679419904]) (t :: [a6989586621679419904]) = (++) t t Source #

data (l :: [a6989586621679419904]) ++@#@$$ (l :: TyFun [a6989586621679419904] [a6989586621679419904]) Source #

Instances
SuppressUnusedWarnings ((++@#@$$) :: [a6989586621679419904] -> TyFun [a6989586621679419904] [a6989586621679419904] -> *) Source # 
Instance details
type Apply ((++@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply ((++@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = l1 ++ l2

data (++@#@$) (l :: TyFun [a6989586621679419904] (TyFun [a6989586621679419904] [a6989586621679419904] -> Type)) Source #

Instances
SuppressUnusedWarnings ((++@#@$) :: TyFun [a6989586621679419904] (TyFun [a6989586621679419904] [a6989586621679419904] -> Type) -> *) Source # 
Instance details
type Apply ((++@#@$) :: TyFun [a6989586621679419904] (TyFun [a6989586621679419904] [a6989586621679419904] -> Type) -> *) (l :: [a6989586621679419904]) Source # 
Instance details
type Apply ((++@#@$) :: TyFun [a6989586621679419904] (TyFun [a6989586621679419904] [a6989586621679419904] -> Type) -> *) (l :: [a6989586621679419904]) = (++@#@$$) l

data HeadSym0 (l :: TyFun [a6989586621679442541] a6989586621679442541) Source #

Instances
SuppressUnusedWarnings (HeadSym0 :: TyFun [a6989586621679442541] a6989586621679442541 -> *) Source # 
Instance details
type Apply (HeadSym0 :: TyFun [a] a -> *) (l :: [a]) Source # 
Instance details
type Apply (HeadSym0 :: TyFun [a] a -> *) (l :: [a]) = Head l

type HeadSym1 (t :: [a6989586621679442541]) = Head t Source #

data LastSym0 (l :: TyFun [a6989586621679442540] a6989586621679442540) Source #

Instances
SuppressUnusedWarnings (LastSym0 :: TyFun [a6989586621679442540] a6989586621679442540 -> *) Source # 
Instance details
type Apply (LastSym0 :: TyFun [a] a -> *) (l :: [a]) Source # 
Instance details
type Apply (LastSym0 :: TyFun [a] a -> *) (l :: [a]) = Last l

type LastSym1 (t :: [a6989586621679442540]) = Last t Source #

data TailSym0 (l :: TyFun [a6989586621679442539] [a6989586621679442539]) Source #

Instances
SuppressUnusedWarnings (TailSym0 :: TyFun [a6989586621679442539] [a6989586621679442539] -> *) Source # 
Instance details
type Apply (TailSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # 
Instance details
type Apply (TailSym0 :: TyFun [a] [a] -> *) (l :: [a]) = Tail l

type TailSym1 (t :: [a6989586621679442539]) = Tail t Source #

data InitSym0 (l :: TyFun [a6989586621679442538] [a6989586621679442538]) Source #

Instances
SuppressUnusedWarnings (InitSym0 :: TyFun [a6989586621679442538] [a6989586621679442538] -> *) Source # 
Instance details
type Apply (InitSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # 
Instance details
type Apply (InitSym0 :: TyFun [a] [a] -> *) (l :: [a]) = Init l

type InitSym1 (t :: [a6989586621679442538]) = Init t Source #

data NullSym0 (l :: TyFun [a6989586621679442537] Bool) Source #

Instances
SuppressUnusedWarnings (NullSym0 :: TyFun [a6989586621679442537] Bool -> *) Source # 
Instance details
type Apply (NullSym0 :: TyFun [a] Bool -> *) (l :: [a]) Source # 
Instance details
type Apply (NullSym0 :: TyFun [a] Bool -> *) (l :: [a]) = Null l

type NullSym1 (t :: [a6989586621679442537]) = Null t Source #

data MapSym0 (l :: TyFun (TyFun a6989586621679419905 b6989586621679419906 -> Type) (TyFun [a6989586621679419905] [b6989586621679419906] -> Type)) Source #

Instances
SuppressUnusedWarnings (MapSym0 :: TyFun (TyFun a6989586621679419905 b6989586621679419906 -> Type) (TyFun [a6989586621679419905] [b6989586621679419906] -> Type) -> *) Source # 
Instance details
type Apply (MapSym0 :: TyFun (TyFun a6989586621679419905 b6989586621679419906 -> Type) (TyFun [a6989586621679419905] [b6989586621679419906] -> Type) -> *) (l :: TyFun a6989586621679419905 b6989586621679419906 -> Type) Source # 
Instance details
type Apply (MapSym0 :: TyFun (TyFun a6989586621679419905 b6989586621679419906 -> Type) (TyFun [a6989586621679419905] [b6989586621679419906] -> Type) -> *) (l :: TyFun a6989586621679419905 b6989586621679419906 -> Type) = MapSym1 l

data MapSym1 (l :: TyFun a6989586621679419905 b6989586621679419906 -> Type) (l :: TyFun [a6989586621679419905] [b6989586621679419906]) Source #

Instances
SuppressUnusedWarnings (MapSym1 :: (TyFun a6989586621679419905 b6989586621679419906 -> Type) -> TyFun [a6989586621679419905] [b6989586621679419906] -> *) Source # 
Instance details
type Apply (MapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (MapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) = Map l1 l2

type MapSym2 (t :: TyFun a6989586621679419905 b6989586621679419906 -> Type) (t :: [a6989586621679419905]) = Map t t Source #

data ReverseSym0 (l :: TyFun [a6989586621679442536] [a6989586621679442536]) Source #

Instances
SuppressUnusedWarnings (ReverseSym0 :: TyFun [a6989586621679442536] [a6989586621679442536] -> *) Source # 
Instance details
type Apply (ReverseSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # 
Instance details
type Apply (ReverseSym0 :: TyFun [a] [a] -> *) (l :: [a]) = Reverse l

type ReverseSym1 (t :: [a6989586621679442536]) = Reverse t Source #

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

Instances
SuppressUnusedWarnings (IntersperseSym0 :: TyFun a6989586621679442535 (TyFun [a6989586621679442535] [a6989586621679442535] -> Type) -> *) Source # 
Instance details
type Apply (IntersperseSym0 :: TyFun a6989586621679442535 (TyFun [a6989586621679442535] [a6989586621679442535] -> Type) -> *) (l :: a6989586621679442535) Source # 
Instance details
type Apply (IntersperseSym0 :: TyFun a6989586621679442535 (TyFun [a6989586621679442535] [a6989586621679442535] -> Type) -> *) (l :: a6989586621679442535) = IntersperseSym1 l

data IntersperseSym1 (l :: a6989586621679442535) (l :: TyFun [a6989586621679442535] [a6989586621679442535]) Source #

Instances
SuppressUnusedWarnings (IntersperseSym1 :: a6989586621679442535 -> TyFun [a6989586621679442535] [a6989586621679442535] -> *) Source # 
Instance details
type Apply (IntersperseSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (IntersperseSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Intersperse l1 l2

type IntersperseSym2 (t :: a6989586621679442535) (t :: [a6989586621679442535]) = Intersperse t t Source #

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

Instances
SuppressUnusedWarnings (IntercalateSym0 :: TyFun [a6989586621679442534] (TyFun [[a6989586621679442534]] [a6989586621679442534] -> Type) -> *) Source # 
Instance details
type Apply (IntercalateSym0 :: TyFun [a6989586621679442534] (TyFun [[a6989586621679442534]] [a6989586621679442534] -> Type) -> *) (l :: [a6989586621679442534]) Source # 
Instance details
type Apply (IntercalateSym0 :: TyFun [a6989586621679442534] (TyFun [[a6989586621679442534]] [a6989586621679442534] -> Type) -> *) (l :: [a6989586621679442534]) = IntercalateSym1 l

data IntercalateSym1 (l :: [a6989586621679442534]) (l :: TyFun [[a6989586621679442534]] [a6989586621679442534]) Source #

Instances
SuppressUnusedWarnings (IntercalateSym1 :: [a6989586621679442534] -> TyFun [[a6989586621679442534]] [a6989586621679442534] -> *) Source # 
Instance details
type Apply (IntercalateSym1 l1 :: TyFun [[a]] [a] -> *) (l2 :: [[a]]) Source # 
Instance details
type Apply (IntercalateSym1 l1 :: TyFun [[a]] [a] -> *) (l2 :: [[a]]) = Intercalate l1 l2

type IntercalateSym2 (t :: [a6989586621679442534]) (t :: [[a6989586621679442534]]) = Intercalate t t Source #

data SubsequencesSym0 (l :: TyFun [a6989586621679442533] [[a6989586621679442533]]) Source #

Instances
SuppressUnusedWarnings (SubsequencesSym0 :: TyFun [a6989586621679442533] [[a6989586621679442533]] -> *) Source # 
Instance details
type Apply (SubsequencesSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # 
Instance details
type Apply (SubsequencesSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) = Subsequences l

type SubsequencesSym1 (t :: [a6989586621679442533]) = Subsequences t Source #

data PermutationsSym0 (l :: TyFun [a6989586621679442530] [[a6989586621679442530]]) Source #

Instances
SuppressUnusedWarnings (PermutationsSym0 :: TyFun [a6989586621679442530] [[a6989586621679442530]] -> *) Source # 
Instance details
type Apply (PermutationsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # 
Instance details
type Apply (PermutationsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) = Permutations l

type PermutationsSym1 (t :: [a6989586621679442530]) = Permutations t Source #

data FoldlSym0 (l :: TyFun (TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (FoldlSym0 :: TyFun (TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type) -> Type) -> *) Source # 
Instance details
type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type) -> Type) -> *) (l :: TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) Source # 
Instance details
type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type) -> Type) -> *) (l :: TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) = FoldlSym1 l

data FoldlSym1 (l :: TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (l :: TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type)) Source #

Instances
SuppressUnusedWarnings (FoldlSym1 :: (TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) -> TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type) -> *) Source # 
Instance details
type Apply (FoldlSym1 l1 :: TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type) -> *) (l2 :: b6989586621679259259) Source # 
Instance details
type Apply (FoldlSym1 l1 :: TyFun b6989586621679259259 (TyFun [a6989586621679259258] b6989586621679259259 -> Type) -> *) (l2 :: b6989586621679259259) = FoldlSym2 l1 l2

data FoldlSym2 (l :: TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (l :: b6989586621679259259) (l :: TyFun [a6989586621679259258] b6989586621679259259) Source #

Instances
SuppressUnusedWarnings (FoldlSym2 :: (TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) -> b6989586621679259259 -> TyFun [a6989586621679259258] b6989586621679259259 -> *) Source # 
Instance details
type Apply (FoldlSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) Source # 
Instance details
type Apply (FoldlSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) = Foldl l1 l2 l3

type FoldlSym3 (t :: TyFun b6989586621679259259 (TyFun a6989586621679259258 b6989586621679259259 -> Type) -> Type) (t :: b6989586621679259259) (t :: [a6989586621679259258]) = Foldl t t t Source #

data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Foldl'Sym0 :: TyFun (TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type) -> Type) -> *) (l :: TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) Source # 
Instance details
type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type) -> Type) -> *) (l :: TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) = Foldl'Sym1 l

data Foldl'Sym1 (l :: TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (l :: TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type)) Source #

Instances
SuppressUnusedWarnings (Foldl'Sym1 :: (TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) -> TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type) -> *) Source # 
Instance details
type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type) -> *) (l2 :: b6989586621679442529) Source # 
Instance details
type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679442529 (TyFun [a6989586621679442528] b6989586621679442529 -> Type) -> *) (l2 :: b6989586621679442529) = Foldl'Sym2 l1 l2

data Foldl'Sym2 (l :: TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (l :: b6989586621679442529) (l :: TyFun [a6989586621679442528] b6989586621679442529) Source #

Instances
SuppressUnusedWarnings (Foldl'Sym2 :: (TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) -> b6989586621679442529 -> TyFun [a6989586621679442528] b6989586621679442529 -> *) Source # 
Instance details
type Apply (Foldl'Sym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) Source # 
Instance details
type Apply (Foldl'Sym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) = Foldl' l1 l2 l3

type Foldl'Sym3 (t :: TyFun b6989586621679442529 (TyFun a6989586621679442528 b6989586621679442529 -> Type) -> Type) (t :: b6989586621679442529) (t :: [a6989586621679442528]) = Foldl' t t t Source #

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

Instances
SuppressUnusedWarnings (Foldl1Sym0 :: TyFun (TyFun a6989586621679442527 (TyFun a6989586621679442527 a6989586621679442527 -> Type) -> Type) (TyFun [a6989586621679442527] a6989586621679442527 -> Type) -> *) Source # 
Instance details
type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679442527 (TyFun a6989586621679442527 a6989586621679442527 -> Type) -> Type) (TyFun [a6989586621679442527] a6989586621679442527 -> Type) -> *) (l :: TyFun a6989586621679442527 (TyFun a6989586621679442527 a6989586621679442527 -> Type) -> Type) Source # 
Instance details
type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679442527 (TyFun a6989586621679442527 a6989586621679442527 -> Type) -> Type) (TyFun [a6989586621679442527] a6989586621679442527 -> Type) -> *) (l :: TyFun a6989586621679442527 (TyFun a6989586621679442527 a6989586621679442527 -> Type) -> Type) = Foldl1Sym1 l

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

Instances
SuppressUnusedWarnings (Foldl1Sym1 :: (TyFun a6989586621679442527 (TyFun a6989586621679442527 a6989586621679442527 -> Type) -> Type) -> TyFun [a6989586621679442527] a6989586621679442527 -> *) Source # 
Instance details
type Apply (Foldl1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # 
Instance details
type Apply (Foldl1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) = Foldl1 l1 l2

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

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

Instances
SuppressUnusedWarnings (Foldl1'Sym0 :: TyFun (TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) (TyFun [a6989586621679442526] a6989586621679442526 -> Type) -> *) Source # 
Instance details
type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) (TyFun [a6989586621679442526] a6989586621679442526 -> Type) -> *) (l :: TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) Source # 
Instance details
type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) (TyFun [a6989586621679442526] a6989586621679442526 -> Type) -> *) (l :: TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) = Foldl1'Sym1 l

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

Instances
SuppressUnusedWarnings (Foldl1'Sym1 :: (TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) -> TyFun [a6989586621679442526] a6989586621679442526 -> *) Source # 
Instance details
type Apply (Foldl1'Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # 
Instance details
type Apply (Foldl1'Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) = Foldl1' l1 l2

type Foldl1'Sym2 (t :: TyFun a6989586621679442526 (TyFun a6989586621679442526 a6989586621679442526 -> Type) -> Type) (t :: [a6989586621679442526]) = Foldl1' t t Source #

data FoldrSym0 (l :: TyFun (TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (FoldrSym0 :: TyFun (TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type) -> Type) -> *) Source # 
Instance details
type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type) -> Type) -> *) (l :: TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) Source # 
Instance details
type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type) -> Type) -> *) (l :: TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) = FoldrSym1 l

data FoldrSym1 (l :: TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (l :: TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type)) Source #

Instances
SuppressUnusedWarnings (FoldrSym1 :: (TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) -> TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type) -> *) Source # 
Instance details
type Apply (FoldrSym1 l1 :: TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type) -> *) (l2 :: b6989586621679419908) Source # 
Instance details
type Apply (FoldrSym1 l1 :: TyFun b6989586621679419908 (TyFun [a6989586621679419907] b6989586621679419908 -> Type) -> *) (l2 :: b6989586621679419908) = FoldrSym2 l1 l2

data FoldrSym2 (l :: TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (l :: b6989586621679419908) (l :: TyFun [a6989586621679419907] b6989586621679419908) Source #

Instances
SuppressUnusedWarnings (FoldrSym2 :: (TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) -> b6989586621679419908 -> TyFun [a6989586621679419907] b6989586621679419908 -> *) Source # 
Instance details
type Apply (FoldrSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) Source # 
Instance details
type Apply (FoldrSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) = Foldr l1 l2 l3

type FoldrSym3 (t :: TyFun a6989586621679419907 (TyFun b6989586621679419908 b6989586621679419908 -> Type) -> Type) (t :: b6989586621679419908) (t :: [a6989586621679419907]) = Foldr t t t Source #

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

Instances
SuppressUnusedWarnings (Foldr1Sym0 :: TyFun (TyFun a6989586621679442525 (TyFun a6989586621679442525 a6989586621679442525 -> Type) -> Type) (TyFun [a6989586621679442525] a6989586621679442525 -> Type) -> *) Source # 
Instance details
type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679442525 (TyFun a6989586621679442525 a6989586621679442525 -> Type) -> Type) (TyFun [a6989586621679442525] a6989586621679442525 -> Type) -> *) (l :: TyFun a6989586621679442525 (TyFun a6989586621679442525 a6989586621679442525 -> Type) -> Type) Source # 
Instance details
type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679442525 (TyFun a6989586621679442525 a6989586621679442525 -> Type) -> Type) (TyFun [a6989586621679442525] a6989586621679442525 -> Type) -> *) (l :: TyFun a6989586621679442525 (TyFun a6989586621679442525 a6989586621679442525 -> Type) -> Type) = Foldr1Sym1 l

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

Instances
SuppressUnusedWarnings (Foldr1Sym1 :: (TyFun a6989586621679442525 (TyFun a6989586621679442525 a6989586621679442525 -> Type) -> Type) -> TyFun [a6989586621679442525] a6989586621679442525 -> *) Source # 
Instance details
type Apply (Foldr1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # 
Instance details
type Apply (Foldr1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) = Foldr1 l1 l2

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

data ConcatSym0 (l :: TyFun [[a6989586621679442524]] [a6989586621679442524]) Source #

Instances
SuppressUnusedWarnings (ConcatSym0 :: TyFun [[a6989586621679442524]] [a6989586621679442524] -> *) Source # 
Instance details
type Apply (ConcatSym0 :: TyFun [[a]] [a] -> *) (l :: [[a]]) Source # 
Instance details
type Apply (ConcatSym0 :: TyFun [[a]] [a] -> *) (l :: [[a]]) = Concat l

type ConcatSym1 (t :: [[a6989586621679442524]]) = Concat t Source #

data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679442522 [b6989586621679442523] -> Type) (TyFun [a6989586621679442522] [b6989586621679442523] -> Type)) Source #

Instances
SuppressUnusedWarnings (ConcatMapSym0 :: TyFun (TyFun a6989586621679442522 [b6989586621679442523] -> Type) (TyFun [a6989586621679442522] [b6989586621679442523] -> Type) -> *) Source # 
Instance details
type Apply (ConcatMapSym0 :: TyFun (TyFun a6989586621679442522 [b6989586621679442523] -> Type) (TyFun [a6989586621679442522] [b6989586621679442523] -> Type) -> *) (l :: TyFun a6989586621679442522 [b6989586621679442523] -> Type) Source # 
Instance details
type Apply (ConcatMapSym0 :: TyFun (TyFun a6989586621679442522 [b6989586621679442523] -> Type) (TyFun [a6989586621679442522] [b6989586621679442523] -> Type) -> *) (l :: TyFun a6989586621679442522 [b6989586621679442523] -> Type) = ConcatMapSym1 l

data ConcatMapSym1 (l :: TyFun a6989586621679442522 [b6989586621679442523] -> Type) (l :: TyFun [a6989586621679442522] [b6989586621679442523]) Source #

Instances
SuppressUnusedWarnings (ConcatMapSym1 :: (TyFun a6989586621679442522 [b6989586621679442523] -> Type) -> TyFun [a6989586621679442522] [b6989586621679442523] -> *) Source # 
Instance details
type Apply (ConcatMapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (ConcatMapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) = ConcatMap l1 l2

type ConcatMapSym2 (t :: TyFun a6989586621679442522 [b6989586621679442523] -> Type) (t :: [a6989586621679442522]) = ConcatMap t t Source #

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

Instances
SuppressUnusedWarnings AndSym0 Source # 
Instance details
type Apply AndSym0 (l :: [Bool]) Source # 
Instance details
type Apply AndSym0 (l :: [Bool]) = And l

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

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

Instances
SuppressUnusedWarnings OrSym0 Source # 
Instance details
type Apply OrSym0 (l :: [Bool]) Source # 
Instance details
type Apply OrSym0 (l :: [Bool]) = Or l

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

data AnySym0 (l :: TyFun (TyFun a6989586621679442520 Bool -> Type) (TyFun [a6989586621679442520] Bool -> Type)) Source #

Instances
SuppressUnusedWarnings (AnySym0 :: TyFun (TyFun a6989586621679442520 Bool -> Type) (TyFun [a6989586621679442520] Bool -> Type) -> *) Source # 
Instance details
type Apply (AnySym0 :: TyFun (TyFun a6989586621679442520 Bool -> Type) (TyFun [a6989586621679442520] Bool -> Type) -> *) (l :: TyFun a6989586621679442520 Bool -> Type) Source # 
Instance details
type Apply (AnySym0 :: TyFun (TyFun a6989586621679442520 Bool -> Type) (TyFun [a6989586621679442520] Bool -> Type) -> *) (l :: TyFun a6989586621679442520 Bool -> Type) = AnySym1 l

data AnySym1 (l :: TyFun a6989586621679442520 Bool -> Type) (l :: TyFun [a6989586621679442520] Bool) Source #

Instances
SuppressUnusedWarnings (AnySym1 :: (TyFun a6989586621679442520 Bool -> Type) -> TyFun [a6989586621679442520] Bool -> *) Source # 
Instance details
type Apply (AnySym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # 
Instance details
type Apply (AnySym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) = Any l1 l2

type AnySym2 (t :: TyFun a6989586621679442520 Bool -> Type) (t :: [a6989586621679442520]) = Any t t Source #

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

Instances
SuppressUnusedWarnings (AllSym0 :: TyFun (TyFun a6989586621679442521 Bool -> Type) (TyFun [a6989586621679442521] Bool -> Type) -> *) Source # 
Instance details
type Apply (AllSym0 :: TyFun (TyFun a6989586621679442521 Bool -> Type) (TyFun [a6989586621679442521] Bool -> Type) -> *) (l :: TyFun a6989586621679442521 Bool -> Type) Source # 
Instance details
type Apply (AllSym0 :: TyFun (TyFun a6989586621679442521 Bool -> Type) (TyFun [a6989586621679442521] Bool -> Type) -> *) (l :: TyFun a6989586621679442521 Bool -> Type) = AllSym1 l

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

Instances
SuppressUnusedWarnings (AllSym1 :: (TyFun a6989586621679442521 Bool -> Type) -> TyFun [a6989586621679442521] Bool -> *) Source # 
Instance details
type Apply (AllSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # 
Instance details
type Apply (AllSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) = All l1 l2

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

data ScanlSym0 (l :: TyFun (TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ScanlSym0 :: TyFun (TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type) -> Type) -> *) (l :: TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) Source # 
Instance details
type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type) -> Type) -> *) (l :: TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) = ScanlSym1 l

data ScanlSym1 (l :: TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (l :: TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type)) Source #

Instances
SuppressUnusedWarnings (ScanlSym1 :: (TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) -> TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type) -> *) Source # 
Instance details
type Apply (ScanlSym1 l1 :: TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type) -> *) (l2 :: b6989586621679442518) Source # 
Instance details
type Apply (ScanlSym1 l1 :: TyFun b6989586621679442518 (TyFun [a6989586621679442519] [b6989586621679442518] -> Type) -> *) (l2 :: b6989586621679442518) = ScanlSym2 l1 l2

data ScanlSym2 (l :: TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (l :: b6989586621679442518) (l :: TyFun [a6989586621679442519] [b6989586621679442518]) Source #

Instances
SuppressUnusedWarnings (ScanlSym2 :: (TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) -> b6989586621679442518 -> TyFun [a6989586621679442519] [b6989586621679442518] -> *) Source # 
Instance details
type Apply (ScanlSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) Source # 
Instance details
type Apply (ScanlSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) = Scanl l1 l2 l3

type ScanlSym3 (t :: TyFun b6989586621679442518 (TyFun a6989586621679442519 b6989586621679442518 -> Type) -> Type) (t :: b6989586621679442518) (t :: [a6989586621679442519]) = Scanl t t t Source #

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

Instances
SuppressUnusedWarnings (Scanl1Sym0 :: TyFun (TyFun a6989586621679442517 (TyFun a6989586621679442517 a6989586621679442517 -> Type) -> Type) (TyFun [a6989586621679442517] [a6989586621679442517] -> Type) -> *) Source # 
Instance details
type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679442517 (TyFun a6989586621679442517 a6989586621679442517 -> Type) -> Type) (TyFun [a6989586621679442517] [a6989586621679442517] -> Type) -> *) (l :: TyFun a6989586621679442517 (TyFun a6989586621679442517 a6989586621679442517 -> Type) -> Type) Source # 
Instance details
type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679442517 (TyFun a6989586621679442517 a6989586621679442517 -> Type) -> Type) (TyFun [a6989586621679442517] [a6989586621679442517] -> Type) -> *) (l :: TyFun a6989586621679442517 (TyFun a6989586621679442517 a6989586621679442517 -> Type) -> Type) = Scanl1Sym1 l

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

Instances
SuppressUnusedWarnings (Scanl1Sym1 :: (TyFun a6989586621679442517 (TyFun a6989586621679442517 a6989586621679442517 -> Type) -> Type) -> TyFun [a6989586621679442517] [a6989586621679442517] -> *) Source # 
Instance details
type Apply (Scanl1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (Scanl1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Scanl1 l1 l2

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

data ScanrSym0 (l :: TyFun (TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ScanrSym0 :: TyFun (TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) Source # 
Instance details
type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) = ScanrSym1 l

data ScanrSym1 (l :: TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (l :: TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type)) Source #

Instances
SuppressUnusedWarnings (ScanrSym1 :: (TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) -> TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type) -> *) Source # 
Instance details
type Apply (ScanrSym1 l1 :: TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type) -> *) (l2 :: b6989586621679442516) Source # 
Instance details
type Apply (ScanrSym1 l1 :: TyFun b6989586621679442516 (TyFun [a6989586621679442515] [b6989586621679442516] -> Type) -> *) (l2 :: b6989586621679442516) = ScanrSym2 l1 l2

data ScanrSym2 (l :: TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (l :: b6989586621679442516) (l :: TyFun [a6989586621679442515] [b6989586621679442516]) Source #

Instances
SuppressUnusedWarnings (ScanrSym2 :: (TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) -> b6989586621679442516 -> TyFun [a6989586621679442515] [b6989586621679442516] -> *) Source # 
Instance details
type Apply (ScanrSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) Source # 
Instance details
type Apply (ScanrSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) = Scanr l1 l2 l3

type ScanrSym3 (t :: TyFun a6989586621679442515 (TyFun b6989586621679442516 b6989586621679442516 -> Type) -> Type) (t :: b6989586621679442516) (t :: [a6989586621679442515]) = Scanr t t t Source #

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

Instances
SuppressUnusedWarnings (Scanr1Sym0 :: TyFun (TyFun a6989586621679442514 (TyFun a6989586621679442514 a6989586621679442514 -> Type) -> Type) (TyFun [a6989586621679442514] [a6989586621679442514] -> Type) -> *) Source # 
Instance details
type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679442514 (TyFun a6989586621679442514 a6989586621679442514 -> Type) -> Type) (TyFun [a6989586621679442514] [a6989586621679442514] -> Type) -> *) (l :: TyFun a6989586621679442514 (TyFun a6989586621679442514 a6989586621679442514 -> Type) -> Type) Source # 
Instance details
type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679442514 (TyFun a6989586621679442514 a6989586621679442514 -> Type) -> Type) (TyFun [a6989586621679442514] [a6989586621679442514] -> Type) -> *) (l :: TyFun a6989586621679442514 (TyFun a6989586621679442514 a6989586621679442514 -> Type) -> Type) = Scanr1Sym1 l

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

Instances
SuppressUnusedWarnings (Scanr1Sym1 :: (TyFun a6989586621679442514 (TyFun a6989586621679442514 a6989586621679442514 -> Type) -> Type) -> TyFun [a6989586621679442514] [a6989586621679442514] -> *) Source # 
Instance details
type Apply (Scanr1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (Scanr1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Scanr1 l1 l2

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

data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (MapAccumLSym0 :: TyFun (TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) Source # 
Instance details
type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) = MapAccumLSym1 l

data MapAccumLSym1 (l :: TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (l :: TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type)) Source #

Instances
SuppressUnusedWarnings (MapAccumLSym1 :: (TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) -> TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type) -> *) Source # 
Instance details
type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type) -> *) (l2 :: acc6989586621679442511) Source # 
Instance details
type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679442511 (TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> Type) -> *) (l2 :: acc6989586621679442511) = MapAccumLSym2 l1 l2

data MapAccumLSym2 (l :: TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (l :: acc6989586621679442511) (l :: TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513])) Source #

Instances
SuppressUnusedWarnings (MapAccumLSym2 :: (TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) -> acc6989586621679442511 -> TyFun [x6989586621679442512] (acc6989586621679442511, [y6989586621679442513]) -> *) Source # 
Instance details
type Apply (MapAccumLSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) Source # 
Instance details
type Apply (MapAccumLSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) = MapAccumL l1 l2 l3

type MapAccumLSym3 (t :: TyFun acc6989586621679442511 (TyFun x6989586621679442512 (acc6989586621679442511, y6989586621679442513) -> Type) -> Type) (t :: acc6989586621679442511) (t :: [x6989586621679442512]) = MapAccumL t t t Source #

data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (MapAccumRSym0 :: TyFun (TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) Source # 
Instance details
type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) = MapAccumRSym1 l

data MapAccumRSym1 (l :: TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (l :: TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type)) Source #

Instances
SuppressUnusedWarnings (MapAccumRSym1 :: (TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) -> TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type) -> *) Source # 
Instance details
type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type) -> *) (l2 :: acc6989586621679442508) Source # 
Instance details
type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679442508 (TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> Type) -> *) (l2 :: acc6989586621679442508) = MapAccumRSym2 l1 l2

data MapAccumRSym2 (l :: TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (l :: acc6989586621679442508) (l :: TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510])) Source #

Instances
SuppressUnusedWarnings (MapAccumRSym2 :: (TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) -> acc6989586621679442508 -> TyFun [x6989586621679442509] (acc6989586621679442508, [y6989586621679442510]) -> *) Source # 
Instance details
type Apply (MapAccumRSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) Source # 
Instance details
type Apply (MapAccumRSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) = MapAccumR l1 l2 l3

type MapAccumRSym3 (t :: TyFun acc6989586621679442508 (TyFun x6989586621679442509 (acc6989586621679442508, y6989586621679442510) -> Type) -> Type) (t :: acc6989586621679442508) (t :: [x6989586621679442509]) = MapAccumR t t t Source #

data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) (TyFun b6989586621679442506 [a6989586621679442507] -> Type)) Source #

Instances
SuppressUnusedWarnings (UnfoldrSym0 :: TyFun (TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) (TyFun b6989586621679442506 [a6989586621679442507] -> Type) -> *) Source # 
Instance details
type Apply (UnfoldrSym0 :: TyFun (TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) (TyFun b6989586621679442506 [a6989586621679442507] -> Type) -> *) (l :: TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) Source # 
Instance details
type Apply (UnfoldrSym0 :: TyFun (TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) (TyFun b6989586621679442506 [a6989586621679442507] -> Type) -> *) (l :: TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) = UnfoldrSym1 l

data UnfoldrSym1 (l :: TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) (l :: TyFun b6989586621679442506 [a6989586621679442507]) Source #

Instances
SuppressUnusedWarnings (UnfoldrSym1 :: (TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) -> TyFun b6989586621679442506 [a6989586621679442507] -> *) Source # 
Instance details
type Apply (UnfoldrSym1 l1 :: TyFun b [a] -> *) (l2 :: b) Source # 
Instance details
type Apply (UnfoldrSym1 l1 :: TyFun b [a] -> *) (l2 :: b) = Unfoldr l1 l2

type UnfoldrSym2 (t :: TyFun b6989586621679442506 (Maybe (a6989586621679442507, b6989586621679442506)) -> Type) (t :: b6989586621679442506) = Unfoldr t t Source #

data InitsSym0 (l :: TyFun [a6989586621679442505] [[a6989586621679442505]]) Source #

Instances
SuppressUnusedWarnings (InitsSym0 :: TyFun [a6989586621679442505] [[a6989586621679442505]] -> *) Source # 
Instance details
type Apply (InitsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # 
Instance details
type Apply (InitsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) = Inits l

type InitsSym1 (t :: [a6989586621679442505]) = Inits t Source #

data TailsSym0 (l :: TyFun [a6989586621679442504] [[a6989586621679442504]]) Source #

Instances
SuppressUnusedWarnings (TailsSym0 :: TyFun [a6989586621679442504] [[a6989586621679442504]] -> *) Source # 
Instance details
type Apply (TailsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # 
Instance details
type Apply (TailsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) = Tails l

type TailsSym1 (t :: [a6989586621679442504]) = Tails t Source #

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

Instances
SuppressUnusedWarnings (IsPrefixOfSym0 :: TyFun [a6989586621679442503] (TyFun [a6989586621679442503] Bool -> Type) -> *) Source # 
Instance details
type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679442503] (TyFun [a6989586621679442503] Bool -> Type) -> *) (l :: [a6989586621679442503]) Source # 
Instance details
type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679442503] (TyFun [a6989586621679442503] Bool -> Type) -> *) (l :: [a6989586621679442503]) = IsPrefixOfSym1 l

data IsPrefixOfSym1 (l :: [a6989586621679442503]) (l :: TyFun [a6989586621679442503] Bool) Source #

Instances
SuppressUnusedWarnings (IsPrefixOfSym1 :: [a6989586621679442503] -> TyFun [a6989586621679442503] Bool -> *) Source # 
Instance details
type Apply (IsPrefixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # 
Instance details
type Apply (IsPrefixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) = IsPrefixOf l1 l2

type IsPrefixOfSym2 (t :: [a6989586621679442503]) (t :: [a6989586621679442503]) = IsPrefixOf t t Source #

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

Instances
SuppressUnusedWarnings (IsSuffixOfSym0 :: TyFun [a6989586621679442502] (TyFun [a6989586621679442502] Bool -> Type) -> *) Source # 
Instance details
type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679442502] (TyFun [a6989586621679442502] Bool -> Type) -> *) (l :: [a6989586621679442502]) Source # 
Instance details
type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679442502] (TyFun [a6989586621679442502] Bool -> Type) -> *) (l :: [a6989586621679442502]) = IsSuffixOfSym1 l

data IsSuffixOfSym1 (l :: [a6989586621679442502]) (l :: TyFun [a6989586621679442502] Bool) Source #

Instances
SuppressUnusedWarnings (IsSuffixOfSym1 :: [a6989586621679442502] -> TyFun [a6989586621679442502] Bool -> *) Source # 
Instance details
type Apply (IsSuffixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # 
Instance details
type Apply (IsSuffixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) = IsSuffixOf l1 l2

type IsSuffixOfSym2 (t :: [a6989586621679442502]) (t :: [a6989586621679442502]) = IsSuffixOf t t Source #

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

Instances
SuppressUnusedWarnings (IsInfixOfSym0 :: TyFun [a6989586621679442501] (TyFun [a6989586621679442501] Bool -> Type) -> *) Source # 
Instance details
type Apply (IsInfixOfSym0 :: TyFun [a6989586621679442501] (TyFun [a6989586621679442501] Bool -> Type) -> *) (l :: [a6989586621679442501]) Source # 
Instance details
type Apply (IsInfixOfSym0 :: TyFun [a6989586621679442501] (TyFun [a6989586621679442501] Bool -> Type) -> *) (l :: [a6989586621679442501]) = IsInfixOfSym1 l

data IsInfixOfSym1 (l :: [a6989586621679442501]) (l :: TyFun [a6989586621679442501] Bool) Source #

Instances
SuppressUnusedWarnings (IsInfixOfSym1 :: [a6989586621679442501] -> TyFun [a6989586621679442501] Bool -> *) Source # 
Instance details
type Apply (IsInfixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # 
Instance details
type Apply (IsInfixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) = IsInfixOf l1 l2

type IsInfixOfSym2 (t :: [a6989586621679442501]) (t :: [a6989586621679442501]) = IsInfixOf t t Source #

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

Instances
SuppressUnusedWarnings (ElemSym0 :: TyFun a6989586621679442500 (TyFun [a6989586621679442500] Bool -> Type) -> *) Source # 
Instance details
type Apply (ElemSym0 :: TyFun a6989586621679442500 (TyFun [a6989586621679442500] Bool -> Type) -> *) (l :: a6989586621679442500) Source # 
Instance details
type Apply (ElemSym0 :: TyFun a6989586621679442500 (TyFun [a6989586621679442500] Bool -> Type) -> *) (l :: a6989586621679442500) = ElemSym1 l

data ElemSym1 (l :: a6989586621679442500) (l :: TyFun [a6989586621679442500] Bool) Source #

Instances
SuppressUnusedWarnings (ElemSym1 :: a6989586621679442500 -> TyFun [a6989586621679442500] Bool -> *) Source # 
Instance details
type Apply (ElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # 
Instance details
type Apply (ElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) = Elem l1 l2

type ElemSym2 (t :: a6989586621679442500) (t :: [a6989586621679442500]) = Elem t t Source #

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

Instances
SuppressUnusedWarnings (NotElemSym0 :: TyFun a6989586621679442499 (TyFun [a6989586621679442499] Bool -> Type) -> *) Source # 
Instance details
type Apply (NotElemSym0 :: TyFun a6989586621679442499 (TyFun [a6989586621679442499] Bool -> Type) -> *) (l :: a6989586621679442499) Source # 
Instance details
type Apply (NotElemSym0 :: TyFun a6989586621679442499 (TyFun [a6989586621679442499] Bool -> Type) -> *) (l :: a6989586621679442499) = NotElemSym1 l

data NotElemSym1 (l :: a6989586621679442499) (l :: TyFun [a6989586621679442499] Bool) Source #

Instances
SuppressUnusedWarnings (NotElemSym1 :: a6989586621679442499 -> TyFun [a6989586621679442499] Bool -> *) Source # 
Instance details
type Apply (NotElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # 
Instance details
type Apply (NotElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) = NotElem l1 l2

type NotElemSym2 (t :: a6989586621679442499) (t :: [a6989586621679442499]) = NotElem t t Source #

data ZipSym0 (l :: TyFun [a6989586621679442497] (TyFun [b6989586621679442498] [(a6989586621679442497, b6989586621679442498)] -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipSym0 :: TyFun [a6989586621679442497] (TyFun [b6989586621679442498] [(a6989586621679442497, b6989586621679442498)] -> Type) -> *) Source # 
Instance details
type Apply (ZipSym0 :: TyFun [a6989586621679442497] (TyFun [b6989586621679442498] [(a6989586621679442497, b6989586621679442498)] -> Type) -> *) (l :: [a6989586621679442497]) Source # 
Instance details
type Apply (ZipSym0 :: TyFun [a6989586621679442497] (TyFun [b6989586621679442498] [(a6989586621679442497, b6989586621679442498)] -> Type) -> *) (l :: [a6989586621679442497]) = (ZipSym1 l :: TyFun [b6989586621679442498] [(a6989586621679442497, b6989586621679442498)] -> *)

data ZipSym1 (l :: [a6989586621679442497]) (l :: TyFun [b6989586621679442498] [(a6989586621679442497, b6989586621679442498)]) Source #

Instances
SuppressUnusedWarnings (ZipSym1 :: [a6989586621679442497] -> TyFun [b6989586621679442498] [(a6989586621679442497, b6989586621679442498)] -> *) Source # 
Instance details
type Apply (ZipSym1 l1 :: TyFun [b] [(a, b)] -> *) (l2 :: [b]) Source # 
Instance details
type Apply (ZipSym1 l1 :: TyFun [b] [(a, b)] -> *) (l2 :: [b]) = Zip l1 l2

type ZipSym2 (t :: [a6989586621679442497]) (t :: [b6989586621679442498]) = Zip t t Source #

data Zip3Sym0 (l :: TyFun [a6989586621679442494] (TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip3Sym0 :: TyFun [a6989586621679442494] (TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip3Sym0 :: TyFun [a6989586621679442494] (TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type) -> Type) -> *) (l :: [a6989586621679442494]) Source # 
Instance details
type Apply (Zip3Sym0 :: TyFun [a6989586621679442494] (TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type) -> Type) -> *) (l :: [a6989586621679442494]) = (Zip3Sym1 l :: TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type) -> *)

data Zip3Sym1 (l :: [a6989586621679442494]) (l :: TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip3Sym1 :: [a6989586621679442494] -> TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type) -> *) Source # 
Instance details
type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type) -> *) (l2 :: [b6989586621679442495]) Source # 
Instance details
type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679442495] (TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> Type) -> *) (l2 :: [b6989586621679442495]) = (Zip3Sym2 l1 l2 :: TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> *)

data Zip3Sym2 (l :: [a6989586621679442494]) (l :: [b6989586621679442495]) (l :: TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)]) Source #

Instances
SuppressUnusedWarnings (Zip3Sym2 :: [a6989586621679442494] -> [b6989586621679442495] -> TyFun [c6989586621679442496] [(a6989586621679442494, b6989586621679442495, c6989586621679442496)] -> *) Source # 
Instance details
type Apply (Zip3Sym2 l1 l2 :: TyFun [c] [(a, b, c)] -> *) (l3 :: [c]) Source # 
Instance details
type Apply (Zip3Sym2 l1 l2 :: TyFun [c] [(a, b, c)] -> *) (l3 :: [c]) = Zip3 l1 l2 l3

type Zip3Sym3 (t :: [a6989586621679442494]) (t :: [b6989586621679442495]) (t :: [c6989586621679442496]) = Zip3 t t t Source #

data ZipWithSym0 (l :: TyFun (TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWithSym0 :: TyFun (TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) Source # 
Instance details
type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) = ZipWithSym1 l

data ZipWithSym1 (l :: TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (l :: TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWithSym1 :: (TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) -> TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type) -> *) Source # 
Instance details
type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type) -> *) (l2 :: [a6989586621679442491]) Source # 
Instance details
type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679442491] (TyFun [b6989586621679442492] [c6989586621679442493] -> Type) -> *) (l2 :: [a6989586621679442491]) = ZipWithSym2 l1 l2

data ZipWithSym2 (l :: TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (l :: [a6989586621679442491]) (l :: TyFun [b6989586621679442492] [c6989586621679442493]) Source #

Instances
SuppressUnusedWarnings (ZipWithSym2 :: (TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) -> [a6989586621679442491] -> TyFun [b6989586621679442492] [c6989586621679442493] -> *) Source # 
Instance details
type Apply (ZipWithSym2 l1 l2 :: TyFun [b] [c] -> *) (l3 :: [b]) Source # 
Instance details
type Apply (ZipWithSym2 l1 l2 :: TyFun [b] [c] -> *) (l3 :: [b]) = ZipWith l1 l2 l3

type ZipWithSym3 (t :: TyFun a6989586621679442491 (TyFun b6989586621679442492 c6989586621679442493 -> Type) -> Type) (t :: [a6989586621679442491]) (t :: [b6989586621679442492]) = ZipWith t t t Source #

data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith3Sym0 :: TyFun (TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) Source # 
Instance details
type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) = ZipWith3Sym1 l

data ZipWith3Sym1 (l :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith3Sym1 :: (TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) -> TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type) -> *) (l2 :: [a6989586621679442487]) Source # 
Instance details
type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679442487] (TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> Type) -> *) (l2 :: [a6989586621679442487]) = ZipWith3Sym2 l1 l2

data ZipWith3Sym2 (l :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (l :: [a6989586621679442487]) (l :: TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith3Sym2 :: (TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) -> [a6989586621679442487] -> TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> *) Source # 
Instance details
type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> *) (l3 :: [b6989586621679442488]) Source # 
Instance details
type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679442488] (TyFun [c6989586621679442489] [d6989586621679442490] -> Type) -> *) (l3 :: [b6989586621679442488]) = ZipWith3Sym3 l1 l2 l3

data ZipWith3Sym3 (l :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (l :: [a6989586621679442487]) (l :: [b6989586621679442488]) (l :: TyFun [c6989586621679442489] [d6989586621679442490]) Source #

Instances
SuppressUnusedWarnings (ZipWith3Sym3 :: (TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) -> [a6989586621679442487] -> [b6989586621679442488] -> TyFun [c6989586621679442489] [d6989586621679442490] -> *) Source # 
Instance details
type Apply (ZipWith3Sym3 l1 l2 l3 :: TyFun [c] [d] -> *) (l4 :: [c]) Source # 
Instance details
type Apply (ZipWith3Sym3 l1 l2 l3 :: TyFun [c] [d] -> *) (l4 :: [c]) = ZipWith3 l1 l2 l3 l4

type ZipWith3Sym4 (t :: TyFun a6989586621679442487 (TyFun b6989586621679442488 (TyFun c6989586621679442489 d6989586621679442490 -> Type) -> Type) -> Type) (t :: [a6989586621679442487]) (t :: [b6989586621679442488]) (t :: [c6989586621679442489]) = ZipWith3 t t t t Source #

data UnzipSym0 (l :: TyFun [(a6989586621679442485, b6989586621679442486)] ([a6989586621679442485], [b6989586621679442486])) Source #

Instances
SuppressUnusedWarnings (UnzipSym0 :: TyFun [(a6989586621679442485, b6989586621679442486)] ([a6989586621679442485], [b6989586621679442486]) -> *) Source # 
Instance details
type Apply (UnzipSym0 :: TyFun [(a, b)] ([a], [b]) -> *) (l :: [(a, b)]) Source # 
Instance details
type Apply (UnzipSym0 :: TyFun [(a, b)] ([a], [b]) -> *) (l :: [(a, b)]) = Unzip l

type UnzipSym1 (t :: [(a6989586621679442485, b6989586621679442486)]) = Unzip t Source #

data Unzip3Sym0 (l :: TyFun [(a6989586621679442482, b6989586621679442483, c6989586621679442484)] ([a6989586621679442482], [b6989586621679442483], [c6989586621679442484])) Source #

Instances
SuppressUnusedWarnings (Unzip3Sym0 :: TyFun [(a6989586621679442482, b6989586621679442483, c6989586621679442484)] ([a6989586621679442482], [b6989586621679442483], [c6989586621679442484]) -> *) Source # 
Instance details
type Apply (Unzip3Sym0 :: TyFun [(a, b, c)] ([a], [b], [c]) -> *) (l :: [(a, b, c)]) Source # 
Instance details
type Apply (Unzip3Sym0 :: TyFun [(a, b, c)] ([a], [b], [c]) -> *) (l :: [(a, b, c)]) = Unzip3 l

type Unzip3Sym1 (t :: [(a6989586621679442482, b6989586621679442483, c6989586621679442484)]) = Unzip3 t Source #

data Unzip4Sym0 (l :: TyFun [(a6989586621679442478, b6989586621679442479, c6989586621679442480, d6989586621679442481)] ([a6989586621679442478], [b6989586621679442479], [c6989586621679442480], [d6989586621679442481])) Source #

Instances
SuppressUnusedWarnings (Unzip4Sym0 :: TyFun [(a6989586621679442478, b6989586621679442479, c6989586621679442480, d6989586621679442481)] ([a6989586621679442478], [b6989586621679442479], [c6989586621679442480], [d6989586621679442481]) -> *) Source # 
Instance details
type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) Source # 
Instance details
type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) = Unzip4 l

type Unzip4Sym1 (t :: [(a6989586621679442478, b6989586621679442479, c6989586621679442480, d6989586621679442481)]) = Unzip4 t Source #

data Unzip5Sym0 (l :: TyFun [(a6989586621679442473, b6989586621679442474, c6989586621679442475, d6989586621679442476, e6989586621679442477)] ([a6989586621679442473], [b6989586621679442474], [c6989586621679442475], [d6989586621679442476], [e6989586621679442477])) Source #

Instances
SuppressUnusedWarnings (Unzip5Sym0 :: TyFun [(a6989586621679442473, b6989586621679442474, c6989586621679442475, d6989586621679442476, e6989586621679442477)] ([a6989586621679442473], [b6989586621679442474], [c6989586621679442475], [d6989586621679442476], [e6989586621679442477]) -> *) Source # 
Instance details
type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) Source # 
Instance details
type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) = Unzip5 l

type Unzip5Sym1 (t :: [(a6989586621679442473, b6989586621679442474, c6989586621679442475, d6989586621679442476, e6989586621679442477)]) = Unzip5 t Source #

data Unzip6Sym0 (l :: TyFun [(a6989586621679442467, b6989586621679442468, c6989586621679442469, d6989586621679442470, e6989586621679442471, f6989586621679442472)] ([a6989586621679442467], [b6989586621679442468], [c6989586621679442469], [d6989586621679442470], [e6989586621679442471], [f6989586621679442472])) Source #

Instances
SuppressUnusedWarnings (Unzip6Sym0 :: TyFun [(a6989586621679442467, b6989586621679442468, c6989586621679442469, d6989586621679442470, e6989586621679442471, f6989586621679442472)] ([a6989586621679442467], [b6989586621679442468], [c6989586621679442469], [d6989586621679442470], [e6989586621679442471], [f6989586621679442472]) -> *) Source # 
Instance details
type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) Source # 
Instance details
type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) = Unzip6 l

type Unzip6Sym1 (t :: [(a6989586621679442467, b6989586621679442468, c6989586621679442469, d6989586621679442470, e6989586621679442471, f6989586621679442472)]) = Unzip6 t Source #

data Unzip7Sym0 (l :: TyFun [(a6989586621679442460, b6989586621679442461, c6989586621679442462, d6989586621679442463, e6989586621679442464, f6989586621679442465, g6989586621679442466)] ([a6989586621679442460], [b6989586621679442461], [c6989586621679442462], [d6989586621679442463], [e6989586621679442464], [f6989586621679442465], [g6989586621679442466])) Source #

Instances
SuppressUnusedWarnings (Unzip7Sym0 :: TyFun [(a6989586621679442460, b6989586621679442461, c6989586621679442462, d6989586621679442463, e6989586621679442464, f6989586621679442465, g6989586621679442466)] ([a6989586621679442460], [b6989586621679442461], [c6989586621679442462], [d6989586621679442463], [e6989586621679442464], [f6989586621679442465], [g6989586621679442466]) -> *) Source # 
Instance details
type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) Source # 
Instance details
type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) = Unzip7 l

type Unzip7Sym1 (t :: [(a6989586621679442460, b6989586621679442461, c6989586621679442462, d6989586621679442463, e6989586621679442464, f6989586621679442465, g6989586621679442466)]) = Unzip7 t Source #

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

Instances
SuppressUnusedWarnings (DeleteSym0 :: TyFun a6989586621679442459 (TyFun [a6989586621679442459] [a6989586621679442459] -> Type) -> *) Source # 
Instance details
type Apply (DeleteSym0 :: TyFun a6989586621679442459 (TyFun [a6989586621679442459] [a6989586621679442459] -> Type) -> *) (l :: a6989586621679442459) Source # 
Instance details
type Apply (DeleteSym0 :: TyFun a6989586621679442459 (TyFun [a6989586621679442459] [a6989586621679442459] -> Type) -> *) (l :: a6989586621679442459) = DeleteSym1 l

data DeleteSym1 (l :: a6989586621679442459) (l :: TyFun [a6989586621679442459] [a6989586621679442459]) Source #

Instances
SuppressUnusedWarnings (DeleteSym1 :: a6989586621679442459 -> TyFun [a6989586621679442459] [a6989586621679442459] -> *) Source # 
Instance details
type Apply (DeleteSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (DeleteSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Delete l1 l2

type DeleteSym2 (t :: a6989586621679442459) (t :: [a6989586621679442459]) = Delete t t Source #

data (\\@#@$) (l :: TyFun [a6989586621679442458] (TyFun [a6989586621679442458] [a6989586621679442458] -> Type)) Source #

Instances
SuppressUnusedWarnings ((\\@#@$) :: TyFun [a6989586621679442458] (TyFun [a6989586621679442458] [a6989586621679442458] -> Type) -> *) Source # 
Instance details
type Apply ((\\@#@$) :: TyFun [a6989586621679442458] (TyFun [a6989586621679442458] [a6989586621679442458] -> Type) -> *) (l :: [a6989586621679442458]) Source # 
Instance details
type Apply ((\\@#@$) :: TyFun [a6989586621679442458] (TyFun [a6989586621679442458] [a6989586621679442458] -> Type) -> *) (l :: [a6989586621679442458]) = (\\@#@$$) l

data (l :: [a6989586621679442458]) \\@#@$$ (l :: TyFun [a6989586621679442458] [a6989586621679442458]) Source #

Instances
SuppressUnusedWarnings ((\\@#@$$) :: [a6989586621679442458] -> TyFun [a6989586621679442458] [a6989586621679442458] -> *) Source # 
Instance details
type Apply ((\\@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply ((\\@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = l1 \\ l2

type (\\@#@$$$) (t :: [a6989586621679442458]) (t :: [a6989586621679442458]) = (\\) t t Source #

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

Instances
SuppressUnusedWarnings (IntersectSym0 :: TyFun [a6989586621679442445] (TyFun [a6989586621679442445] [a6989586621679442445] -> Type) -> *) Source # 
Instance details
type Apply (IntersectSym0 :: TyFun [a6989586621679442445] (TyFun [a6989586621679442445] [a6989586621679442445] -> Type) -> *) (l :: [a6989586621679442445]) Source # 
Instance details
type Apply (IntersectSym0 :: TyFun [a6989586621679442445] (TyFun [a6989586621679442445] [a6989586621679442445] -> Type) -> *) (l :: [a6989586621679442445]) = IntersectSym1 l

data IntersectSym1 (l :: [a6989586621679442445]) (l :: TyFun [a6989586621679442445] [a6989586621679442445]) Source #

Instances
SuppressUnusedWarnings (IntersectSym1 :: [a6989586621679442445] -> TyFun [a6989586621679442445] [a6989586621679442445] -> *) Source # 
Instance details
type Apply (IntersectSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (IntersectSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Intersect l1 l2

type IntersectSym2 (t :: [a6989586621679442445]) (t :: [a6989586621679442445]) = Intersect t t Source #

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

Instances
SuppressUnusedWarnings (InsertSym0 :: TyFun a6989586621679442432 (TyFun [a6989586621679442432] [a6989586621679442432] -> Type) -> *) Source # 
Instance details
type Apply (InsertSym0 :: TyFun a6989586621679442432 (TyFun [a6989586621679442432] [a6989586621679442432] -> Type) -> *) (l :: a6989586621679442432) Source # 
Instance details
type Apply (InsertSym0 :: TyFun a6989586621679442432 (TyFun [a6989586621679442432] [a6989586621679442432] -> Type) -> *) (l :: a6989586621679442432) = InsertSym1 l

data InsertSym1 (l :: a6989586621679442432) (l :: TyFun [a6989586621679442432] [a6989586621679442432]) Source #

Instances
SuppressUnusedWarnings (InsertSym1 :: a6989586621679442432 -> TyFun [a6989586621679442432] [a6989586621679442432] -> *) Source # 
Instance details
type Apply (InsertSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (InsertSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Insert l1 l2

type InsertSym2 (t :: a6989586621679442432) (t :: [a6989586621679442432]) = Insert t t Source #

data SortSym0 (l :: TyFun [a6989586621679442431] [a6989586621679442431]) Source #

Instances
SuppressUnusedWarnings (SortSym0 :: TyFun [a6989586621679442431] [a6989586621679442431] -> *) Source # 
Instance details
type Apply (SortSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # 
Instance details
type Apply (SortSym0 :: TyFun [a] [a] -> *) (l :: [a]) = Sort l

type SortSym1 (t :: [a6989586621679442431]) = Sort t Source #

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

Instances
SuppressUnusedWarnings (DeleteBySym0 :: TyFun (TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) (TyFun a6989586621679442457 (TyFun [a6989586621679442457] [a6989586621679442457] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) (TyFun a6989586621679442457 (TyFun [a6989586621679442457] [a6989586621679442457] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) Source # 
Instance details
type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) (TyFun a6989586621679442457 (TyFun [a6989586621679442457] [a6989586621679442457] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) = DeleteBySym1 l

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

Instances
SuppressUnusedWarnings (DeleteBySym1 :: (TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) -> TyFun a6989586621679442457 (TyFun [a6989586621679442457] [a6989586621679442457] -> Type) -> *) Source # 
Instance details
type Apply (DeleteBySym1 l1 :: TyFun a6989586621679442457 (TyFun [a6989586621679442457] [a6989586621679442457] -> Type) -> *) (l2 :: a6989586621679442457) Source # 
Instance details
type Apply (DeleteBySym1 l1 :: TyFun a6989586621679442457 (TyFun [a6989586621679442457] [a6989586621679442457] -> Type) -> *) (l2 :: a6989586621679442457) = DeleteBySym2 l1 l2

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

Instances
SuppressUnusedWarnings (DeleteBySym2 :: (TyFun a6989586621679442457 (TyFun a6989586621679442457 Bool -> Type) -> Type) -> a6989586621679442457 -> TyFun [a6989586621679442457] [a6989586621679442457] -> *) Source # 
Instance details
type Apply (DeleteBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # 
Instance details
type Apply (DeleteBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) = DeleteBy l1 l2 l3

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

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

Instances
SuppressUnusedWarnings (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) (TyFun [a6989586621679442456] (TyFun [a6989586621679442456] [a6989586621679442456] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) (TyFun [a6989586621679442456] (TyFun [a6989586621679442456] [a6989586621679442456] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) Source # 
Instance details
type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) (TyFun [a6989586621679442456] (TyFun [a6989586621679442456] [a6989586621679442456] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) = DeleteFirstsBySym1 l

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

Instances
SuppressUnusedWarnings (DeleteFirstsBySym1 :: (TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) -> TyFun [a6989586621679442456] (TyFun [a6989586621679442456] [a6989586621679442456] -> Type) -> *) Source # 
Instance details
type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679442456] (TyFun [a6989586621679442456] [a6989586621679442456] -> Type) -> *) (l2 :: [a6989586621679442456]) Source # 
Instance details
type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679442456] (TyFun [a6989586621679442456] [a6989586621679442456] -> Type) -> *) (l2 :: [a6989586621679442456]) = DeleteFirstsBySym2 l1 l2

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

Instances
SuppressUnusedWarnings (DeleteFirstsBySym2 :: (TyFun a6989586621679442456 (TyFun a6989586621679442456 Bool -> Type) -> Type) -> [a6989586621679442456] -> TyFun [a6989586621679442456] [a6989586621679442456] -> *) Source # 
Instance details
type Apply (DeleteFirstsBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # 
Instance details
type Apply (DeleteFirstsBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) = DeleteFirstsBy l1 l2 l3

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

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

Instances
SuppressUnusedWarnings (IntersectBySym0 :: TyFun (TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) (TyFun [a6989586621679442444] (TyFun [a6989586621679442444] [a6989586621679442444] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) (TyFun [a6989586621679442444] (TyFun [a6989586621679442444] [a6989586621679442444] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) Source # 
Instance details
type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) (TyFun [a6989586621679442444] (TyFun [a6989586621679442444] [a6989586621679442444] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) = IntersectBySym1 l

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

Instances
SuppressUnusedWarnings (IntersectBySym1 :: (TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) -> TyFun [a6989586621679442444] (TyFun [a6989586621679442444] [a6989586621679442444] -> Type) -> *) Source # 
Instance details
type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679442444] (TyFun [a6989586621679442444] [a6989586621679442444] -> Type) -> *) (l2 :: [a6989586621679442444]) Source # 
Instance details
type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679442444] (TyFun [a6989586621679442444] [a6989586621679442444] -> Type) -> *) (l2 :: [a6989586621679442444]) = IntersectBySym2 l1 l2

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

Instances
SuppressUnusedWarnings (IntersectBySym2 :: (TyFun a6989586621679442444 (TyFun a6989586621679442444 Bool -> Type) -> Type) -> [a6989586621679442444] -> TyFun [a6989586621679442444] [a6989586621679442444] -> *) Source # 
Instance details
type Apply (IntersectBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # 
Instance details
type Apply (IntersectBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) = IntersectBy l1 l2 l3

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

Instances
SuppressUnusedWarnings (SortBySym0 :: TyFun (TyFun a6989586621679442455 (TyFun a6989586621679442455 Ordering -> Type) -> Type) (TyFun [a6989586621679442455] [a6989586621679442455] -> Type) -> *) Source # 
Instance details
type Apply (SortBySym0 :: TyFun (TyFun a6989586621679442455 (TyFun a6989586621679442455 Ordering -> Type) -> Type) (TyFun [a6989586621679442455] [a6989586621679442455] -> Type) -> *) (l :: TyFun a6989586621679442455 (TyFun a6989586621679442455 Ordering -> Type) -> Type) Source # 
Instance details
type Apply (SortBySym0 :: TyFun (TyFun a6989586621679442455 (TyFun a6989586621679442455 Ordering -> Type) -> Type) (TyFun [a6989586621679442455] [a6989586621679442455] -> Type) -> *) (l :: TyFun a6989586621679442455 (TyFun a6989586621679442455 Ordering -> Type) -> Type) = SortBySym1 l

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

Instances
SuppressUnusedWarnings (SortBySym1 :: (TyFun a6989586621679442455 (TyFun a6989586621679442455 Ordering -> Type) -> Type) -> TyFun [a6989586621679442455] [a6989586621679442455] -> *) Source # 
Instance details
type Apply (SortBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (SortBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = SortBy l1 l2

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

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

Instances
SuppressUnusedWarnings (InsertBySym0 :: TyFun (TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) (TyFun a6989586621679442454 (TyFun [a6989586621679442454] [a6989586621679442454] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) (TyFun a6989586621679442454 (TyFun [a6989586621679442454] [a6989586621679442454] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) Source # 
Instance details
type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) (TyFun a6989586621679442454 (TyFun [a6989586621679442454] [a6989586621679442454] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) = InsertBySym1 l

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

Instances
SuppressUnusedWarnings (InsertBySym1 :: (TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) -> TyFun a6989586621679442454 (TyFun [a6989586621679442454] [a6989586621679442454] -> Type) -> *) Source # 
Instance details
type Apply (InsertBySym1 l1 :: TyFun a6989586621679442454 (TyFun [a6989586621679442454] [a6989586621679442454] -> Type) -> *) (l2 :: a6989586621679442454) Source # 
Instance details
type Apply (InsertBySym1 l1 :: TyFun a6989586621679442454 (TyFun [a6989586621679442454] [a6989586621679442454] -> Type) -> *) (l2 :: a6989586621679442454) = InsertBySym2 l1 l2

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

Instances
SuppressUnusedWarnings (InsertBySym2 :: (TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) -> a6989586621679442454 -> TyFun [a6989586621679442454] [a6989586621679442454] -> *) Source # 
Instance details
type Apply (InsertBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # 
Instance details
type Apply (InsertBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) = InsertBy l1 l2 l3

type InsertBySym3 (t :: TyFun a6989586621679442454 (TyFun a6989586621679442454 Ordering -> Type) -> Type) (t :: a6989586621679442454) (t :: [a6989586621679442454]) = InsertBy t t t Source #

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

Instances
SuppressUnusedWarnings (MaximumBySym0 :: TyFun (TyFun a6989586621679442453 (TyFun a6989586621679442453 Ordering -> Type) -> Type) (TyFun [a6989586621679442453] a6989586621679442453 -> Type) -> *) Source # 
Instance details
type Apply (MaximumBySym0 :: TyFun (TyFun a6989586621679442453 (TyFun a6989586621679442453 Ordering -> Type) -> Type) (TyFun [a6989586621679442453] a6989586621679442453 -> Type) -> *) (l :: TyFun a6989586621679442453 (TyFun a6989586621679442453 Ordering -> Type) -> Type) Source # 
Instance details
type Apply (MaximumBySym0 :: TyFun (TyFun a6989586621679442453 (TyFun a6989586621679442453 Ordering -> Type) -> Type) (TyFun [a6989586621679442453] a6989586621679442453 -> Type) -> *) (l :: TyFun a6989586621679442453 (TyFun a6989586621679442453 Ordering -> Type) -> Type) = MaximumBySym1 l

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

Instances
SuppressUnusedWarnings (MaximumBySym1 :: (TyFun a6989586621679442453 (TyFun a6989586621679442453 Ordering -> Type) -> Type) -> TyFun [a6989586621679442453] a6989586621679442453 -> *) Source # 
Instance details
type Apply (MaximumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # 
Instance details
type Apply (MaximumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) = MaximumBy l1 l2

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

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

Instances
SuppressUnusedWarnings (MinimumBySym0 :: TyFun (TyFun a6989586621679442452 (TyFun a6989586621679442452 Ordering -> Type) -> Type) (TyFun [a6989586621679442452] a6989586621679442452 -> Type) -> *) Source # 
Instance details
type Apply (MinimumBySym0 :: TyFun (TyFun a6989586621679442452 (TyFun a6989586621679442452 Ordering -> Type) -> Type) (TyFun [a6989586621679442452] a6989586621679442452 -> Type) -> *) (l :: TyFun a6989586621679442452 (TyFun a6989586621679442452 Ordering -> Type) -> Type) Source # 
Instance details
type Apply (MinimumBySym0 :: TyFun (TyFun a6989586621679442452 (TyFun a6989586621679442452 Ordering -> Type) -> Type) (TyFun [a6989586621679442452] a6989586621679442452 -> Type) -> *) (l :: TyFun a6989586621679442452 (TyFun a6989586621679442452 Ordering -> Type) -> Type) = MinimumBySym1 l

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

Instances
SuppressUnusedWarnings (MinimumBySym1 :: (TyFun a6989586621679442452 (TyFun a6989586621679442452 Ordering -> Type) -> Type) -> TyFun [a6989586621679442452] a6989586621679442452 -> *) Source # 
Instance details
type Apply (MinimumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # 
Instance details
type Apply (MinimumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) = MinimumBy l1 l2

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

data LengthSym0 (l :: TyFun [a6989586621679442423] Nat) Source #

Instances
SuppressUnusedWarnings (LengthSym0 :: TyFun [a6989586621679442423] Nat -> *) Source # 
Instance details
type Apply (LengthSym0 :: TyFun [a] Nat -> *) (l :: [a]) Source # 
Instance details
type Apply (LengthSym0 :: TyFun [a] Nat -> *) (l :: [a]) = Length l

type LengthSym1 (t :: [a6989586621679442423]) = Length t Source #

data SumSym0 (l :: TyFun [a6989586621679442425] a6989586621679442425) Source #

Instances
SuppressUnusedWarnings (SumSym0 :: TyFun [a6989586621679442425] a6989586621679442425 -> *) Source # 
Instance details
type Apply (SumSym0 :: TyFun [a] a -> *) (l :: [a]) Source # 
Instance details
type Apply (SumSym0 :: TyFun [a] a -> *) (l :: [a]) = Sum l

type SumSym1 (t :: [a6989586621679442425]) = Sum t Source #

data ProductSym0 (l :: TyFun [a6989586621679442424] a6989586621679442424) Source #

Instances
SuppressUnusedWarnings (ProductSym0 :: TyFun [a6989586621679442424] a6989586621679442424 -> *) Source # 
Instance details
type Apply (ProductSym0 :: TyFun [a] a -> *) (l :: [a]) Source # 
Instance details
type Apply (ProductSym0 :: TyFun [a] a -> *) (l :: [a]) = Product l

type ProductSym1 (t :: [a6989586621679442424]) = Product t Source #

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

Instances
SuppressUnusedWarnings (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679442422 [a6989586621679442422] -> Type) -> *) Source # 
Instance details
type Apply (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679442422 [a6989586621679442422] -> Type) -> *) (l :: Nat) Source # 
Instance details
type Apply (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679442422 [a6989586621679442422] -> Type) -> *) (l :: Nat) = (ReplicateSym1 l :: TyFun a6989586621679442422 [a6989586621679442422] -> *)

data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679442422 [a6989586621679442422]) Source #

Instances
SuppressUnusedWarnings (ReplicateSym1 :: Nat -> TyFun a6989586621679442422 [a6989586621679442422] -> *) Source # 
Instance details
type Apply (ReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) Source # 
Instance details
type Apply (ReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) = Replicate l1 l2

type ReplicateSym2 (t :: Nat) (t :: a6989586621679442422) = Replicate t t Source #

data TransposeSym0 (l :: TyFun [[a6989586621679442421]] [[a6989586621679442421]]) Source #

Instances
SuppressUnusedWarnings (TransposeSym0 :: TyFun [[a6989586621679442421]] [[a6989586621679442421]] -> *) Source # 
Instance details
type Apply (TransposeSym0 :: TyFun [[a]] [[a]] -> *) (l :: [[a]]) Source # 
Instance details
type Apply (TransposeSym0 :: TyFun [[a]] [[a]] -> *) (l :: [[a]]) = Transpose l

type TransposeSym1 (t :: [[a6989586621679442421]]) = Transpose t Source #

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

Instances
SuppressUnusedWarnings (TakeSym0 :: TyFun Nat (TyFun [a6989586621679442438] [a6989586621679442438] -> Type) -> *) Source # 
Instance details
type Apply (TakeSym0 :: TyFun Nat (TyFun [a6989586621679442438] [a6989586621679442438] -> Type) -> *) (l :: Nat) Source # 
Instance details
type Apply (TakeSym0 :: TyFun Nat (TyFun [a6989586621679442438] [a6989586621679442438] -> Type) -> *) (l :: Nat) = (TakeSym1 l :: TyFun [a6989586621679442438] [a6989586621679442438] -> *)

data TakeSym1 (l :: Nat) (l :: TyFun [a6989586621679442438] [a6989586621679442438]) Source #

Instances
SuppressUnusedWarnings (TakeSym1 :: Nat -> TyFun [a6989586621679442438] [a6989586621679442438] -> *) Source # 
Instance details
type Apply (TakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (TakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Take l1 l2

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

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

Instances
SuppressUnusedWarnings (DropSym0 :: TyFun Nat (TyFun [a6989586621679442437] [a6989586621679442437] -> Type) -> *) Source # 
Instance details
type Apply (DropSym0 :: TyFun Nat (TyFun [a6989586621679442437] [a6989586621679442437] -> Type) -> *) (l :: Nat) Source # 
Instance details
type Apply (DropSym0 :: TyFun Nat (TyFun [a6989586621679442437] [a6989586621679442437] -> Type) -> *) (l :: Nat) = (DropSym1 l :: TyFun [a6989586621679442437] [a6989586621679442437] -> *)

data DropSym1 (l :: Nat) (l :: TyFun [a6989586621679442437] [a6989586621679442437]) Source #

Instances
SuppressUnusedWarnings (DropSym1 :: Nat -> TyFun [a6989586621679442437] [a6989586621679442437] -> *) Source # 
Instance details
type Apply (DropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (DropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Drop l1 l2

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

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

Instances
SuppressUnusedWarnings (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679442436] ([a6989586621679442436], [a6989586621679442436]) -> Type) -> *) Source # 
Instance details
type Apply (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679442436] ([a6989586621679442436], [a6989586621679442436]) -> Type) -> *) (l :: Nat) Source # 
Instance details
type Apply (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679442436] ([a6989586621679442436], [a6989586621679442436]) -> Type) -> *) (l :: Nat) = (SplitAtSym1 l :: TyFun [a6989586621679442436] ([a6989586621679442436], [a6989586621679442436]) -> *)

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

Instances
SuppressUnusedWarnings (SplitAtSym1 :: Nat -> TyFun [a6989586621679442436] ([a6989586621679442436], [a6989586621679442436]) -> *) Source # 
Instance details
type Apply (SplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # 
Instance details
type Apply (SplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) = SplitAt l1 l2

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

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

Instances
SuppressUnusedWarnings (TakeWhileSym0 :: TyFun (TyFun a6989586621679442443 Bool -> Type) (TyFun [a6989586621679442443] [a6989586621679442443] -> Type) -> *) Source # 
Instance details
type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679442443 Bool -> Type) (TyFun [a6989586621679442443] [a6989586621679442443] -> Type) -> *) (l :: TyFun a6989586621679442443 Bool -> Type) Source # 
Instance details
type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679442443 Bool -> Type) (TyFun [a6989586621679442443] [a6989586621679442443] -> Type) -> *) (l :: TyFun a6989586621679442443 Bool -> Type) = TakeWhileSym1 l

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

Instances
SuppressUnusedWarnings (TakeWhileSym1 :: (TyFun a6989586621679442443 Bool -> Type) -> TyFun [a6989586621679442443] [a6989586621679442443] -> *) Source # 
Instance details
type Apply (TakeWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (TakeWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = TakeWhile l1 l2

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

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

Instances
SuppressUnusedWarnings (DropWhileSym0 :: TyFun (TyFun a6989586621679442442 Bool -> Type) (TyFun [a6989586621679442442] [a6989586621679442442] -> Type) -> *) Source # 
Instance details
type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679442442 Bool -> Type) (TyFun [a6989586621679442442] [a6989586621679442442] -> Type) -> *) (l :: TyFun a6989586621679442442 Bool -> Type) Source # 
Instance details
type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679442442 Bool -> Type) (TyFun [a6989586621679442442] [a6989586621679442442] -> Type) -> *) (l :: TyFun a6989586621679442442 Bool -> Type) = DropWhileSym1 l

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

Instances
SuppressUnusedWarnings (DropWhileSym1 :: (TyFun a6989586621679442442 Bool -> Type) -> TyFun [a6989586621679442442] [a6989586621679442442] -> *) Source # 
Instance details
type Apply (DropWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (DropWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = DropWhile l1 l2

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

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

Instances
SuppressUnusedWarnings (DropWhileEndSym0 :: TyFun (TyFun a6989586621679442441 Bool -> Type) (TyFun [a6989586621679442441] [a6989586621679442441] -> Type) -> *) Source # 
Instance details
type Apply (DropWhileEndSym0 :: TyFun (TyFun a6989586621679442441 Bool -> Type) (TyFun [a6989586621679442441] [a6989586621679442441] -> Type) -> *) (l :: TyFun a6989586621679442441 Bool -> Type) Source # 
Instance details
type Apply (DropWhileEndSym0 :: TyFun (TyFun a6989586621679442441 Bool -> Type) (TyFun [a6989586621679442441] [a6989586621679442441] -> Type) -> *) (l :: TyFun a6989586621679442441 Bool -> Type) = DropWhileEndSym1 l

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

Instances
SuppressUnusedWarnings (DropWhileEndSym1 :: (TyFun a6989586621679442441 Bool -> Type) -> TyFun [a6989586621679442441] [a6989586621679442441] -> *) Source # 
Instance details
type Apply (DropWhileEndSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (DropWhileEndSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = DropWhileEnd l1 l2

type DropWhileEndSym2 (t :: TyFun a6989586621679442441 Bool -> Type) (t :: [a6989586621679442441]) = DropWhileEnd t t Source #

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

Instances
SuppressUnusedWarnings (SpanSym0 :: TyFun (TyFun a6989586621679442440 Bool -> Type) (TyFun [a6989586621679442440] ([a6989586621679442440], [a6989586621679442440]) -> Type) -> *) Source # 
Instance details
type Apply (SpanSym0 :: TyFun (TyFun a6989586621679442440 Bool -> Type) (TyFun [a6989586621679442440] ([a6989586621679442440], [a6989586621679442440]) -> Type) -> *) (l :: TyFun a6989586621679442440 Bool -> Type) Source # 
Instance details
type Apply (SpanSym0 :: TyFun (TyFun a6989586621679442440 Bool -> Type) (TyFun [a6989586621679442440] ([a6989586621679442440], [a6989586621679442440]) -> Type) -> *) (l :: TyFun a6989586621679442440 Bool -> Type) = SpanSym1 l

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

Instances
SuppressUnusedWarnings (SpanSym1 :: (TyFun a6989586621679442440 Bool -> Type) -> TyFun [a6989586621679442440] ([a6989586621679442440], [a6989586621679442440]) -> *) Source # 
Instance details
type Apply (SpanSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # 
Instance details
type Apply (SpanSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) = Span l1 l2

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

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

Instances
SuppressUnusedWarnings (BreakSym0 :: TyFun (TyFun a6989586621679442439 Bool -> Type) (TyFun [a6989586621679442439] ([a6989586621679442439], [a6989586621679442439]) -> Type) -> *) Source # 
Instance details
type Apply (BreakSym0 :: TyFun (TyFun a6989586621679442439 Bool -> Type) (TyFun [a6989586621679442439] ([a6989586621679442439], [a6989586621679442439]) -> Type) -> *) (l :: TyFun a6989586621679442439 Bool -> Type) Source # 
Instance details
type Apply (BreakSym0 :: TyFun (TyFun a6989586621679442439 Bool -> Type) (TyFun [a6989586621679442439] ([a6989586621679442439], [a6989586621679442439]) -> Type) -> *) (l :: TyFun a6989586621679442439 Bool -> Type) = BreakSym1 l

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

Instances
SuppressUnusedWarnings (BreakSym1 :: (TyFun a6989586621679442439 Bool -> Type) -> TyFun [a6989586621679442439] ([a6989586621679442439], [a6989586621679442439]) -> *) Source # 
Instance details
type Apply (BreakSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # 
Instance details
type Apply (BreakSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) = Break l1 l2

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

data StripPrefixSym0 (l :: TyFun [a6989586621679922315] (TyFun [a6989586621679922315] (Maybe [a6989586621679922315]) -> Type)) Source #

Instances
SuppressUnusedWarnings (StripPrefixSym0 :: TyFun [a6989586621679922315] (TyFun [a6989586621679922315] (Maybe [a6989586621679922315]) -> Type) -> *) Source # 
Instance details
type Apply (StripPrefixSym0 :: TyFun [a6989586621679922315] (TyFun [a6989586621679922315] (Maybe [a6989586621679922315]) -> Type) -> *) (l :: [a6989586621679922315]) Source # 
Instance details
type Apply (StripPrefixSym0 :: TyFun [a6989586621679922315] (TyFun [a6989586621679922315] (Maybe [a6989586621679922315]) -> Type) -> *) (l :: [a6989586621679922315]) = StripPrefixSym1 l

data StripPrefixSym1 (l :: [a6989586621679922315]) (l :: TyFun [a6989586621679922315] (Maybe [a6989586621679922315])) Source #

Instances
SuppressUnusedWarnings (StripPrefixSym1 :: [a6989586621679922315] -> TyFun [a6989586621679922315] (Maybe [a6989586621679922315]) -> *) Source # 
Instance details
type Apply (StripPrefixSym1 l1 :: TyFun [a] (Maybe [a]) -> *) (l2 :: [a]) Source # 
Instance details
type Apply (StripPrefixSym1 l1 :: TyFun [a] (Maybe [a]) -> *) (l2 :: [a]) = StripPrefix l1 l2

type StripPrefixSym2 (t :: [a6989586621679922315]) (t :: [a6989586621679922315]) = StripPrefix t t Source #

data MaximumSym0 (l :: TyFun [a6989586621679442434] a6989586621679442434) Source #

Instances
SuppressUnusedWarnings (MaximumSym0 :: TyFun [a6989586621679442434] a6989586621679442434 -> *) Source # 
Instance details
type Apply (MaximumSym0 :: TyFun [a] a -> *) (l :: [a]) Source # 
Instance details
type Apply (MaximumSym0 :: TyFun [a] a -> *) (l :: [a]) = Maximum l

type MaximumSym1 (t :: [a6989586621679442434]) = Maximum t Source #

data MinimumSym0 (l :: TyFun [a6989586621679442433] a6989586621679442433) Source #

Instances
SuppressUnusedWarnings (MinimumSym0 :: TyFun [a6989586621679442433] a6989586621679442433 -> *) Source # 
Instance details
type Apply (MinimumSym0 :: TyFun [a] a -> *) (l :: [a]) Source # 
Instance details
type Apply (MinimumSym0 :: TyFun [a] a -> *) (l :: [a]) = Minimum l

type MinimumSym1 (t :: [a6989586621679442433]) = Minimum t Source #

data GroupSym0 (l :: TyFun [a6989586621679442435] [[a6989586621679442435]]) Source #

Instances
SuppressUnusedWarnings (GroupSym0 :: TyFun [a6989586621679442435] [[a6989586621679442435]] -> *) Source # 
Instance details
type Apply (GroupSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # 
Instance details
type Apply (GroupSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) = Group l

type GroupSym1 (t :: [a6989586621679442435]) = Group t Source #

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

Instances
SuppressUnusedWarnings (GroupBySym0 :: TyFun (TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) (TyFun [a6989586621679442430] [[a6989586621679442430]] -> Type) -> *) Source # 
Instance details
type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) (TyFun [a6989586621679442430] [[a6989586621679442430]] -> Type) -> *) (l :: TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) Source # 
Instance details
type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) (TyFun [a6989586621679442430] [[a6989586621679442430]] -> Type) -> *) (l :: TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) = GroupBySym1 l

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

Instances
SuppressUnusedWarnings (GroupBySym1 :: (TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) -> TyFun [a6989586621679442430] [[a6989586621679442430]] -> *) Source # 
Instance details
type Apply (GroupBySym1 l1 :: TyFun [a] [[a]] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (GroupBySym1 l1 :: TyFun [a] [[a]] -> *) (l2 :: [a]) = GroupBy l1 l2

type GroupBySym2 (t :: TyFun a6989586621679442430 (TyFun a6989586621679442430 Bool -> Type) -> Type) (t :: [a6989586621679442430]) = GroupBy t t Source #

data LookupSym0 (l :: TyFun a6989586621679442428 (TyFun [(a6989586621679442428, b6989586621679442429)] (Maybe b6989586621679442429) -> Type)) Source #

Instances
SuppressUnusedWarnings (LookupSym0 :: TyFun a6989586621679442428 (TyFun [(a6989586621679442428, b6989586621679442429)] (Maybe b6989586621679442429) -> Type) -> *) Source # 
Instance details
type Apply (LookupSym0 :: TyFun a6989586621679442428 (TyFun [(a6989586621679442428, b6989586621679442429)] (Maybe b6989586621679442429) -> Type) -> *) (l :: a6989586621679442428) Source # 
Instance details
type Apply (LookupSym0 :: TyFun a6989586621679442428 (TyFun [(a6989586621679442428, b6989586621679442429)] (Maybe b6989586621679442429) -> Type) -> *) (l :: a6989586621679442428) = (LookupSym1 l :: TyFun [(a6989586621679442428, b6989586621679442429)] (Maybe b6989586621679442429) -> *)

data LookupSym1 (l :: a6989586621679442428) (l :: TyFun [(a6989586621679442428, b6989586621679442429)] (Maybe b6989586621679442429)) Source #

Instances
SuppressUnusedWarnings (LookupSym1 :: a6989586621679442428 -> TyFun [(a6989586621679442428, b6989586621679442429)] (Maybe b6989586621679442429) -> *) Source # 
Instance details
type Apply (LookupSym1 l1 :: TyFun [(a, b)] (Maybe b) -> *) (l2 :: [(a, b)]) Source # 
Instance details
type Apply (LookupSym1 l1 :: TyFun [(a, b)] (Maybe b) -> *) (l2 :: [(a, b)]) = Lookup l1 l2

type LookupSym2 (t :: a6989586621679442428) (t :: [(a6989586621679442428, b6989586621679442429)]) = Lookup t t Source #

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

Instances
SuppressUnusedWarnings (FindSym0 :: TyFun (TyFun a6989586621679442450 Bool -> Type) (TyFun [a6989586621679442450] (Maybe a6989586621679442450) -> Type) -> *) Source # 
Instance details
type Apply (FindSym0 :: TyFun (TyFun a6989586621679442450 Bool -> Type) (TyFun [a6989586621679442450] (Maybe a6989586621679442450) -> Type) -> *) (l :: TyFun a6989586621679442450 Bool -> Type) Source # 
Instance details
type Apply (FindSym0 :: TyFun (TyFun a6989586621679442450 Bool -> Type) (TyFun [a6989586621679442450] (Maybe a6989586621679442450) -> Type) -> *) (l :: TyFun a6989586621679442450 Bool -> Type) = FindSym1 l

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

Instances
SuppressUnusedWarnings (FindSym1 :: (TyFun a6989586621679442450 Bool -> Type) -> TyFun [a6989586621679442450] (Maybe a6989586621679442450) -> *) Source # 
Instance details
type Apply (FindSym1 l1 :: TyFun [a] (Maybe a) -> *) (l2 :: [a]) Source # 
Instance details
type Apply (FindSym1 l1 :: TyFun [a] (Maybe a) -> *) (l2 :: [a]) = Find l1 l2

type FindSym2 (t :: TyFun a6989586621679442450 Bool -> Type) (t :: [a6989586621679442450]) = Find t t Source #

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

Instances
SuppressUnusedWarnings (FilterSym0 :: TyFun (TyFun a6989586621679442451 Bool -> Type) (TyFun [a6989586621679442451] [a6989586621679442451] -> Type) -> *) Source # 
Instance details
type Apply (FilterSym0 :: TyFun (TyFun a6989586621679442451 Bool -> Type) (TyFun [a6989586621679442451] [a6989586621679442451] -> Type) -> *) (l :: TyFun a6989586621679442451 Bool -> Type) Source # 
Instance details
type Apply (FilterSym0 :: TyFun (TyFun a6989586621679442451 Bool -> Type) (TyFun [a6989586621679442451] [a6989586621679442451] -> Type) -> *) (l :: TyFun a6989586621679442451 Bool -> Type) = FilterSym1 l

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

Instances
SuppressUnusedWarnings (FilterSym1 :: (TyFun a6989586621679442451 Bool -> Type) -> TyFun [a6989586621679442451] [a6989586621679442451] -> *) Source # 
Instance details
type Apply (FilterSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (FilterSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Filter l1 l2

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

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

Instances
SuppressUnusedWarnings (PartitionSym0 :: TyFun (TyFun a6989586621679442427 Bool -> Type) (TyFun [a6989586621679442427] ([a6989586621679442427], [a6989586621679442427]) -> Type) -> *) Source # 
Instance details
type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679442427 Bool -> Type) (TyFun [a6989586621679442427] ([a6989586621679442427], [a6989586621679442427]) -> Type) -> *) (l :: TyFun a6989586621679442427 Bool -> Type) Source # 
Instance details
type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679442427 Bool -> Type) (TyFun [a6989586621679442427] ([a6989586621679442427], [a6989586621679442427]) -> Type) -> *) (l :: TyFun a6989586621679442427 Bool -> Type) = PartitionSym1 l

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

Instances
SuppressUnusedWarnings (PartitionSym1 :: (TyFun a6989586621679442427 Bool -> Type) -> TyFun [a6989586621679442427] ([a6989586621679442427], [a6989586621679442427]) -> *) Source # 
Instance details
type Apply (PartitionSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # 
Instance details
type Apply (PartitionSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) = Partition l1 l2

type PartitionSym2 (t :: TyFun a6989586621679442427 Bool -> Type) (t :: [a6989586621679442427]) = Partition t t Source #

data (!!@#@$) (l :: TyFun [a6989586621679442420] (TyFun Nat a6989586621679442420 -> Type)) Source #

Instances
SuppressUnusedWarnings ((!!@#@$) :: TyFun [a6989586621679442420] (TyFun Nat a6989586621679442420 -> Type) -> *) Source # 
Instance details
type Apply ((!!@#@$) :: TyFun [a6989586621679442420] (TyFun Nat a6989586621679442420 -> Type) -> *) (l :: [a6989586621679442420]) Source # 
Instance details
type Apply ((!!@#@$) :: TyFun [a6989586621679442420] (TyFun Nat a6989586621679442420 -> Type) -> *) (l :: [a6989586621679442420]) = (!!@#@$$) l

data (l :: [a6989586621679442420]) !!@#@$$ (l :: TyFun Nat a6989586621679442420) Source #

Instances
SuppressUnusedWarnings ((!!@#@$$) :: [a6989586621679442420] -> TyFun Nat a6989586621679442420 -> *) Source # 
Instance details
type Apply ((!!@#@$$) l1 :: TyFun Nat a -> *) (l2 :: Nat) Source # 
Instance details
type Apply ((!!@#@$$) l1 :: TyFun Nat a -> *) (l2 :: Nat) = l1 !! l2

type (!!@#@$$$) (t :: [a6989586621679442420]) (t :: Nat) = (!!) t t Source #

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

Instances
SuppressUnusedWarnings (ElemIndexSym0 :: TyFun a6989586621679442449 (TyFun [a6989586621679442449] (Maybe Nat) -> Type) -> *) Source # 
Instance details
type Apply (ElemIndexSym0 :: TyFun a6989586621679442449 (TyFun [a6989586621679442449] (Maybe Nat) -> Type) -> *) (l :: a6989586621679442449) Source # 
Instance details
type Apply (ElemIndexSym0 :: TyFun a6989586621679442449 (TyFun [a6989586621679442449] (Maybe Nat) -> Type) -> *) (l :: a6989586621679442449) = ElemIndexSym1 l

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

Instances
SuppressUnusedWarnings (ElemIndexSym1 :: a6989586621679442449 -> TyFun [a6989586621679442449] (Maybe Nat) -> *) Source # 
Instance details
type Apply (ElemIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) Source # 
Instance details
type Apply (ElemIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) = ElemIndex l1 l2

type ElemIndexSym2 (t :: a6989586621679442449) (t :: [a6989586621679442449]) = ElemIndex t t Source #

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

Instances
SuppressUnusedWarnings (ElemIndicesSym0 :: TyFun a6989586621679442448 (TyFun [a6989586621679442448] [Nat] -> Type) -> *) Source # 
Instance details
type Apply (ElemIndicesSym0 :: TyFun a6989586621679442448 (TyFun [a6989586621679442448] [Nat] -> Type) -> *) (l :: a6989586621679442448) Source # 
Instance details
type Apply (ElemIndicesSym0 :: TyFun a6989586621679442448 (TyFun [a6989586621679442448] [Nat] -> Type) -> *) (l :: a6989586621679442448) = ElemIndicesSym1 l

data ElemIndicesSym1 (l :: a6989586621679442448) (l :: TyFun [a6989586621679442448] [Nat]) Source #

Instances
SuppressUnusedWarnings (ElemIndicesSym1 :: a6989586621679442448 -> TyFun [a6989586621679442448] [Nat] -> *) Source # 
Instance details
type Apply (ElemIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (ElemIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) = ElemIndices l1 l2

type ElemIndicesSym2 (t :: a6989586621679442448) (t :: [a6989586621679442448]) = ElemIndices t t Source #

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

Instances
SuppressUnusedWarnings (FindIndexSym0 :: TyFun (TyFun a6989586621679442447 Bool -> Type) (TyFun [a6989586621679442447] (Maybe Nat) -> Type) -> *) Source # 
Instance details
type Apply (FindIndexSym0 :: TyFun (TyFun a6989586621679442447 Bool -> Type) (TyFun [a6989586621679442447] (Maybe Nat) -> Type) -> *) (l :: TyFun a6989586621679442447 Bool -> Type) Source # 
Instance details
type Apply (FindIndexSym0 :: TyFun (TyFun a6989586621679442447 Bool -> Type) (TyFun [a6989586621679442447] (Maybe Nat) -> Type) -> *) (l :: TyFun a6989586621679442447 Bool -> Type) = FindIndexSym1 l

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

Instances
SuppressUnusedWarnings (FindIndexSym1 :: (TyFun a6989586621679442447 Bool -> Type) -> TyFun [a6989586621679442447] (Maybe Nat) -> *) Source # 
Instance details
type Apply (FindIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) Source # 
Instance details
type Apply (FindIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) = FindIndex l1 l2

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

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

Instances
SuppressUnusedWarnings (FindIndicesSym0 :: TyFun (TyFun a6989586621679442446 Bool -> Type) (TyFun [a6989586621679442446] [Nat] -> Type) -> *) Source # 
Instance details
type Apply (FindIndicesSym0 :: TyFun (TyFun a6989586621679442446 Bool -> Type) (TyFun [a6989586621679442446] [Nat] -> Type) -> *) (l :: TyFun a6989586621679442446 Bool -> Type) Source # 
Instance details
type Apply (FindIndicesSym0 :: TyFun (TyFun a6989586621679442446 Bool -> Type) (TyFun [a6989586621679442446] [Nat] -> Type) -> *) (l :: TyFun a6989586621679442446 Bool -> Type) = FindIndicesSym1 l

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

Instances
SuppressUnusedWarnings (FindIndicesSym1 :: (TyFun a6989586621679442446 Bool -> Type) -> TyFun [a6989586621679442446] [Nat] -> *) Source # 
Instance details
type Apply (FindIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (FindIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) = FindIndices l1 l2

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

data Zip4Sym0 (l :: TyFun [a6989586621679922311] (TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip4Sym0 :: TyFun [a6989586621679922311] (TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip4Sym0 :: TyFun [a6989586621679922311] (TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679922311]) Source # 
Instance details
type Apply (Zip4Sym0 :: TyFun [a6989586621679922311] (TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679922311]) = (Zip4Sym1 l :: TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type) -> *)

data Zip4Sym1 (l :: [a6989586621679922311]) (l :: TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip4Sym1 :: [a6989586621679922311] -> TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type) -> *) (l2 :: [b6989586621679922312]) Source # 
Instance details
type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679922312] (TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> Type) -> *) (l2 :: [b6989586621679922312]) = (Zip4Sym2 l1 l2 :: TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> *)

data Zip4Sym2 (l :: [a6989586621679922311]) (l :: [b6989586621679922312]) (l :: TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip4Sym2 :: [a6989586621679922311] -> [b6989586621679922312] -> TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> *) Source # 
Instance details
type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> *) (l3 :: [c6989586621679922313]) Source # 
Instance details
type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679922313] (TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> Type) -> *) (l3 :: [c6989586621679922313]) = (Zip4Sym3 l1 l2 l3 :: TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> *)

data Zip4Sym3 (l :: [a6989586621679922311]) (l :: [b6989586621679922312]) (l :: [c6989586621679922313]) (l :: TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)]) Source #

Instances
SuppressUnusedWarnings (Zip4Sym3 :: [a6989586621679922311] -> [b6989586621679922312] -> [c6989586621679922313] -> TyFun [d6989586621679922314] [(a6989586621679922311, b6989586621679922312, c6989586621679922313, d6989586621679922314)] -> *) Source # 
Instance details
type Apply (Zip4Sym3 l1 l2 l3 :: TyFun [d] [(a, b, c, d)] -> *) (l4 :: [d]) Source # 
Instance details
type Apply (Zip4Sym3 l1 l2 l3 :: TyFun [d] [(a, b, c, d)] -> *) (l4 :: [d]) = Zip4 l1 l2 l3 l4

type Zip4Sym4 (t :: [a6989586621679922311]) (t :: [b6989586621679922312]) (t :: [c6989586621679922313]) (t :: [d6989586621679922314]) = Zip4 t t t t Source #

data Zip5Sym0 (l :: TyFun [a6989586621679922306] (TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip5Sym0 :: TyFun [a6989586621679922306] (TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip5Sym0 :: TyFun [a6989586621679922306] (TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679922306]) Source # 
Instance details
type Apply (Zip5Sym0 :: TyFun [a6989586621679922306] (TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679922306]) = (Zip5Sym1 l :: TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type) -> *)

data Zip5Sym1 (l :: [a6989586621679922306]) (l :: TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip5Sym1 :: [a6989586621679922306] -> TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679922307]) Source # 
Instance details
type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679922307] (TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679922307]) = (Zip5Sym2 l1 l2 :: TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> *)

data Zip5Sym2 (l :: [a6989586621679922306]) (l :: [b6989586621679922307]) (l :: TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip5Sym2 :: [a6989586621679922306] -> [b6989586621679922307] -> TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> *) (l3 :: [c6989586621679922308]) Source # 
Instance details
type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679922308] (TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> Type) -> *) (l3 :: [c6989586621679922308]) = (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> *)

data Zip5Sym3 (l :: [a6989586621679922306]) (l :: [b6989586621679922307]) (l :: [c6989586621679922308]) (l :: TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip5Sym3 :: [a6989586621679922306] -> [b6989586621679922307] -> [c6989586621679922308] -> TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> *) Source # 
Instance details
type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> *) (l4 :: [d6989586621679922309]) Source # 
Instance details
type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679922309] (TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> Type) -> *) (l4 :: [d6989586621679922309]) = (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> *)

data Zip5Sym4 (l :: [a6989586621679922306]) (l :: [b6989586621679922307]) (l :: [c6989586621679922308]) (l :: [d6989586621679922309]) (l :: TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)]) Source #

Instances
SuppressUnusedWarnings (Zip5Sym4 :: [a6989586621679922306] -> [b6989586621679922307] -> [c6989586621679922308] -> [d6989586621679922309] -> TyFun [e6989586621679922310] [(a6989586621679922306, b6989586621679922307, c6989586621679922308, d6989586621679922309, e6989586621679922310)] -> *) Source # 
Instance details
type Apply (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e] [(a, b, c, d, e)] -> *) (l5 :: [e]) Source # 
Instance details
type Apply (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e] [(a, b, c, d, e)] -> *) (l5 :: [e]) = Zip5 l1 l2 l3 l4 l5

type Zip5Sym5 (t :: [a6989586621679922306]) (t :: [b6989586621679922307]) (t :: [c6989586621679922308]) (t :: [d6989586621679922309]) (t :: [e6989586621679922310]) = Zip5 t t t t t Source #

data Zip6Sym0 (l :: TyFun [a6989586621679922300] (TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip6Sym0 :: TyFun [a6989586621679922300] (TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip6Sym0 :: TyFun [a6989586621679922300] (TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679922300]) Source # 
Instance details
type Apply (Zip6Sym0 :: TyFun [a6989586621679922300] (TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679922300]) = (Zip6Sym1 l :: TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type) -> *)

data Zip6Sym1 (l :: [a6989586621679922300]) (l :: TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip6Sym1 :: [a6989586621679922300] -> TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679922301]) Source # 
Instance details
type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679922301] (TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679922301]) = (Zip6Sym2 l1 l2 :: TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> *)

data Zip6Sym2 (l :: [a6989586621679922300]) (l :: [b6989586621679922301]) (l :: TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip6Sym2 :: [a6989586621679922300] -> [b6989586621679922301] -> TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679922302]) Source # 
Instance details
type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679922302] (TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679922302]) = (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> *)

data Zip6Sym3 (l :: [a6989586621679922300]) (l :: [b6989586621679922301]) (l :: [c6989586621679922302]) (l :: TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip6Sym3 :: [a6989586621679922300] -> [b6989586621679922301] -> [c6989586621679922302] -> TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> *) (l4 :: [d6989586621679922303]) Source # 
Instance details
type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679922303] (TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> Type) -> *) (l4 :: [d6989586621679922303]) = (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> *)

data Zip6Sym4 (l :: [a6989586621679922300]) (l :: [b6989586621679922301]) (l :: [c6989586621679922302]) (l :: [d6989586621679922303]) (l :: TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip6Sym4 :: [a6989586621679922300] -> [b6989586621679922301] -> [c6989586621679922302] -> [d6989586621679922303] -> TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> *) Source # 
Instance details
type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> *) (l5 :: [e6989586621679922304]) Source # 
Instance details
type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679922304] (TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> Type) -> *) (l5 :: [e6989586621679922304]) = (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> *)

data Zip6Sym5 (l :: [a6989586621679922300]) (l :: [b6989586621679922301]) (l :: [c6989586621679922302]) (l :: [d6989586621679922303]) (l :: [e6989586621679922304]) (l :: TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)]) Source #

Instances
SuppressUnusedWarnings (Zip6Sym5 :: [a6989586621679922300] -> [b6989586621679922301] -> [c6989586621679922302] -> [d6989586621679922303] -> [e6989586621679922304] -> TyFun [f6989586621679922305] [(a6989586621679922300, b6989586621679922301, c6989586621679922302, d6989586621679922303, e6989586621679922304, f6989586621679922305)] -> *) Source # 
Instance details
type Apply (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f] [(a, b, c, d, e, f)] -> *) (l6 :: [f]) Source # 
Instance details
type Apply (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f] [(a, b, c, d, e, f)] -> *) (l6 :: [f]) = Zip6 l1 l2 l3 l4 l5 l6

type Zip6Sym6 (t :: [a6989586621679922300]) (t :: [b6989586621679922301]) (t :: [c6989586621679922302]) (t :: [d6989586621679922303]) (t :: [e6989586621679922304]) (t :: [f6989586621679922305]) = Zip6 t t t t t t Source #

data Zip7Sym0 (l :: TyFun [a6989586621679922293] (TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip7Sym0 :: TyFun [a6989586621679922293] (TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip7Sym0 :: TyFun [a6989586621679922293] (TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679922293]) Source # 
Instance details
type Apply (Zip7Sym0 :: TyFun [a6989586621679922293] (TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679922293]) = (Zip7Sym1 l :: TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *)

data Zip7Sym1 (l :: [a6989586621679922293]) (l :: TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip7Sym1 :: [a6989586621679922293] -> TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679922294]) Source # 
Instance details
type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679922294] (TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679922294]) = (Zip7Sym2 l1 l2 :: TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> *)

data Zip7Sym2 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip7Sym2 :: [a6989586621679922293] -> [b6989586621679922294] -> TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679922295]) Source # 
Instance details
type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679922295] (TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679922295]) = (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> *)

data Zip7Sym3 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: [c6989586621679922295]) (l :: TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip7Sym3 :: [a6989586621679922293] -> [b6989586621679922294] -> [c6989586621679922295] -> TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679922296]) Source # 
Instance details
type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679922296] (TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679922296]) = (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> *)

data Zip7Sym4 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: [c6989586621679922295]) (l :: [d6989586621679922296]) (l :: TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip7Sym4 :: [a6989586621679922293] -> [b6989586621679922294] -> [c6989586621679922295] -> [d6989586621679922296] -> TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> *) (l5 :: [e6989586621679922297]) Source # 
Instance details
type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679922297] (TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> Type) -> *) (l5 :: [e6989586621679922297]) = (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> *)

data Zip7Sym5 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: [c6989586621679922295]) (l :: [d6989586621679922296]) (l :: [e6989586621679922297]) (l :: TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type)) Source #

Instances
SuppressUnusedWarnings (Zip7Sym5 :: [a6989586621679922293] -> [b6989586621679922294] -> [c6989586621679922295] -> [d6989586621679922296] -> [e6989586621679922297] -> TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> *) Source # 
Instance details
type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> *) (l6 :: [f6989586621679922298]) Source # 
Instance details
type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679922298] (TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> Type) -> *) (l6 :: [f6989586621679922298]) = (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> *)

data Zip7Sym6 (l :: [a6989586621679922293]) (l :: [b6989586621679922294]) (l :: [c6989586621679922295]) (l :: [d6989586621679922296]) (l :: [e6989586621679922297]) (l :: [f6989586621679922298]) (l :: TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)]) Source #

Instances
SuppressUnusedWarnings (Zip7Sym6 :: [a6989586621679922293] -> [b6989586621679922294] -> [c6989586621679922295] -> [d6989586621679922296] -> [e6989586621679922297] -> [f6989586621679922298] -> TyFun [g6989586621679922299] [(a6989586621679922293, b6989586621679922294, c6989586621679922295, d6989586621679922296, e6989586621679922297, f6989586621679922298, g6989586621679922299)] -> *) Source # 
Instance details
type Apply (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g] [(a, b, c, d, e, f, g)] -> *) (l7 :: [g]) Source # 
Instance details
type Apply (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g] [(a, b, c, d, e, f, g)] -> *) (l7 :: [g]) = Zip7 l1 l2 l3 l4 l5 l6 l7

type Zip7Sym7 (t :: [a6989586621679922293]) (t :: [b6989586621679922294]) (t :: [c6989586621679922295]) (t :: [d6989586621679922296]) (t :: [e6989586621679922297]) (t :: [f6989586621679922298]) (t :: [g6989586621679922299]) = Zip7 t t t t t t t Source #

data ZipWith4Sym0 (l :: TyFun (TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith4Sym0 :: TyFun (TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) Source # 
Instance details
type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) = ZipWith4Sym1 l

data ZipWith4Sym1 (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith4Sym1 :: (TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith4Sym1 l1 :: TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679922288]) Source # 
Instance details
type Apply (ZipWith4Sym1 l1 :: TyFun [a6989586621679922288] (TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679922288]) = ZipWith4Sym2 l1 l2

data ZipWith4Sym2 (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922288]) (l :: TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith4Sym2 :: (TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922288] -> TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> *) (l3 :: [b6989586621679922289]) Source # 
Instance details
type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679922289] (TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> Type) -> *) (l3 :: [b6989586621679922289]) = ZipWith4Sym3 l1 l2 l3

data ZipWith4Sym3 (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922288]) (l :: [b6989586621679922289]) (l :: TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith4Sym3 :: (TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922288] -> [b6989586621679922289] -> TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> *) Source # 
Instance details
type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> *) (l4 :: [c6989586621679922290]) Source # 
Instance details
type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679922290] (TyFun [d6989586621679922291] [e6989586621679922292] -> Type) -> *) (l4 :: [c6989586621679922290]) = ZipWith4Sym4 l1 l2 l3 l4

data ZipWith4Sym4 (l :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922288]) (l :: [b6989586621679922289]) (l :: [c6989586621679922290]) (l :: TyFun [d6989586621679922291] [e6989586621679922292]) Source #

Instances
SuppressUnusedWarnings (ZipWith4Sym4 :: (TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922288] -> [b6989586621679922289] -> [c6989586621679922290] -> TyFun [d6989586621679922291] [e6989586621679922292] -> *) Source # 
Instance details
type Apply (ZipWith4Sym4 l1 l2 l3 l4 :: TyFun [d] [e] -> *) (l5 :: [d]) Source # 
Instance details
type Apply (ZipWith4Sym4 l1 l2 l3 l4 :: TyFun [d] [e] -> *) (l5 :: [d]) = ZipWith4 l1 l2 l3 l4 l5

type ZipWith4Sym5 (t :: TyFun a6989586621679922288 (TyFun b6989586621679922289 (TyFun c6989586621679922290 (TyFun d6989586621679922291 e6989586621679922292 -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679922288]) (t :: [b6989586621679922289]) (t :: [c6989586621679922290]) (t :: [d6989586621679922291]) = ZipWith4 t t t t t Source #

data ZipWith5Sym0 (l :: TyFun (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith5Sym0 :: TyFun (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) Source # 
Instance details
type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith5Sym1 l

data ZipWith5Sym1 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith5Sym1 :: (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith5Sym1 l1 :: TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679922282]) Source # 
Instance details
type Apply (ZipWith5Sym1 l1 :: TyFun [a6989586621679922282] (TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679922282]) = ZipWith5Sym2 l1 l2

data ZipWith5Sym2 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922282]) (l :: TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith5Sym2 :: (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922282] -> TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith5Sym2 l1 l2 :: TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679922283]) Source # 
Instance details
type Apply (ZipWith5Sym2 l1 l2 :: TyFun [b6989586621679922283] (TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679922283]) = ZipWith5Sym3 l1 l2 l3

data ZipWith5Sym3 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922282]) (l :: [b6989586621679922283]) (l :: TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith5Sym3 :: (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922282] -> [b6989586621679922283] -> TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> *) (l4 :: [c6989586621679922284]) Source # 
Instance details
type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679922284] (TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> Type) -> *) (l4 :: [c6989586621679922284]) = ZipWith5Sym4 l1 l2 l3 l4

data ZipWith5Sym4 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922282]) (l :: [b6989586621679922283]) (l :: [c6989586621679922284]) (l :: TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith5Sym4 :: (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922282] -> [b6989586621679922283] -> [c6989586621679922284] -> TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> *) Source # 
Instance details
type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> *) (l5 :: [d6989586621679922285]) Source # 
Instance details
type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679922285] (TyFun [e6989586621679922286] [f6989586621679922287] -> Type) -> *) (l5 :: [d6989586621679922285]) = ZipWith5Sym5 l1 l2 l3 l4 l5

data ZipWith5Sym5 (l :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922282]) (l :: [b6989586621679922283]) (l :: [c6989586621679922284]) (l :: [d6989586621679922285]) (l :: TyFun [e6989586621679922286] [f6989586621679922287]) Source #

Instances
SuppressUnusedWarnings (ZipWith5Sym5 :: (TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922282] -> [b6989586621679922283] -> [c6989586621679922284] -> [d6989586621679922285] -> TyFun [e6989586621679922286] [f6989586621679922287] -> *) Source # 
Instance details
type Apply (ZipWith5Sym5 l1 l2 l3 l4 l5 :: TyFun [e] [f] -> *) (l6 :: [e]) Source # 
Instance details
type Apply (ZipWith5Sym5 l1 l2 l3 l4 l5 :: TyFun [e] [f] -> *) (l6 :: [e]) = ZipWith5 l1 l2 l3 l4 l5 l6

type ZipWith5Sym6 (t :: TyFun a6989586621679922282 (TyFun b6989586621679922283 (TyFun c6989586621679922284 (TyFun d6989586621679922285 (TyFun e6989586621679922286 f6989586621679922287 -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679922282]) (t :: [b6989586621679922283]) (t :: [c6989586621679922284]) (t :: [d6989586621679922285]) (t :: [e6989586621679922286]) = ZipWith5 t t t t t t Source #

data ZipWith6Sym0 (l :: TyFun (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith6Sym0 :: TyFun (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) Source # 
Instance details
type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith6Sym1 l

data ZipWith6Sym1 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith6Sym1 :: (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679922275]) Source # 
Instance details
type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679922275] (TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679922275]) = ZipWith6Sym2 l1 l2

data ZipWith6Sym2 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith6Sym2 :: (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922275] -> TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679922276]) Source # 
Instance details
type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679922276] (TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679922276]) = ZipWith6Sym3 l1 l2 l3

data ZipWith6Sym3 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: [b6989586621679922276]) (l :: TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith6Sym3 :: (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922275] -> [b6989586621679922276] -> TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith6Sym3 l1 l2 l3 :: TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679922277]) Source # 
Instance details
type Apply (ZipWith6Sym3 l1 l2 l3 :: TyFun [c6989586621679922277] (TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679922277]) = ZipWith6Sym4 l1 l2 l3 l4

data ZipWith6Sym4 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: [b6989586621679922276]) (l :: [c6989586621679922277]) (l :: TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith6Sym4 :: (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922275] -> [b6989586621679922276] -> [c6989586621679922277] -> TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> *) (l5 :: [d6989586621679922278]) Source # 
Instance details
type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679922278] (TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> Type) -> *) (l5 :: [d6989586621679922278]) = ZipWith6Sym5 l1 l2 l3 l4 l5

data ZipWith6Sym5 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: [b6989586621679922276]) (l :: [c6989586621679922277]) (l :: [d6989586621679922278]) (l :: TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith6Sym5 :: (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922275] -> [b6989586621679922276] -> [c6989586621679922277] -> [d6989586621679922278] -> TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> *) Source # 
Instance details
type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> *) (l6 :: [e6989586621679922279]) Source # 
Instance details
type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679922279] (TyFun [f6989586621679922280] [g6989586621679922281] -> Type) -> *) (l6 :: [e6989586621679922279]) = ZipWith6Sym6 l1 l2 l3 l4 l5 l6

data ZipWith6Sym6 (l :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922275]) (l :: [b6989586621679922276]) (l :: [c6989586621679922277]) (l :: [d6989586621679922278]) (l :: [e6989586621679922279]) (l :: TyFun [f6989586621679922280] [g6989586621679922281]) Source #

Instances
SuppressUnusedWarnings (ZipWith6Sym6 :: (TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922275] -> [b6989586621679922276] -> [c6989586621679922277] -> [d6989586621679922278] -> [e6989586621679922279] -> TyFun [f6989586621679922280] [g6989586621679922281] -> *) Source # 
Instance details
type Apply (ZipWith6Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f] [g] -> *) (l7 :: [f]) Source # 
Instance details
type Apply (ZipWith6Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f] [g] -> *) (l7 :: [f]) = ZipWith6 l1 l2 l3 l4 l5 l6 l7

type ZipWith6Sym7 (t :: TyFun a6989586621679922275 (TyFun b6989586621679922276 (TyFun c6989586621679922277 (TyFun d6989586621679922278 (TyFun e6989586621679922279 (TyFun f6989586621679922280 g6989586621679922281 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679922275]) (t :: [b6989586621679922276]) (t :: [c6989586621679922277]) (t :: [d6989586621679922278]) (t :: [e6989586621679922279]) (t :: [f6989586621679922280]) = ZipWith6 t t t t t t t Source #

data ZipWith7Sym0 (l :: TyFun (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith7Sym0 :: TyFun (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) Source # 
Instance details
type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith7Sym1 l

data ZipWith7Sym1 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith7Sym1 :: (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679922267]) Source # 
Instance details
type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679922267] (TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679922267]) = ZipWith7Sym2 l1 l2

data ZipWith7Sym2 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith7Sym2 :: (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922267] -> TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679922268]) Source # 
Instance details
type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679922268] (TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679922268]) = ZipWith7Sym3 l1 l2 l3

data ZipWith7Sym3 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith7Sym3 :: (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922267] -> [b6989586621679922268] -> TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679922269]) Source # 
Instance details
type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679922269] (TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679922269]) = ZipWith7Sym4 l1 l2 l3 l4

data ZipWith7Sym4 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: [c6989586621679922269]) (l :: TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith7Sym4 :: (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922267] -> [b6989586621679922268] -> [c6989586621679922269] -> TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith7Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> *) (l5 :: [d6989586621679922270]) Source # 
Instance details
type Apply (ZipWith7Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679922270] (TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> Type) -> *) (l5 :: [d6989586621679922270]) = ZipWith7Sym5 l1 l2 l3 l4 l5

data ZipWith7Sym5 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: [c6989586621679922269]) (l :: [d6989586621679922270]) (l :: TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith7Sym5 :: (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922267] -> [b6989586621679922268] -> [c6989586621679922269] -> [d6989586621679922270] -> TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> *) (l6 :: [e6989586621679922271]) Source # 
Instance details
type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679922271] (TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> Type) -> *) (l6 :: [e6989586621679922271]) = ZipWith7Sym6 l1 l2 l3 l4 l5 l6

data ZipWith7Sym6 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: [c6989586621679922269]) (l :: [d6989586621679922270]) (l :: [e6989586621679922271]) (l :: TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type)) Source #

Instances
SuppressUnusedWarnings (ZipWith7Sym6 :: (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922267] -> [b6989586621679922268] -> [c6989586621679922269] -> [d6989586621679922270] -> [e6989586621679922271] -> TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> *) Source # 
Instance details
type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> *) (l7 :: [f6989586621679922272]) Source # 
Instance details
type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679922272] (TyFun [g6989586621679922273] [h6989586621679922274] -> Type) -> *) (l7 :: [f6989586621679922272]) = ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7

data ZipWith7Sym7 (l :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679922267]) (l :: [b6989586621679922268]) (l :: [c6989586621679922269]) (l :: [d6989586621679922270]) (l :: [e6989586621679922271]) (l :: [f6989586621679922272]) (l :: TyFun [g6989586621679922273] [h6989586621679922274]) Source #

Instances
SuppressUnusedWarnings (ZipWith7Sym7 :: (TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679922267] -> [b6989586621679922268] -> [c6989586621679922269] -> [d6989586621679922270] -> [e6989586621679922271] -> [f6989586621679922272] -> TyFun [g6989586621679922273] [h6989586621679922274] -> *) Source # 
Instance details
type Apply (ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 :: TyFun [g] [h] -> *) (l8 :: [g]) Source # 
Instance details
type Apply (ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 :: TyFun [g] [h] -> *) (l8 :: [g]) = ZipWith7 l1 l2 l3 l4 l5 l6 l7 l8

type ZipWith7Sym8 (t :: TyFun a6989586621679922267 (TyFun b6989586621679922268 (TyFun c6989586621679922269 (TyFun d6989586621679922270 (TyFun e6989586621679922271 (TyFun f6989586621679922272 (TyFun g6989586621679922273 h6989586621679922274 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679922267]) (t :: [b6989586621679922268]) (t :: [c6989586621679922269]) (t :: [d6989586621679922270]) (t :: [e6989586621679922271]) (t :: [f6989586621679922272]) (t :: [g6989586621679922273]) = ZipWith7 t t t t t t t t Source #

data UnlinesSym0 (l :: TyFun [Symbol] Symbol) Source #

Instances
SuppressUnusedWarnings UnlinesSym0 Source # 
Instance details
type Apply UnlinesSym0 (l :: [Symbol]) Source # 
Instance details
type Apply UnlinesSym0 (l :: [Symbol]) = Unlines l

type UnlinesSym1 (t :: [Symbol]) = Unlines t Source #

data UnwordsSym0 (l :: TyFun [Symbol] Symbol) Source #

Instances
SuppressUnusedWarnings UnwordsSym0 Source # 
Instance details
type Apply UnwordsSym0 (l :: [Symbol]) Source # 
Instance details
type Apply UnwordsSym0 (l :: [Symbol]) = Unwords l

type UnwordsSym1 (t :: [Symbol]) = Unwords t Source #

data NubSym0 (l :: TyFun [a6989586621679442419] [a6989586621679442419]) Source #

Instances
SuppressUnusedWarnings (NubSym0 :: TyFun [a6989586621679442419] [a6989586621679442419] -> *) Source # 
Instance details
type Apply (NubSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # 
Instance details
type Apply (NubSym0 :: TyFun [a] [a] -> *) (l :: [a]) = Nub l

type NubSym1 (t :: [a6989586621679442419]) = Nub t Source #

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

Instances
SuppressUnusedWarnings (NubBySym0 :: TyFun (TyFun a6989586621679442418 (TyFun a6989586621679442418 Bool -> Type) -> Type) (TyFun [a6989586621679442418] [a6989586621679442418] -> Type) -> *) Source # 
Instance details
type Apply (NubBySym0 :: TyFun (TyFun a6989586621679442418 (TyFun a6989586621679442418 Bool -> Type) -> Type) (TyFun [a6989586621679442418] [a6989586621679442418] -> Type) -> *) (l :: TyFun a6989586621679442418 (TyFun a6989586621679442418 Bool -> Type) -> Type) Source # 
Instance details
type Apply (NubBySym0 :: TyFun (TyFun a6989586621679442418 (TyFun a6989586621679442418 Bool -> Type) -> Type) (TyFun [a6989586621679442418] [a6989586621679442418] -> Type) -> *) (l :: TyFun a6989586621679442418 (TyFun a6989586621679442418 Bool -> Type) -> Type) = NubBySym1 l

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

Instances
SuppressUnusedWarnings (NubBySym1 :: (TyFun a6989586621679442418 (TyFun a6989586621679442418 Bool -> Type) -> Type) -> TyFun [a6989586621679442418] [a6989586621679442418] -> *) Source # 
Instance details
type Apply (NubBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (NubBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = NubBy l1 l2

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

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

Instances
SuppressUnusedWarnings (UnionSym0 :: TyFun [a6989586621679442415] (TyFun [a6989586621679442415] [a6989586621679442415] -> Type) -> *) Source # 
Instance details
type Apply (UnionSym0 :: TyFun [a6989586621679442415] (TyFun [a6989586621679442415] [a6989586621679442415] -> Type) -> *) (l :: [a6989586621679442415]) Source # 
Instance details
type Apply (UnionSym0 :: TyFun [a6989586621679442415] (TyFun [a6989586621679442415] [a6989586621679442415] -> Type) -> *) (l :: [a6989586621679442415]) = UnionSym1 l

data UnionSym1 (l :: [a6989586621679442415]) (l :: TyFun [a6989586621679442415] [a6989586621679442415]) Source #

Instances
SuppressUnusedWarnings (UnionSym1 :: [a6989586621679442415] -> TyFun [a6989586621679442415] [a6989586621679442415] -> *) Source # 
Instance details
type Apply (UnionSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (UnionSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = Union l1 l2

type UnionSym2 (t :: [a6989586621679442415]) (t :: [a6989586621679442415]) = Union t t Source #

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

Instances
SuppressUnusedWarnings (UnionBySym0 :: TyFun (TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) (TyFun [a6989586621679442416] (TyFun [a6989586621679442416] [a6989586621679442416] -> Type) -> Type) -> *) Source # 
Instance details
type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) (TyFun [a6989586621679442416] (TyFun [a6989586621679442416] [a6989586621679442416] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) Source # 
Instance details
type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) (TyFun [a6989586621679442416] (TyFun [a6989586621679442416] [a6989586621679442416] -> Type) -> Type) -> *) (l :: TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) = UnionBySym1 l

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

Instances
SuppressUnusedWarnings (UnionBySym1 :: (TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) -> TyFun [a6989586621679442416] (TyFun [a6989586621679442416] [a6989586621679442416] -> Type) -> *) Source # 
Instance details
type Apply (UnionBySym1 l1 :: TyFun [a6989586621679442416] (TyFun [a6989586621679442416] [a6989586621679442416] -> Type) -> *) (l2 :: [a6989586621679442416]) Source # 
Instance details
type Apply (UnionBySym1 l1 :: TyFun [a6989586621679442416] (TyFun [a6989586621679442416] [a6989586621679442416] -> Type) -> *) (l2 :: [a6989586621679442416]) = UnionBySym2 l1 l2

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

Instances
SuppressUnusedWarnings (UnionBySym2 :: (TyFun a6989586621679442416 (TyFun a6989586621679442416 Bool -> Type) -> Type) -> [a6989586621679442416] -> TyFun [a6989586621679442416] [a6989586621679442416] -> *) Source # 
Instance details
type Apply (UnionBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # 
Instance details
type Apply (UnionBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) = UnionBy l1 l2 l3

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

data GenericLengthSym0 (l :: TyFun [a6989586621679442414] i6989586621679442413) Source #

Instances
SuppressUnusedWarnings (GenericLengthSym0 :: TyFun [a6989586621679442414] i6989586621679442413 -> *) Source # 
Instance details
type Apply (GenericLengthSym0 :: TyFun [a] k2 -> *) (l :: [a]) Source # 
Instance details
type Apply (GenericLengthSym0 :: TyFun [a] k2 -> *) (l :: [a]) = (GenericLength l :: k2)

type GenericLengthSym1 (t :: [a6989586621679442414]) = GenericLength t Source #

data GenericTakeSym0 (l :: TyFun i6989586621679922265 (TyFun [a6989586621679922266] [a6989586621679922266] -> Type)) Source #

Instances
SuppressUnusedWarnings (GenericTakeSym0 :: TyFun i6989586621679922265 (TyFun [a6989586621679922266] [a6989586621679922266] -> Type) -> *) Source # 
Instance details
type Apply (GenericTakeSym0 :: TyFun i6989586621679922265 (TyFun [a6989586621679922266] [a6989586621679922266] -> Type) -> *) (l :: i6989586621679922265) Source # 
Instance details
type Apply (GenericTakeSym0 :: TyFun i6989586621679922265 (TyFun [a6989586621679922266] [a6989586621679922266] -> Type) -> *) (l :: i6989586621679922265) = (GenericTakeSym1 l :: TyFun [a6989586621679922266] [a6989586621679922266] -> *)

data GenericTakeSym1 (l :: i6989586621679922265) (l :: TyFun [a6989586621679922266] [a6989586621679922266]) Source #

Instances
SuppressUnusedWarnings (GenericTakeSym1 :: i6989586621679922265 -> TyFun [a6989586621679922266] [a6989586621679922266] -> *) Source # 
Instance details
type Apply (GenericTakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (GenericTakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = GenericTake l1 l2

type GenericTakeSym2 (t :: i6989586621679922265) (t :: [a6989586621679922266]) = GenericTake t t Source #

data GenericDropSym0 (l :: TyFun i6989586621679922263 (TyFun [a6989586621679922264] [a6989586621679922264] -> Type)) Source #

Instances
SuppressUnusedWarnings (GenericDropSym0 :: TyFun i6989586621679922263 (TyFun [a6989586621679922264] [a6989586621679922264] -> Type) -> *) Source # 
Instance details
type Apply (GenericDropSym0 :: TyFun i6989586621679922263 (TyFun [a6989586621679922264] [a6989586621679922264] -> Type) -> *) (l :: i6989586621679922263) Source # 
Instance details
type Apply (GenericDropSym0 :: TyFun i6989586621679922263 (TyFun [a6989586621679922264] [a6989586621679922264] -> Type) -> *) (l :: i6989586621679922263) = (GenericDropSym1 l :: TyFun [a6989586621679922264] [a6989586621679922264] -> *)

data GenericDropSym1 (l :: i6989586621679922263) (l :: TyFun [a6989586621679922264] [a6989586621679922264]) Source #

Instances
SuppressUnusedWarnings (GenericDropSym1 :: i6989586621679922263 -> TyFun [a6989586621679922264] [a6989586621679922264] -> *) Source # 
Instance details
type Apply (GenericDropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # 
Instance details
type Apply (GenericDropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) = GenericDrop l1 l2

type GenericDropSym2 (t :: i6989586621679922263) (t :: [a6989586621679922264]) = GenericDrop t t Source #

data GenericSplitAtSym0 (l :: TyFun i6989586621679922261 (TyFun [a6989586621679922262] ([a6989586621679922262], [a6989586621679922262]) -> Type)) Source #

Instances
SuppressUnusedWarnings (GenericSplitAtSym0 :: TyFun i6989586621679922261 (TyFun [a6989586621679922262] ([a6989586621679922262], [a6989586621679922262]) -> Type) -> *) Source # 
Instance details
type Apply (GenericSplitAtSym0 :: TyFun i6989586621679922261 (TyFun [a6989586621679922262] ([a6989586621679922262], [a6989586621679922262]) -> Type) -> *) (l :: i6989586621679922261) Source # 
Instance details
type Apply (GenericSplitAtSym0 :: TyFun i6989586621679922261 (TyFun [a6989586621679922262] ([a6989586621679922262], [a6989586621679922262]) -> Type) -> *) (l :: i6989586621679922261) = (GenericSplitAtSym1 l :: TyFun [a6989586621679922262] ([a6989586621679922262], [a6989586621679922262]) -> *)

data GenericSplitAtSym1 (l :: i6989586621679922261) (l :: TyFun [a6989586621679922262] ([a6989586621679922262], [a6989586621679922262])) Source #

Instances
SuppressUnusedWarnings (GenericSplitAtSym1 :: i6989586621679922261 -> TyFun [a6989586621679922262] ([a6989586621679922262], [a6989586621679922262]) -> *) Source # 
Instance details
type Apply (GenericSplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # 
Instance details
type Apply (GenericSplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) = GenericSplitAt l1 l2

type GenericSplitAtSym2 (t :: i6989586621679922261) (t :: [a6989586621679922262]) = GenericSplitAt t t Source #

data GenericIndexSym0 (l :: TyFun [a6989586621679922260] (TyFun i6989586621679922259 a6989586621679922260 -> Type)) Source #

Instances
SuppressUnusedWarnings (GenericIndexSym0 :: TyFun [a6989586621679922260] (TyFun i6989586621679922259 a6989586621679922260 -> Type) -> *) Source # 
Instance details
type Apply (GenericIndexSym0 :: TyFun [a6989586621679922260] (TyFun i6989586621679922259 a6989586621679922260 -> Type) -> *) (l :: [a6989586621679922260]) Source # 
Instance details
type Apply (GenericIndexSym0 :: TyFun [a6989586621679922260] (TyFun i6989586621679922259 a6989586621679922260 -> Type) -> *) (l :: [a6989586621679922260]) = (GenericIndexSym1 l :: TyFun i6989586621679922259 a6989586621679922260 -> *)

data GenericIndexSym1 (l :: [a6989586621679922260]) (l :: TyFun i6989586621679922259 a6989586621679922260) Source #

Instances
SuppressUnusedWarnings (GenericIndexSym1 :: [a6989586621679922260] -> TyFun i6989586621679922259 a6989586621679922260 -> *) Source # 
Instance details
type Apply (GenericIndexSym1 l1 :: TyFun i a -> *) (l2 :: i) Source # 
Instance details
type Apply (GenericIndexSym1 l1 :: TyFun i a -> *) (l2 :: i) = GenericIndex l1 l2

type GenericIndexSym2 (t :: [a6989586621679922260]) (t :: i6989586621679922259) = GenericIndex t t Source #

data GenericReplicateSym0 (l :: TyFun i6989586621679922257 (TyFun a6989586621679922258 [a6989586621679922258] -> Type)) Source #

Instances
SuppressUnusedWarnings (GenericReplicateSym0 :: TyFun i6989586621679922257 (TyFun a6989586621679922258 [a6989586621679922258] -> Type) -> *) Source # 
Instance details
type Apply (GenericReplicateSym0 :: TyFun i6989586621679922257 (TyFun a6989586621679922258 [a6989586621679922258] -> Type) -> *) (l :: i6989586621679922257) Source # 
Instance details
type Apply (GenericReplicateSym0 :: TyFun i6989586621679922257 (TyFun a6989586621679922258 [a6989586621679922258] -> Type) -> *) (l :: i6989586621679922257) = (GenericReplicateSym1 l :: TyFun a6989586621679922258 [a6989586621679922258] -> *)

data GenericReplicateSym1 (l :: i6989586621679922257) (l :: TyFun a6989586621679922258 [a6989586621679922258]) Source #

Instances
SuppressUnusedWarnings (GenericReplicateSym1 :: i6989586621679922257 -> TyFun a6989586621679922258 [a6989586621679922258] -> *) Source # 
Instance details
type Apply (GenericReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) Source # 
Instance details
type Apply (GenericReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) = GenericReplicate l1 l2

type GenericReplicateSym2 (t :: i6989586621679922257) (t :: a6989586621679922258) = GenericReplicate t t Source #