| Copyright | (C) 2014 Jan Stolarek |
|---|---|
| License | BSD-style (see LICENSE) |
| Maintainer | Jan Stolarek (jan.stolarek@p.lodz.pl) |
| Stability | experimental |
| Portability | non-portable |
| Safe Haskell | None |
| Language | Haskell2010 |
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.
- 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 ...
- any_ :: (a -> Bool) -> [a] -> Bool
- 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 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 :: [a6989586621679289771]) (t :: [a6989586621679289771]) = (:++) t t
- data (l :: [a6989586621679289771]) :++$$ (l :: TyFun [a6989586621679289771] [a6989586621679289771])
- data (:++$) (l :: TyFun [a6989586621679289771] (TyFun [a6989586621679289771] [a6989586621679289771] -> Type))
- data HeadSym0 (l :: TyFun [a6989586621679472635] a6989586621679472635)
- type HeadSym1 (t :: [a6989586621679472635]) = Head t
- data LastSym0 (l :: TyFun [a6989586621679472634] a6989586621679472634)
- type LastSym1 (t :: [a6989586621679472634]) = Last t
- data TailSym0 (l :: TyFun [a6989586621679472633] [a6989586621679472633])
- type TailSym1 (t :: [a6989586621679472633]) = Tail t
- data InitSym0 (l :: TyFun [a6989586621679472632] [a6989586621679472632])
- type InitSym1 (t :: [a6989586621679472632]) = Init t
- data NullSym0 (l :: TyFun [a6989586621679472631] Bool)
- type NullSym1 (t :: [a6989586621679472631]) = Null t
- data MapSym0 (l :: TyFun (TyFun a6989586621679289772 b6989586621679289773 -> Type) (TyFun [a6989586621679289772] [b6989586621679289773] -> Type))
- data MapSym1 (l :: TyFun a6989586621679289772 b6989586621679289773 -> Type) (l :: TyFun [a6989586621679289772] [b6989586621679289773])
- type MapSym2 (t :: TyFun a6989586621679289772 b6989586621679289773 -> Type) (t :: [a6989586621679289772]) = Map t t
- data ReverseSym0 (l :: TyFun [a6989586621679472630] [a6989586621679472630])
- type ReverseSym1 (t :: [a6989586621679472630]) = Reverse t
- data IntersperseSym0 (l :: TyFun a6989586621679472629 (TyFun [a6989586621679472629] [a6989586621679472629] -> Type))
- data IntersperseSym1 (l :: a6989586621679472629) (l :: TyFun [a6989586621679472629] [a6989586621679472629])
- type IntersperseSym2 (t :: a6989586621679472629) (t :: [a6989586621679472629]) = Intersperse t t
- data IntercalateSym0 (l :: TyFun [a6989586621679472628] (TyFun [[a6989586621679472628]] [a6989586621679472628] -> Type))
- data IntercalateSym1 (l :: [a6989586621679472628]) (l :: TyFun [[a6989586621679472628]] [a6989586621679472628])
- type IntercalateSym2 (t :: [a6989586621679472628]) (t :: [[a6989586621679472628]]) = Intercalate t t
- data SubsequencesSym0 (l :: TyFun [a6989586621679472627] [[a6989586621679472627]])
- type SubsequencesSym1 (t :: [a6989586621679472627]) = Subsequences t
- data PermutationsSym0 (l :: TyFun [a6989586621679472624] [[a6989586621679472624]])
- type PermutationsSym1 (t :: [a6989586621679472624]) = Permutations t
- data FoldlSym0 (l :: TyFun (TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> Type))
- data FoldlSym1 (l :: TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (l :: TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type))
- data FoldlSym2 (l :: TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (l :: b6989586621679249585) (l :: TyFun [a6989586621679249584] b6989586621679249585)
- type FoldlSym3 (t :: TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (t :: b6989586621679249585) (t :: [a6989586621679249584]) = Foldl t t t
- data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type) -> Type))
- data Foldl'Sym1 (l :: TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (l :: TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type))
- data Foldl'Sym2 (l :: TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (l :: b6989586621679472623) (l :: TyFun [a6989586621679472622] b6989586621679472623)
- type Foldl'Sym3 (t :: TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (t :: b6989586621679472623) (t :: [a6989586621679472622]) = Foldl' t t t
- data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) (TyFun [a6989586621679472621] a6989586621679472621 -> Type))
- data Foldl1Sym1 (l :: TyFun a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) (l :: TyFun [a6989586621679472621] a6989586621679472621)
- type Foldl1Sym2 (t :: TyFun a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) (t :: [a6989586621679472621]) = Foldl1 t t
- data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (TyFun [a6989586621679472620] a6989586621679472620 -> Type))
- data Foldl1'Sym1 (l :: TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (l :: TyFun [a6989586621679472620] a6989586621679472620)
- type Foldl1'Sym2 (t :: TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (t :: [a6989586621679472620]) = Foldl1' t t
- data FoldrSym0 (l :: TyFun (TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> Type))
- data FoldrSym1 (l :: TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (l :: TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type))
- data FoldrSym2 (l :: TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (l :: b6989586621679289775) (l :: TyFun [a6989586621679289774] b6989586621679289775)
- type FoldrSym3 (t :: TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (t :: b6989586621679289775) (t :: [a6989586621679289774]) = Foldr t t t
- data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) (TyFun [a6989586621679472619] a6989586621679472619 -> Type))
- data Foldr1Sym1 (l :: TyFun a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) (l :: TyFun [a6989586621679472619] a6989586621679472619)
- type Foldr1Sym2 (t :: TyFun a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) (t :: [a6989586621679472619]) = Foldr1 t t
- data ConcatSym0 (l :: TyFun [[a6989586621679472618]] [a6989586621679472618])
- type ConcatSym1 (t :: [[a6989586621679472618]]) = Concat t
- data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679472616 [b6989586621679472617] -> Type) (TyFun [a6989586621679472616] [b6989586621679472617] -> Type))
- data ConcatMapSym1 (l :: TyFun a6989586621679472616 [b6989586621679472617] -> Type) (l :: TyFun [a6989586621679472616] [b6989586621679472617])
- type ConcatMapSym2 (t :: TyFun a6989586621679472616 [b6989586621679472617] -> Type) (t :: [a6989586621679472616]) = ConcatMap t t
- data AndSym0 (l :: TyFun [Bool] Bool)
- type AndSym1 (t :: [Bool]) = And t
- data OrSym0 (l :: TyFun [Bool] Bool)
- type OrSym1 (t :: [Bool]) = Or t
- data Any_Sym0 (l :: TyFun (TyFun a6989586621679462399 Bool -> Type) (TyFun [a6989586621679462399] Bool -> Type))
- data Any_Sym1 (l :: TyFun a6989586621679462399 Bool -> Type) (l :: TyFun [a6989586621679462399] Bool)
- type Any_Sym2 (t :: TyFun a6989586621679462399 Bool -> Type) (t :: [a6989586621679462399]) = Any_ t t
- data AllSym0 (l :: TyFun (TyFun a6989586621679472615 Bool -> Type) (TyFun [a6989586621679472615] Bool -> Type))
- data AllSym1 (l :: TyFun a6989586621679472615 Bool -> Type) (l :: TyFun [a6989586621679472615] Bool)
- type AllSym2 (t :: TyFun a6989586621679472615 Bool -> Type) (t :: [a6989586621679472615]) = All t t
- data ScanlSym0 (l :: TyFun (TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> Type))
- data ScanlSym1 (l :: TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (l :: TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type))
- data ScanlSym2 (l :: TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (l :: b6989586621679472613) (l :: TyFun [a6989586621679472614] [b6989586621679472613])
- type ScanlSym3 (t :: TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (t :: b6989586621679472613) (t :: [a6989586621679472614]) = Scanl t t t
- data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) (TyFun [a6989586621679472612] [a6989586621679472612] -> Type))
- data Scanl1Sym1 (l :: TyFun a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) (l :: TyFun [a6989586621679472612] [a6989586621679472612])
- type Scanl1Sym2 (t :: TyFun a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) (t :: [a6989586621679472612]) = Scanl1 t t
- data ScanrSym0 (l :: TyFun (TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> Type))
- data ScanrSym1 (l :: TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (l :: TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type))
- data ScanrSym2 (l :: TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (l :: b6989586621679472611) (l :: TyFun [a6989586621679472610] [b6989586621679472611])
- type ScanrSym3 (t :: TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (t :: b6989586621679472611) (t :: [a6989586621679472610]) = Scanr t t t
- data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) (TyFun [a6989586621679472609] [a6989586621679472609] -> Type))
- data Scanr1Sym1 (l :: TyFun a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) (l :: TyFun [a6989586621679472609] [a6989586621679472609])
- type Scanr1Sym2 (t :: TyFun a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) (t :: [a6989586621679472609]) = Scanr1 t t
- data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> Type))
- data MapAccumLSym1 (l :: TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (l :: TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type))
- data MapAccumLSym2 (l :: TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (l :: acc6989586621679472606) (l :: TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]))
- type MapAccumLSym3 (t :: TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (t :: acc6989586621679472606) (t :: [x6989586621679472607]) = MapAccumL t t t
- data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> Type))
- data MapAccumRSym1 (l :: TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (l :: TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type))
- data MapAccumRSym2 (l :: TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (l :: acc6989586621679472603) (l :: TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]))
- type MapAccumRSym3 (t :: TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (t :: acc6989586621679472603) (t :: [x6989586621679472604]) = MapAccumR t t t
- data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (TyFun b6989586621679472601 [a6989586621679472602] -> Type))
- data UnfoldrSym1 (l :: TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (l :: TyFun b6989586621679472601 [a6989586621679472602])
- type UnfoldrSym2 (t :: TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (t :: b6989586621679472601) = Unfoldr t t
- data InitsSym0 (l :: TyFun [a6989586621679472600] [[a6989586621679472600]])
- type InitsSym1 (t :: [a6989586621679472600]) = Inits t
- data TailsSym0 (l :: TyFun [a6989586621679472599] [[a6989586621679472599]])
- type TailsSym1 (t :: [a6989586621679472599]) = Tails t
- data IsPrefixOfSym0 (l :: TyFun [a6989586621679472598] (TyFun [a6989586621679472598] Bool -> Type))
- data IsPrefixOfSym1 (l :: [a6989586621679472598]) (l :: TyFun [a6989586621679472598] Bool)
- type IsPrefixOfSym2 (t :: [a6989586621679472598]) (t :: [a6989586621679472598]) = IsPrefixOf t t
- data IsSuffixOfSym0 (l :: TyFun [a6989586621679472597] (TyFun [a6989586621679472597] Bool -> Type))
- data IsSuffixOfSym1 (l :: [a6989586621679472597]) (l :: TyFun [a6989586621679472597] Bool)
- type IsSuffixOfSym2 (t :: [a6989586621679472597]) (t :: [a6989586621679472597]) = IsSuffixOf t t
- data IsInfixOfSym0 (l :: TyFun [a6989586621679472596] (TyFun [a6989586621679472596] Bool -> Type))
- data IsInfixOfSym1 (l :: [a6989586621679472596]) (l :: TyFun [a6989586621679472596] Bool)
- type IsInfixOfSym2 (t :: [a6989586621679472596]) (t :: [a6989586621679472596]) = IsInfixOf t t
- data ElemSym0 (l :: TyFun a6989586621679472595 (TyFun [a6989586621679472595] Bool -> Type))
- data ElemSym1 (l :: a6989586621679472595) (l :: TyFun [a6989586621679472595] Bool)
- type ElemSym2 (t :: a6989586621679472595) (t :: [a6989586621679472595]) = Elem t t
- data NotElemSym0 (l :: TyFun a6989586621679472594 (TyFun [a6989586621679472594] Bool -> Type))
- data NotElemSym1 (l :: a6989586621679472594) (l :: TyFun [a6989586621679472594] Bool)
- type NotElemSym2 (t :: a6989586621679472594) (t :: [a6989586621679472594]) = NotElem t t
- data ZipSym0 (l :: TyFun [a6989586621679472592] (TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)] -> Type))
- data ZipSym1 (l :: [a6989586621679472592]) (l :: TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)])
- type ZipSym2 (t :: [a6989586621679472592]) (t :: [b6989586621679472593]) = Zip t t
- data Zip3Sym0 (l :: TyFun [a6989586621679472589] (TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> Type))
- data Zip3Sym1 (l :: [a6989586621679472589]) (l :: TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type))
- data Zip3Sym2 (l :: [a6989586621679472589]) (l :: [b6989586621679472590]) (l :: TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)])
- type Zip3Sym3 (t :: [a6989586621679472589]) (t :: [b6989586621679472590]) (t :: [c6989586621679472591]) = Zip3 t t t
- data ZipWithSym0 (l :: TyFun (TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> Type))
- data ZipWithSym1 (l :: TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (l :: TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type))
- data ZipWithSym2 (l :: TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (l :: [a6989586621679472586]) (l :: TyFun [b6989586621679472587] [c6989586621679472588])
- type ZipWithSym3 (t :: TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (t :: [a6989586621679472586]) (t :: [b6989586621679472587]) = ZipWith t t t
- data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> Type))
- data ZipWith3Sym1 (l :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type))
- data ZipWith3Sym2 (l :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (l :: [a6989586621679472582]) (l :: TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type))
- data ZipWith3Sym3 (l :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (l :: [a6989586621679472582]) (l :: [b6989586621679472583]) (l :: TyFun [c6989586621679472584] [d6989586621679472585])
- type ZipWith3Sym4 (t :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (t :: [a6989586621679472582]) (t :: [b6989586621679472583]) (t :: [c6989586621679472584]) = ZipWith3 t t t t
- data UnzipSym0 (l :: TyFun [(a6989586621679472580, b6989586621679472581)] ([a6989586621679472580], [b6989586621679472581]))
- type UnzipSym1 (t :: [(a6989586621679472580, b6989586621679472581)]) = Unzip t
- data Unzip3Sym0 (l :: TyFun [(a6989586621679472577, b6989586621679472578, c6989586621679472579)] ([a6989586621679472577], [b6989586621679472578], [c6989586621679472579]))
- type Unzip3Sym1 (t :: [(a6989586621679472577, b6989586621679472578, c6989586621679472579)]) = Unzip3 t
- data Unzip4Sym0 (l :: TyFun [(a6989586621679472573, b6989586621679472574, c6989586621679472575, d6989586621679472576)] ([a6989586621679472573], [b6989586621679472574], [c6989586621679472575], [d6989586621679472576]))
- type Unzip4Sym1 (t :: [(a6989586621679472573, b6989586621679472574, c6989586621679472575, d6989586621679472576)]) = Unzip4 t
- data Unzip5Sym0 (l :: TyFun [(a6989586621679472568, b6989586621679472569, c6989586621679472570, d6989586621679472571, e6989586621679472572)] ([a6989586621679472568], [b6989586621679472569], [c6989586621679472570], [d6989586621679472571], [e6989586621679472572]))
- type Unzip5Sym1 (t :: [(a6989586621679472568, b6989586621679472569, c6989586621679472570, d6989586621679472571, e6989586621679472572)]) = Unzip5 t
- data Unzip6Sym0 (l :: TyFun [(a6989586621679472562, b6989586621679472563, c6989586621679472564, d6989586621679472565, e6989586621679472566, f6989586621679472567)] ([a6989586621679472562], [b6989586621679472563], [c6989586621679472564], [d6989586621679472565], [e6989586621679472566], [f6989586621679472567]))
- type Unzip6Sym1 (t :: [(a6989586621679472562, b6989586621679472563, c6989586621679472564, d6989586621679472565, e6989586621679472566, f6989586621679472567)]) = Unzip6 t
- data Unzip7Sym0 (l :: TyFun [(a6989586621679472555, b6989586621679472556, c6989586621679472557, d6989586621679472558, e6989586621679472559, f6989586621679472560, g6989586621679472561)] ([a6989586621679472555], [b6989586621679472556], [c6989586621679472557], [d6989586621679472558], [e6989586621679472559], [f6989586621679472560], [g6989586621679472561]))
- type Unzip7Sym1 (t :: [(a6989586621679472555, b6989586621679472556, c6989586621679472557, d6989586621679472558, e6989586621679472559, f6989586621679472560, g6989586621679472561)]) = Unzip7 t
- data DeleteSym0 (l :: TyFun a6989586621679472554 (TyFun [a6989586621679472554] [a6989586621679472554] -> Type))
- data DeleteSym1 (l :: a6989586621679472554) (l :: TyFun [a6989586621679472554] [a6989586621679472554])
- type DeleteSym2 (t :: a6989586621679472554) (t :: [a6989586621679472554]) = Delete t t
- data (:\\$) (l :: TyFun [a6989586621679472553] (TyFun [a6989586621679472553] [a6989586621679472553] -> Type))
- data (l :: [a6989586621679472553]) :\\$$ (l :: TyFun [a6989586621679472553] [a6989586621679472553])
- type (:\\$$$) (t :: [a6989586621679472553]) (t :: [a6989586621679472553]) = (:\\) t t
- data IntersectSym0 (l :: TyFun [a6989586621679472540] (TyFun [a6989586621679472540] [a6989586621679472540] -> Type))
- data IntersectSym1 (l :: [a6989586621679472540]) (l :: TyFun [a6989586621679472540] [a6989586621679472540])
- type IntersectSym2 (t :: [a6989586621679472540]) (t :: [a6989586621679472540]) = Intersect t t
- data InsertSym0 (l :: TyFun a6989586621679472527 (TyFun [a6989586621679472527] [a6989586621679472527] -> Type))
- data InsertSym1 (l :: a6989586621679472527) (l :: TyFun [a6989586621679472527] [a6989586621679472527])
- type InsertSym2 (t :: a6989586621679472527) (t :: [a6989586621679472527]) = Insert t t
- data SortSym0 (l :: TyFun [a6989586621679472526] [a6989586621679472526])
- type SortSym1 (t :: [a6989586621679472526]) = Sort t
- data DeleteBySym0 (l :: TyFun (TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (TyFun a6989586621679472552 (TyFun [a6989586621679472552] [a6989586621679472552] -> Type) -> Type))
- data DeleteBySym1 (l :: TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (l :: TyFun a6989586621679472552 (TyFun [a6989586621679472552] [a6989586621679472552] -> Type))
- data DeleteBySym2 (l :: TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (l :: a6989586621679472552) (l :: TyFun [a6989586621679472552] [a6989586621679472552])
- type DeleteBySym3 (t :: TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (t :: a6989586621679472552) (t :: [a6989586621679472552]) = DeleteBy t t t
- data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (TyFun [a6989586621679472551] (TyFun [a6989586621679472551] [a6989586621679472551] -> Type) -> Type))
- data DeleteFirstsBySym1 (l :: TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472551] (TyFun [a6989586621679472551] [a6989586621679472551] -> Type))
- data DeleteFirstsBySym2 (l :: TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (l :: [a6989586621679472551]) (l :: TyFun [a6989586621679472551] [a6989586621679472551])
- type DeleteFirstsBySym3 (t :: TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (t :: [a6989586621679472551]) (t :: [a6989586621679472551]) = DeleteFirstsBy t t t
- data IntersectBySym0 (l :: TyFun (TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) (TyFun [a6989586621679472539] (TyFun [a6989586621679472539] [a6989586621679472539] -> Type) -> Type))
- data IntersectBySym1 (l :: TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472539] (TyFun [a6989586621679472539] [a6989586621679472539] -> Type))
- data IntersectBySym2 (l :: TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) (l :: [a6989586621679472539]) (l :: TyFun [a6989586621679472539] [a6989586621679472539])
- data SortBySym0 (l :: TyFun (TyFun a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) (TyFun [a6989586621679472550] [a6989586621679472550] -> Type))
- data SortBySym1 (l :: TyFun a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679472550] [a6989586621679472550])
- type SortBySym2 (t :: TyFun a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) (t :: [a6989586621679472550]) = SortBy t t
- data InsertBySym0 (l :: TyFun (TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (TyFun a6989586621679472549 (TyFun [a6989586621679472549] [a6989586621679472549] -> Type) -> Type))
- data InsertBySym1 (l :: TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (l :: TyFun a6989586621679472549 (TyFun [a6989586621679472549] [a6989586621679472549] -> Type))
- data InsertBySym2 (l :: TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (l :: a6989586621679472549) (l :: TyFun [a6989586621679472549] [a6989586621679472549])
- type InsertBySym3 (t :: TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (t :: a6989586621679472549) (t :: [a6989586621679472549]) = InsertBy t t t
- data MaximumBySym0 (l :: TyFun (TyFun a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) (TyFun [a6989586621679472548] a6989586621679472548 -> Type))
- data MaximumBySym1 (l :: TyFun a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679472548] a6989586621679472548)
- type MaximumBySym2 (t :: TyFun a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) (t :: [a6989586621679472548]) = MaximumBy t t
- data MinimumBySym0 (l :: TyFun (TyFun a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) (TyFun [a6989586621679472547] a6989586621679472547 -> Type))
- data MinimumBySym1 (l :: TyFun a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679472547] a6989586621679472547)
- type MinimumBySym2 (t :: TyFun a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) (t :: [a6989586621679472547]) = MinimumBy t t
- data LengthSym0 (l :: TyFun [a6989586621679472518] Nat)
- type LengthSym1 (t :: [a6989586621679472518]) = Length t
- data SumSym0 (l :: TyFun [a6989586621679472520] a6989586621679472520)
- type SumSym1 (t :: [a6989586621679472520]) = Sum t
- data ProductSym0 (l :: TyFun [a6989586621679472519] a6989586621679472519)
- type ProductSym1 (t :: [a6989586621679472519]) = Product t
- data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679472517 [a6989586621679472517] -> Type))
- data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679472517 [a6989586621679472517])
- type ReplicateSym2 (t :: Nat) (t :: a6989586621679472517) = Replicate t t
- data TransposeSym0 (l :: TyFun [[a6989586621679472516]] [[a6989586621679472516]])
- type TransposeSym1 (t :: [[a6989586621679472516]]) = Transpose t
- data TakeSym0 (l :: TyFun Nat (TyFun [a6989586621679472533] [a6989586621679472533] -> Type))
- data TakeSym1 (l :: Nat) (l :: TyFun [a6989586621679472533] [a6989586621679472533])
- type TakeSym2 (t :: Nat) (t :: [a6989586621679472533]) = Take t t
- data DropSym0 (l :: TyFun Nat (TyFun [a6989586621679472532] [a6989586621679472532] -> Type))
- data DropSym1 (l :: Nat) (l :: TyFun [a6989586621679472532] [a6989586621679472532])
- type DropSym2 (t :: Nat) (t :: [a6989586621679472532]) = Drop t t
- data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679472531] ([a6989586621679472531], [a6989586621679472531]) -> Type))
- data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679472531] ([a6989586621679472531], [a6989586621679472531]))
- type SplitAtSym2 (t :: Nat) (t :: [a6989586621679472531]) = SplitAt t t
- data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679472538 Bool -> Type) (TyFun [a6989586621679472538] [a6989586621679472538] -> Type))
- data TakeWhileSym1 (l :: TyFun a6989586621679472538 Bool -> Type) (l :: TyFun [a6989586621679472538] [a6989586621679472538])
- type TakeWhileSym2 (t :: TyFun a6989586621679472538 Bool -> Type) (t :: [a6989586621679472538]) = TakeWhile t t
- data DropWhileSym0 (l :: TyFun (TyFun a6989586621679472537 Bool -> Type) (TyFun [a6989586621679472537] [a6989586621679472537] -> Type))
- data DropWhileSym1 (l :: TyFun a6989586621679472537 Bool -> Type) (l :: TyFun [a6989586621679472537] [a6989586621679472537])
- type DropWhileSym2 (t :: TyFun a6989586621679472537 Bool -> Type) (t :: [a6989586621679472537]) = DropWhile t t
- data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679472536 Bool -> Type) (TyFun [a6989586621679472536] [a6989586621679472536] -> Type))
- data DropWhileEndSym1 (l :: TyFun a6989586621679472536 Bool -> Type) (l :: TyFun [a6989586621679472536] [a6989586621679472536])
- type DropWhileEndSym2 (t :: TyFun a6989586621679472536 Bool -> Type) (t :: [a6989586621679472536]) = DropWhileEnd t t
- data SpanSym0 (l :: TyFun (TyFun a6989586621679472535 Bool -> Type) (TyFun [a6989586621679472535] ([a6989586621679472535], [a6989586621679472535]) -> Type))
- data SpanSym1 (l :: TyFun a6989586621679472535 Bool -> Type) (l :: TyFun [a6989586621679472535] ([a6989586621679472535], [a6989586621679472535]))
- type SpanSym2 (t :: TyFun a6989586621679472535 Bool -> Type) (t :: [a6989586621679472535]) = Span t t
- data BreakSym0 (l :: TyFun (TyFun a6989586621679472534 Bool -> Type) (TyFun [a6989586621679472534] ([a6989586621679472534], [a6989586621679472534]) -> Type))
- data BreakSym1 (l :: TyFun a6989586621679472534 Bool -> Type) (l :: TyFun [a6989586621679472534] ([a6989586621679472534], [a6989586621679472534]))
- type BreakSym2 (t :: TyFun a6989586621679472534 Bool -> Type) (t :: [a6989586621679472534]) = Break t t
- data StripPrefixSym0 (l :: TyFun [a6989586621679901288] (TyFun [a6989586621679901288] (Maybe [a6989586621679901288]) -> Type))
- data StripPrefixSym1 (l :: [a6989586621679901288]) (l :: TyFun [a6989586621679901288] (Maybe [a6989586621679901288]))
- type StripPrefixSym2 (t :: [a6989586621679901288]) (t :: [a6989586621679901288]) = StripPrefix t t
- data MaximumSym0 (l :: TyFun [a6989586621679472529] a6989586621679472529)
- type MaximumSym1 (t :: [a6989586621679472529]) = Maximum t
- data MinimumSym0 (l :: TyFun [a6989586621679472528] a6989586621679472528)
- type MinimumSym1 (t :: [a6989586621679472528]) = Minimum t
- data GroupSym0 (l :: TyFun [a6989586621679472530] [[a6989586621679472530]])
- type GroupSym1 (t :: [a6989586621679472530]) = Group t
- data GroupBySym0 (l :: TyFun (TyFun a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) (TyFun [a6989586621679472525] [[a6989586621679472525]] -> Type))
- data GroupBySym1 (l :: TyFun a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472525] [[a6989586621679472525]])
- type GroupBySym2 (t :: TyFun a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) (t :: [a6989586621679472525]) = GroupBy t t
- data LookupSym0 (l :: TyFun a6989586621679472523 (TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524) -> Type))
- data LookupSym1 (l :: a6989586621679472523) (l :: TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524))
- type LookupSym2 (t :: a6989586621679472523) (t :: [(a6989586621679472523, b6989586621679472524)]) = Lookup t t
- data FindSym0 (l :: TyFun (TyFun a6989586621679472545 Bool -> Type) (TyFun [a6989586621679472545] (Maybe a6989586621679472545) -> Type))
- data FindSym1 (l :: TyFun a6989586621679472545 Bool -> Type) (l :: TyFun [a6989586621679472545] (Maybe a6989586621679472545))
- type FindSym2 (t :: TyFun a6989586621679472545 Bool -> Type) (t :: [a6989586621679472545]) = Find t t
- data FilterSym0 (l :: TyFun (TyFun a6989586621679472546 Bool -> Type) (TyFun [a6989586621679472546] [a6989586621679472546] -> Type))
- data FilterSym1 (l :: TyFun a6989586621679472546 Bool -> Type) (l :: TyFun [a6989586621679472546] [a6989586621679472546])
- type FilterSym2 (t :: TyFun a6989586621679472546 Bool -> Type) (t :: [a6989586621679472546]) = Filter t t
- data PartitionSym0 (l :: TyFun (TyFun a6989586621679472522 Bool -> Type) (TyFun [a6989586621679472522] ([a6989586621679472522], [a6989586621679472522]) -> Type))
- data PartitionSym1 (l :: TyFun a6989586621679472522 Bool -> Type) (l :: TyFun [a6989586621679472522] ([a6989586621679472522], [a6989586621679472522]))
- type PartitionSym2 (t :: TyFun a6989586621679472522 Bool -> Type) (t :: [a6989586621679472522]) = Partition t t
- data (:!!$) (l :: TyFun [a6989586621679472515] (TyFun Nat a6989586621679472515 -> Type))
- data (l :: [a6989586621679472515]) :!!$$ (l :: TyFun Nat a6989586621679472515)
- type (:!!$$$) (t :: [a6989586621679472515]) (t :: Nat) = (:!!) t t
- data ElemIndexSym0 (l :: TyFun a6989586621679472544 (TyFun [a6989586621679472544] (Maybe Nat) -> Type))
- data ElemIndexSym1 (l :: a6989586621679472544) (l :: TyFun [a6989586621679472544] (Maybe Nat))
- type ElemIndexSym2 (t :: a6989586621679472544) (t :: [a6989586621679472544]) = ElemIndex t t
- data ElemIndicesSym0 (l :: TyFun a6989586621679472543 (TyFun [a6989586621679472543] [Nat] -> Type))
- data ElemIndicesSym1 (l :: a6989586621679472543) (l :: TyFun [a6989586621679472543] [Nat])
- type ElemIndicesSym2 (t :: a6989586621679472543) (t :: [a6989586621679472543]) = ElemIndices t t
- data FindIndexSym0 (l :: TyFun (TyFun a6989586621679472542 Bool -> Type) (TyFun [a6989586621679472542] (Maybe Nat) -> Type))
- data FindIndexSym1 (l :: TyFun a6989586621679472542 Bool -> Type) (l :: TyFun [a6989586621679472542] (Maybe Nat))
- type FindIndexSym2 (t :: TyFun a6989586621679472542 Bool -> Type) (t :: [a6989586621679472542]) = FindIndex t t
- data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679472541 Bool -> Type) (TyFun [a6989586621679472541] [Nat] -> Type))
- data FindIndicesSym1 (l :: TyFun a6989586621679472541 Bool -> Type) (l :: TyFun [a6989586621679472541] [Nat])
- type FindIndicesSym2 (t :: TyFun a6989586621679472541 Bool -> Type) (t :: [a6989586621679472541]) = FindIndices t t
- data Zip4Sym0 (l :: TyFun [a6989586621679901284] (TyFun [b6989586621679901285] (TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) -> Type) -> Type))
- data Zip4Sym1 (l :: [a6989586621679901284]) (l :: TyFun [b6989586621679901285] (TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) -> Type))
- data Zip4Sym2 (l :: [a6989586621679901284]) (l :: [b6989586621679901285]) (l :: TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type))
- data Zip4Sym3 (l :: [a6989586621679901284]) (l :: [b6989586621679901285]) (l :: [c6989586621679901286]) (l :: TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)])
- type Zip4Sym4 (t :: [a6989586621679901284]) (t :: [b6989586621679901285]) (t :: [c6989586621679901286]) (t :: [d6989586621679901287]) = Zip4 t t t t
- data Zip5Sym0 (l :: TyFun [a6989586621679901279] (TyFun [b6989586621679901280] (TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) -> Type) -> Type))
- data Zip5Sym1 (l :: [a6989586621679901279]) (l :: TyFun [b6989586621679901280] (TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) -> Type))
- data Zip5Sym2 (l :: [a6989586621679901279]) (l :: [b6989586621679901280]) (l :: TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type))
- data Zip5Sym3 (l :: [a6989586621679901279]) (l :: [b6989586621679901280]) (l :: [c6989586621679901281]) (l :: TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type))
- data Zip5Sym4 (l :: [a6989586621679901279]) (l :: [b6989586621679901280]) (l :: [c6989586621679901281]) (l :: [d6989586621679901282]) (l :: TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)])
- type Zip5Sym5 (t :: [a6989586621679901279]) (t :: [b6989586621679901280]) (t :: [c6989586621679901281]) (t :: [d6989586621679901282]) (t :: [e6989586621679901283]) = Zip5 t t t t t
- data Zip6Sym0 (l :: TyFun [a6989586621679901273] (TyFun [b6989586621679901274] (TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) -> Type) -> Type))
- data Zip6Sym1 (l :: [a6989586621679901273]) (l :: TyFun [b6989586621679901274] (TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) -> Type))
- data Zip6Sym2 (l :: [a6989586621679901273]) (l :: [b6989586621679901274]) (l :: TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type))
- data Zip6Sym3 (l :: [a6989586621679901273]) (l :: [b6989586621679901274]) (l :: [c6989586621679901275]) (l :: TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type))
- data Zip6Sym4 (l :: [a6989586621679901273]) (l :: [b6989586621679901274]) (l :: [c6989586621679901275]) (l :: [d6989586621679901276]) (l :: TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type))
- data Zip6Sym5 (l :: [a6989586621679901273]) (l :: [b6989586621679901274]) (l :: [c6989586621679901275]) (l :: [d6989586621679901276]) (l :: [e6989586621679901277]) (l :: TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)])
- type Zip6Sym6 (t :: [a6989586621679901273]) (t :: [b6989586621679901274]) (t :: [c6989586621679901275]) (t :: [d6989586621679901276]) (t :: [e6989586621679901277]) (t :: [f6989586621679901278]) = Zip6 t t t t t t
- data Zip7Sym0 (l :: TyFun [a6989586621679901266] (TyFun [b6989586621679901267] (TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
- data Zip7Sym1 (l :: [a6989586621679901266]) (l :: TyFun [b6989586621679901267] (TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) -> Type))
- data Zip7Sym2 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type))
- data Zip7Sym3 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: [c6989586621679901268]) (l :: TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type))
- data Zip7Sym4 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: [c6989586621679901268]) (l :: [d6989586621679901269]) (l :: TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type))
- data Zip7Sym5 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: [c6989586621679901268]) (l :: [d6989586621679901269]) (l :: [e6989586621679901270]) (l :: TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type))
- data Zip7Sym6 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: [c6989586621679901268]) (l :: [d6989586621679901269]) (l :: [e6989586621679901270]) (l :: [f6989586621679901271]) (l :: TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)])
- type Zip7Sym7 (t :: [a6989586621679901266]) (t :: [b6989586621679901267]) (t :: [c6989586621679901268]) (t :: [d6989586621679901269]) (t :: [e6989586621679901270]) (t :: [f6989586621679901271]) (t :: [g6989586621679901272]) = Zip7 t t t t t t t
- data ZipWith4Sym0 (l :: TyFun (TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901261] (TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) -> Type) -> Type))
- data ZipWith4Sym1 (l :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679901261] (TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) -> Type))
- data ZipWith4Sym2 (l :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901261]) (l :: TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type))
- data ZipWith4Sym3 (l :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901261]) (l :: [b6989586621679901262]) (l :: TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type))
- data ZipWith4Sym4 (l :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901261]) (l :: [b6989586621679901262]) (l :: [c6989586621679901263]) (l :: TyFun [d6989586621679901264] [e6989586621679901265])
- type ZipWith4Sym5 (t :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679901261]) (t :: [b6989586621679901262]) (t :: [c6989586621679901263]) (t :: [d6989586621679901264]) = ZipWith4 t t t t t
- data ZipWith5Sym0 (l :: TyFun (TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901255] (TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith5Sym1 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679901255] (TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) -> Type))
- data ZipWith5Sym2 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901255]) (l :: TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type))
- data ZipWith5Sym3 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901255]) (l :: [b6989586621679901256]) (l :: TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type))
- data ZipWith5Sym4 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901255]) (l :: [b6989586621679901256]) (l :: [c6989586621679901257]) (l :: TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type))
- data ZipWith5Sym5 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901255]) (l :: [b6989586621679901256]) (l :: [c6989586621679901257]) (l :: [d6989586621679901258]) (l :: TyFun [e6989586621679901259] [f6989586621679901260])
- type ZipWith5Sym6 (t :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679901255]) (t :: [b6989586621679901256]) (t :: [c6989586621679901257]) (t :: [d6989586621679901258]) (t :: [e6989586621679901259]) = ZipWith5 t t t t t t
- data ZipWith6Sym0 (l :: TyFun (TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901248] (TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith6Sym1 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679901248] (TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith6Sym2 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type))
- data ZipWith6Sym3 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: [b6989586621679901249]) (l :: TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type))
- data ZipWith6Sym4 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: [b6989586621679901249]) (l :: [c6989586621679901250]) (l :: TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type))
- data ZipWith6Sym5 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: [b6989586621679901249]) (l :: [c6989586621679901250]) (l :: [d6989586621679901251]) (l :: TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type))
- data ZipWith6Sym6 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: [b6989586621679901249]) (l :: [c6989586621679901250]) (l :: [d6989586621679901251]) (l :: [e6989586621679901252]) (l :: TyFun [f6989586621679901253] [g6989586621679901254])
- type ZipWith6Sym7 (t :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679901248]) (t :: [b6989586621679901249]) (t :: [c6989586621679901250]) (t :: [d6989586621679901251]) (t :: [e6989586621679901252]) (t :: [f6989586621679901253]) = ZipWith6 t t t t t t t
- data ZipWith7Sym0 (l :: TyFun (TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901240] (TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith7Sym1 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679901240] (TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith7Sym2 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith7Sym3 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type))
- data ZipWith7Sym4 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: [c6989586621679901242]) (l :: TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type))
- data ZipWith7Sym5 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: [c6989586621679901242]) (l :: [d6989586621679901243]) (l :: TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type))
- data ZipWith7Sym6 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: [c6989586621679901242]) (l :: [d6989586621679901243]) (l :: [e6989586621679901244]) (l :: TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type))
- data ZipWith7Sym7 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: [c6989586621679901242]) (l :: [d6989586621679901243]) (l :: [e6989586621679901244]) (l :: [f6989586621679901245]) (l :: TyFun [g6989586621679901246] [h6989586621679901247])
- type ZipWith7Sym8 (t :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679901240]) (t :: [b6989586621679901241]) (t :: [c6989586621679901242]) (t :: [d6989586621679901243]) (t :: [e6989586621679901244]) (t :: [f6989586621679901245]) (t :: [g6989586621679901246]) = ZipWith7 t t t t t t t t
- data NubSym0 (l :: TyFun [a6989586621679472514] [a6989586621679472514])
- type NubSym1 (t :: [a6989586621679472514]) = Nub t
- data NubBySym0 (l :: TyFun (TyFun a6989586621679472513 (TyFun a6989586621679472513 Bool -> Type) -> Type) (TyFun [a6989586621679472513] [a6989586621679472513] -> Type))
- data NubBySym1 (l :: TyFun a6989586621679472513 (TyFun a6989586621679472513 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472513] [a6989586621679472513])
- type NubBySym2 (t :: TyFun a6989586621679472513 (TyFun a6989586621679472513 Bool -> Type) -> Type) (t :: [a6989586621679472513]) = NubBy t t
- data UnionSym0 (l :: TyFun [a6989586621679472510] (TyFun [a6989586621679472510] [a6989586621679472510] -> Type))
- data UnionSym1 (l :: [a6989586621679472510]) (l :: TyFun [a6989586621679472510] [a6989586621679472510])
- type UnionSym2 (t :: [a6989586621679472510]) (t :: [a6989586621679472510]) = Union t t
- data UnionBySym0 (l :: TyFun (TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (TyFun [a6989586621679472511] (TyFun [a6989586621679472511] [a6989586621679472511] -> Type) -> Type))
- data UnionBySym1 (l :: TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472511] (TyFun [a6989586621679472511] [a6989586621679472511] -> Type))
- data UnionBySym2 (l :: TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (l :: [a6989586621679472511]) (l :: TyFun [a6989586621679472511] [a6989586621679472511])
- type UnionBySym3 (t :: TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (t :: [a6989586621679472511]) (t :: [a6989586621679472511]) = UnionBy t t t
- data GenericLengthSym0 (l :: TyFun [a6989586621679472509] i6989586621679472508)
- type GenericLengthSym1 (t :: [a6989586621679472509]) = GenericLength t
- data GenericTakeSym0 (l :: TyFun i6989586621679901238 (TyFun [a6989586621679901239] [a6989586621679901239] -> Type))
- data GenericTakeSym1 (l :: i6989586621679901238) (l :: TyFun [a6989586621679901239] [a6989586621679901239])
- type GenericTakeSym2 (t :: i6989586621679901238) (t :: [a6989586621679901239]) = GenericTake t t
- data GenericDropSym0 (l :: TyFun i6989586621679901236 (TyFun [a6989586621679901237] [a6989586621679901237] -> Type))
- data GenericDropSym1 (l :: i6989586621679901236) (l :: TyFun [a6989586621679901237] [a6989586621679901237])
- type GenericDropSym2 (t :: i6989586621679901236) (t :: [a6989586621679901237]) = GenericDrop t t
- data GenericSplitAtSym0 (l :: TyFun i6989586621679901234 (TyFun [a6989586621679901235] ([a6989586621679901235], [a6989586621679901235]) -> Type))
- data GenericSplitAtSym1 (l :: i6989586621679901234) (l :: TyFun [a6989586621679901235] ([a6989586621679901235], [a6989586621679901235]))
- type GenericSplitAtSym2 (t :: i6989586621679901234) (t :: [a6989586621679901235]) = GenericSplitAt t t
- data GenericIndexSym0 (l :: TyFun [a6989586621679901233] (TyFun i6989586621679901232 a6989586621679901233 -> Type))
- data GenericIndexSym1 (l :: [a6989586621679901233]) (l :: TyFun i6989586621679901232 a6989586621679901233)
- type GenericIndexSym2 (t :: [a6989586621679901233]) (t :: i6989586621679901232) = GenericIndex t t
- data GenericReplicateSym0 (l :: TyFun i6989586621679901230 (TyFun a6989586621679901231 [a6989586621679901231] -> Type))
- data GenericReplicateSym1 (l :: i6989586621679901230) (l :: TyFun a6989586621679901231 [a6989586621679901231])
- type GenericReplicateSym2 (t :: i6989586621679901230) (t :: a6989586621679901231) = GenericReplicate t t
Basic functions
type family Length (a :: [a]) :: Nat where ... #
Equations
| Length '[] = FromInteger 0 | |
| Length ((:) _z_6989586621679473379 xs) = Apply (Apply (:+$) (FromInteger 1)) (Apply LengthSym0 xs) |
List transformations
type family Intersperse (a :: a) (a :: [a]) :: [a] where ... #
Equations
| Intersperse _z_6989586621679476402 '[] = '[] | |
| Intersperse sep ((:) x xs) = Apply (Apply (:$) x) (Apply (Apply PrependToAllSym0 sep) xs) |
type family Intercalate (a :: [a]) (a :: [[a]]) :: [a] where ... #
Equations
| Intercalate xs xss = Apply ConcatSym0 (Apply (Apply IntersperseSym0 xs) xss) |
type family Subsequences (a :: [a]) :: [[a]] where ... #
Equations
| Subsequences xs = Apply (Apply (:$) '[]) (Apply NonEmptySubsequencesSym0 xs) |
type family Permutations (a :: [a]) :: [[a]] where ... #
Reducing lists (folds)
type family Foldr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| Foldr1 _z_6989586621679475626 '[x] = x | |
| Foldr1 f ((:) x ((:) wild_6989586621679473083 wild_6989586621679473085)) = Apply (Apply f x) (Apply (Apply Foldr1Sym0 f) (Let6989586621679475634XsSym4 f x wild_6989586621679473083 wild_6989586621679473085)) | |
| Foldr1 _z_6989586621679475653 '[] = Apply ErrorSym0 "Data.Singletons.List.foldr1: empty list" |
Special folds
type family Sum (a :: [a]) :: a where ... #
Equations
| Sum l = Apply (Apply (Let6989586621679473412Sum'Sym1 l) l) (FromInteger 0) |
type family Product (a :: [a]) :: a where ... #
Equations
| Product l = Apply (Apply (Let6989586621679473388ProdSym1 l) l) (FromInteger 1) |
Building lists
Scans
type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ... #
Equations
| Scanr1 _z_6989586621679475431 '[] = '[] | |
| Scanr1 _z_6989586621679475434 '[x] = Apply (Apply (:$) x) '[] | |
| Scanr1 f ((:) x ((:) wild_6989586621679473091 wild_6989586621679473093)) = Case_6989586621679475480 f x wild_6989586621679473091 wild_6989586621679473093 (Let6989586621679475461Scrutinee_6989586621679473089Sym4 f x wild_6989586621679473091 wild_6989586621679473093) |
Accumulating maps
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 ... #
Infinite lists
type family Replicate (a :: Nat) (a :: a) :: [a] where ... #
Equations
| Replicate n x = Case_6989586621679473372 n x (Let6989586621679473364Scrutinee_6989586621679473175Sym2 n x) |
Unfolding
type family Unfoldr (a :: TyFun b (Maybe (a, b)) -> Type) (a :: b) :: [a] where ... #
Equations
| Unfoldr f b = Case_6989586621679475073 f b (Let6989586621679475065Scrutinee_6989586621679473095Sym2 f b) |
Sublists
Extracting sublists
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 ... #
Equations
| Span _z_6989586621679473703 '[] = Apply (Apply Tuple2Sym0 Let6989586621679473706XsSym0) Let6989586621679473706XsSym0 | |
| Span p ((:) x xs') = Case_6989586621679473736 p x xs' (Let6989586621679473723Scrutinee_6989586621679473155Sym3 p x xs') |
type family Break (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ... #
Equations
| Break _z_6989586621679473601 '[] = Apply (Apply Tuple2Sym0 Let6989586621679473604XsSym0) Let6989586621679473604XsSym0 | |
| Break p ((:) x xs') = Case_6989586621679473634 p x xs' (Let6989586621679473621Scrutinee_6989586621679473157Sym3 p x xs') |
type family StripPrefix (a :: [a]) (a :: [a]) :: Maybe [a] where ... #
Equations
| StripPrefix '[] ys = Apply JustSym0 ys | |
| StripPrefix arg_6989586621679901356 arg_6989586621679901358 = Case_6989586621679901967 arg_6989586621679901356 arg_6989586621679901358 (Apply (Apply Tuple2Sym0 arg_6989586621679901356) arg_6989586621679901358) |
type family Group (a :: [a]) :: [[a]] where ... #
Equations
| Group xs = Apply (Apply GroupBySym0 (:==$)) xs |
Predicates
type family IsPrefixOf (a :: [a]) (a :: [a]) :: Bool where ... #
Equations
| IsPrefixOf '[] '[] = TrueSym0 | |
| IsPrefixOf '[] ((:) _z_6989586621679475005 _z_6989586621679475008) = TrueSym0 | |
| IsPrefixOf ((:) _z_6989586621679475011 _z_6989586621679475014) '[] = FalseSym0 | |
| IsPrefixOf ((:) x xs) ((:) y ys) = Apply (Apply (:&&$) (Apply (Apply (:==$) x) y)) (Apply (Apply IsPrefixOfSym0 xs) ys) |
type family IsSuffixOf (a :: [a]) (a :: [a]) :: Bool where ... #
Equations
| IsSuffixOf x y = Apply (Apply IsPrefixOfSym0 (Apply ReverseSym0 x)) (Apply ReverseSym0 y) |
Searching lists
Searching by equality
type family Lookup (a :: a) (a :: [(a, b)]) :: Maybe b where ... #
Equations
| Lookup _key '[] = NothingSym0 | |
| Lookup key ((:) '(x, y) xys) = Case_6989586621679473516 key x y xys (Let6989586621679473497Scrutinee_6989586621679473171Sym4 key x y xys) |
Searching with a predicate
type family Find (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe a where ... #
Equations
| Find p a_6989586621679473986 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FilterSym0 p)) a_6989586621679473986 |
Indexing lists
type family ElemIndices (a :: a) (a :: [a]) :: [Nat] where ... #
Equations
| ElemIndices x a_6989586621679474888 = Apply (Apply FindIndicesSym0 (Apply (:==$) x)) a_6989586621679474888 |
type family FindIndex (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe Nat where ... #
Equations
| FindIndex p a_6989586621679474901 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FindIndicesSym0 p)) a_6989586621679474901 |
Zipping and unzipping lists
type family Zip3 (a :: [a]) (a :: [b]) (a :: [c]) :: [(a, b, c)] where ... #
Equations
| Zip3 ((:) a as) ((:) b bs) ((:) c cs) = Apply (Apply (:$) (Apply (Apply (Apply Tuple3Sym0 a) b) c)) (Apply (Apply (Apply Zip3Sym0 as) bs) cs) | |
| Zip3 '[] '[] '[] = '[] | |
| Zip3 '[] '[] ((:) _z_6989586621679474737 _z_6989586621679474740) = '[] | |
| Zip3 '[] ((:) _z_6989586621679474743 _z_6989586621679474746) '[] = '[] | |
| Zip3 '[] ((:) _z_6989586621679474749 _z_6989586621679474752) ((:) _z_6989586621679474755 _z_6989586621679474758) = '[] | |
| Zip3 ((:) _z_6989586621679474761 _z_6989586621679474764) '[] '[] = '[] | |
| Zip3 ((:) _z_6989586621679474767 _z_6989586621679474770) '[] ((:) _z_6989586621679474773 _z_6989586621679474776) = '[] | |
| Zip3 ((:) _z_6989586621679474779 _z_6989586621679474782) ((:) _z_6989586621679474785 _z_6989586621679474788) '[] = '[] |
type family Zip4 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [(a, b, c, d)] where ... #
Equations
| Zip4 a_6989586621679901921 a_6989586621679901923 a_6989586621679901925 a_6989586621679901927 = Apply (Apply (Apply (Apply (Apply ZipWith4Sym0 Tuple4Sym0) a_6989586621679901921) a_6989586621679901923) a_6989586621679901925) a_6989586621679901927 |
type family Zip5 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [(a, b, c, d, e)] where ... #
Equations
| Zip5 a_6989586621679901876 a_6989586621679901878 a_6989586621679901880 a_6989586621679901882 a_6989586621679901884 = Apply (Apply (Apply (Apply (Apply (Apply ZipWith5Sym0 Tuple5Sym0) a_6989586621679901876) a_6989586621679901878) a_6989586621679901880) a_6989586621679901882) a_6989586621679901884 |
type family Zip6 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [(a, b, c, d, e, f)] where ... #
Equations
| Zip6 a_6989586621679901819 a_6989586621679901821 a_6989586621679901823 a_6989586621679901825 a_6989586621679901827 a_6989586621679901829 = Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith6Sym0 Tuple6Sym0) a_6989586621679901819) a_6989586621679901821) a_6989586621679901823) a_6989586621679901825) a_6989586621679901827) a_6989586621679901829 |
type family Zip7 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [(a, b, c, d, e, f, g)] where ... #
Equations
| Zip7 a_6989586621679901749 a_6989586621679901751 a_6989586621679901753 a_6989586621679901755 a_6989586621679901757 a_6989586621679901759 a_6989586621679901761 = Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 Tuple7Sym0) a_6989586621679901749) a_6989586621679901751) a_6989586621679901753) a_6989586621679901755) a_6989586621679901757) a_6989586621679901759) a_6989586621679901761 |
type family ZipWith (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: [a]) (a :: [b]) :: [c] where ... #
Equations
| ZipWith f ((:) x xs) ((:) y ys) = Apply (Apply (:$) (Apply (Apply f x) y)) (Apply (Apply (Apply ZipWithSym0 f) xs) ys) | |
| ZipWith _z_6989586621679474695 '[] '[] = '[] | |
| ZipWith _z_6989586621679474698 ((:) _z_6989586621679474701 _z_6989586621679474704) '[] = '[] | |
| ZipWith _z_6989586621679474707 '[] ((:) _z_6989586621679474710 _z_6989586621679474713) = '[] |
type family ZipWith3 (a :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) :: [d] where ... #
Equations
| ZipWith3 z ((:) a as) ((:) b bs) ((:) c cs) = Apply (Apply (:$) (Apply (Apply (Apply z a) b) c)) (Apply (Apply (Apply (Apply ZipWith3Sym0 z) as) bs) cs) | |
| ZipWith3 _z_6989586621679474600 '[] '[] '[] = '[] | |
| ZipWith3 _z_6989586621679474603 '[] '[] ((:) _z_6989586621679474606 _z_6989586621679474609) = '[] | |
| ZipWith3 _z_6989586621679474612 '[] ((:) _z_6989586621679474615 _z_6989586621679474618) '[] = '[] | |
| ZipWith3 _z_6989586621679474621 '[] ((:) _z_6989586621679474624 _z_6989586621679474627) ((:) _z_6989586621679474630 _z_6989586621679474633) = '[] | |
| ZipWith3 _z_6989586621679474636 ((:) _z_6989586621679474639 _z_6989586621679474642) '[] '[] = '[] | |
| ZipWith3 _z_6989586621679474645 ((:) _z_6989586621679474648 _z_6989586621679474651) '[] ((:) _z_6989586621679474654 _z_6989586621679474657) = '[] | |
| ZipWith3 _z_6989586621679474660 ((:) _z_6989586621679474663 _z_6989586621679474666) ((:) _z_6989586621679474669 _z_6989586621679474672) '[] = '[] |
type family ZipWith4 (a :: TyFun a (TyFun b (TyFun c (TyFun d e -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [e] where ... #
Equations
| ZipWith4 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) = Apply (Apply (:$) (Apply (Apply (Apply (Apply z a) b) c) d)) (Apply (Apply (Apply (Apply (Apply ZipWith4Sym0 z) as) bs) cs) ds) | |
| ZipWith4 _z_6989586621679901734 _z_6989586621679901737 _z_6989586621679901740 _z_6989586621679901743 _z_6989586621679901746 = '[] |
type family ZipWith5 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e f -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [f] where ... #
Equations
| ZipWith5 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) = Apply (Apply (:$) (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e)) (Apply (Apply (Apply (Apply (Apply (Apply ZipWith5Sym0 z) as) bs) cs) ds) es) | |
| ZipWith5 _z_6989586621679901677 _z_6989586621679901680 _z_6989586621679901683 _z_6989586621679901686 _z_6989586621679901689 _z_6989586621679901692 = '[] |
type family ZipWith6 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f g -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [g] where ... #
Equations
| ZipWith6 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) ((:) f fs) = Apply (Apply (:$) (Apply (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e) f)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith6Sym0 z) as) bs) cs) ds) es) fs) | |
| ZipWith6 _z_6989586621679901606 _z_6989586621679901609 _z_6989586621679901612 _z_6989586621679901615 _z_6989586621679901618 _z_6989586621679901621 _z_6989586621679901624 = '[] |
type family ZipWith7 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f (TyFun g h -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [h] where ... #
Equations
| ZipWith7 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) ((:) f fs) ((:) g gs) = Apply (Apply (:$) (Apply (Apply (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e) f) g)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 z) as) bs) cs) ds) es) fs) gs) | |
| ZipWith7 _z_6989586621679901520 _z_6989586621679901523 _z_6989586621679901526 _z_6989586621679901529 _z_6989586621679901532 _z_6989586621679901535 _z_6989586621679901538 _z_6989586621679901541 = '[] |
type family Unzip7 (a :: [(a, b, c, d, e, f, g)]) :: ([a], [b], [c], [d], [e], [f], [g]) where ... #
Special lists
"Set" operations
Ordered lists
type family Sort (a :: [a]) :: [a] where ... #
Equations
| Sort a_6989586621679474222 = Apply (Apply SortBySym0 CompareSym0) a_6989586621679474222 |
type family Insert (a :: a) (a :: [a]) :: [a] where ... #
Equations
| Insert e ls = Apply (Apply (Apply InsertBySym0 CompareSym0) e) ls |
Generalized functions
The "By" operations
User-supplied equality (replacing an Eq context)
type family 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 ... #
Equations
| DeleteFirstsBy eq a_6989586621679474291 a_6989586621679474293 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) a_6989586621679474291) a_6989586621679474293 |
type family UnionBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ... #
type family IntersectBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ... #
Equations
| IntersectBy _z_6989586621679474005 '[] '[] = '[] | |
| IntersectBy _z_6989586621679474008 '[] ((:) _z_6989586621679474011 _z_6989586621679474014) = '[] | |
| IntersectBy _z_6989586621679474017 ((:) _z_6989586621679474020 _z_6989586621679474023) '[] = '[] | |
| IntersectBy eq ((:) wild_6989586621679473141 wild_6989586621679473143) ((:) wild_6989586621679473145 wild_6989586621679473147) = Apply (Apply FilterSym0 (Apply (Apply (Apply (Apply (Apply Lambda_6989586621679474082Sym0 eq) wild_6989586621679473141) wild_6989586621679473143) wild_6989586621679473145) wild_6989586621679473147)) (Let6989586621679474031XsSym5 eq wild_6989586621679473141 wild_6989586621679473143 wild_6989586621679473145 wild_6989586621679473147) |
User-supplied comparison (replacing an Ord context)
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 ... #
Equations
| MaximumBy _z_6989586621679475680 '[] = Apply ErrorSym0 "Data.Singletons.List.maximumBy: empty list" | |
| MaximumBy cmp ((:) wild_6989586621679473127 wild_6989586621679473129) = Apply (Apply Foldl1Sym0 (Let6989586621679475699MaxBySym3 cmp wild_6989586621679473127 wild_6989586621679473129)) (Let6989586621679475686XsSym3 cmp wild_6989586621679473127 wild_6989586621679473129) |
type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| MinimumBy _z_6989586621679475767 '[] = Apply ErrorSym0 "Data.Singletons.List.minimumBy: empty list" | |
| MinimumBy cmp ((:) wild_6989586621679473133 wild_6989586621679473135) = Apply (Apply Foldl1Sym0 (Let6989586621679475786MinBySym3 cmp wild_6989586621679473133 wild_6989586621679473135)) (Let6989586621679475773XsSym3 cmp wild_6989586621679473133 wild_6989586621679473135) |
The "generic" operations
type family GenericLength (a :: [a]) :: i where ... #
Equations
| GenericLength '[] = FromInteger 0 | |
| GenericLength ((:) _z_6989586621679473226 xs) = Apply (Apply (:+$) (FromInteger 1)) (Apply GenericLengthSym0 xs) |
type family GenericTake (a :: i) (a :: [a]) :: [a] where ... #
Equations
| GenericTake a_6989586621679901430 a_6989586621679901432 = Apply (Apply TakeSym0 a_6989586621679901430) a_6989586621679901432 |
type family GenericDrop (a :: i) (a :: [a]) :: [a] where ... #
Equations
| GenericDrop a_6989586621679901415 a_6989586621679901417 = Apply (Apply DropSym0 a_6989586621679901415) a_6989586621679901417 |
type family GenericSplitAt (a :: i) (a :: [a]) :: ([a], [a]) where ... #
Equations
| GenericSplitAt a_6989586621679901400 a_6989586621679901402 = Apply (Apply SplitAtSym0 a_6989586621679901400) a_6989586621679901402 |
type family GenericIndex (a :: [a]) (a :: i) :: a where ... #
Equations
| GenericIndex a_6989586621679901385 a_6989586621679901387 = Apply (Apply (:!!$) a_6989586621679901385) a_6989586621679901387 |
type family GenericReplicate (a :: i) (a :: a) :: [a] where ... #
Equations
| GenericReplicate a_6989586621679901370 a_6989586621679901372 = Apply (Apply ReplicateSym0 a_6989586621679901370) a_6989586621679901372 |
Defunctionalization symbols
data (:$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type)) #
data (l :: [a6989586621679289771]) :++$$ (l :: TyFun [a6989586621679289771] [a6989586621679289771]) #
data (:++$) (l :: TyFun [a6989586621679289771] (TyFun [a6989586621679289771] [a6989586621679289771] -> Type)) #
data MapSym0 (l :: TyFun (TyFun a6989586621679289772 b6989586621679289773 -> Type) (TyFun [a6989586621679289772] [b6989586621679289773] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679289772 b6989586621679289773 -> Type) (TyFun [a6989586621679289772] [b6989586621679289773] -> Type) -> *) (MapSym0 a6989586621679289772 b6989586621679289773) # | |
| type Apply (TyFun a6989586621679289772 b6989586621679289773 -> Type) (TyFun [a6989586621679289772] [b6989586621679289773] -> Type) (MapSym0 a6989586621679289772 b6989586621679289773) l # | |
data MapSym1 (l :: TyFun a6989586621679289772 b6989586621679289773 -> Type) (l :: TyFun [a6989586621679289772] [b6989586621679289773]) #
type MapSym2 (t :: TyFun a6989586621679289772 b6989586621679289773 -> Type) (t :: [a6989586621679289772]) = Map t t #
data ReverseSym0 (l :: TyFun [a6989586621679472630] [a6989586621679472630]) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472630] [a6989586621679472630] -> *) (ReverseSym0 a6989586621679472630) # | |
| type Apply [a] [a] (ReverseSym0 a) l # | |
type ReverseSym1 (t :: [a6989586621679472630]) = Reverse t #
data IntersperseSym0 (l :: TyFun a6989586621679472629 (TyFun [a6989586621679472629] [a6989586621679472629] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679472629 (TyFun [a6989586621679472629] [a6989586621679472629] -> Type) -> *) (IntersperseSym0 a6989586621679472629) # | |
| type Apply a6989586621679472629 (TyFun [a6989586621679472629] [a6989586621679472629] -> Type) (IntersperseSym0 a6989586621679472629) l # | |
data IntersperseSym1 (l :: a6989586621679472629) (l :: TyFun [a6989586621679472629] [a6989586621679472629]) #
Instances
| SuppressUnusedWarnings (a6989586621679472629 -> TyFun [a6989586621679472629] [a6989586621679472629] -> *) (IntersperseSym1 a6989586621679472629) # | |
| type Apply [a] [a] (IntersperseSym1 a l1) l2 # | |
type IntersperseSym2 (t :: a6989586621679472629) (t :: [a6989586621679472629]) = Intersperse t t #
data IntercalateSym0 (l :: TyFun [a6989586621679472628] (TyFun [[a6989586621679472628]] [a6989586621679472628] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472628] (TyFun [[a6989586621679472628]] [a6989586621679472628] -> Type) -> *) (IntercalateSym0 a6989586621679472628) # | |
| type Apply [a6989586621679472628] (TyFun [[a6989586621679472628]] [a6989586621679472628] -> Type) (IntercalateSym0 a6989586621679472628) l # | |
data IntercalateSym1 (l :: [a6989586621679472628]) (l :: TyFun [[a6989586621679472628]] [a6989586621679472628]) #
Instances
| SuppressUnusedWarnings ([a6989586621679472628] -> TyFun [[a6989586621679472628]] [a6989586621679472628] -> *) (IntercalateSym1 a6989586621679472628) # | |
| type Apply [[a]] [a] (IntercalateSym1 a l1) l2 # | |
type IntercalateSym2 (t :: [a6989586621679472628]) (t :: [[a6989586621679472628]]) = Intercalate t t #
data SubsequencesSym0 (l :: TyFun [a6989586621679472627] [[a6989586621679472627]]) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472627] [[a6989586621679472627]] -> *) (SubsequencesSym0 a6989586621679472627) # | |
| type Apply [a] [[a]] (SubsequencesSym0 a) l # | |
type SubsequencesSym1 (t :: [a6989586621679472627]) = Subsequences t #
data PermutationsSym0 (l :: TyFun [a6989586621679472624] [[a6989586621679472624]]) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472624] [[a6989586621679472624]] -> *) (PermutationsSym0 a6989586621679472624) # | |
| type Apply [a] [[a]] (PermutationsSym0 a) l # | |
type PermutationsSym1 (t :: [a6989586621679472624]) = Permutations t #
data FoldlSym0 (l :: TyFun (TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> Type) -> *) (FoldlSym0 a6989586621679249584 b6989586621679249585) # | |
| type Apply (TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> Type) (FoldlSym0 a6989586621679249584 b6989586621679249585) l # | |
data FoldlSym1 (l :: TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (l :: TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) -> TyFun b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) -> *) (FoldlSym1 a6989586621679249584 b6989586621679249585) # | |
| type Apply b6989586621679249585 (TyFun [a6989586621679249584] b6989586621679249585 -> Type) (FoldlSym1 a6989586621679249584 b6989586621679249585 l1) l2 # | |
data FoldlSym2 (l :: TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (l :: b6989586621679249585) (l :: TyFun [a6989586621679249584] b6989586621679249585) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) -> b6989586621679249585 -> TyFun [a6989586621679249584] b6989586621679249585 -> *) (FoldlSym2 a6989586621679249584 b6989586621679249585) # | |
| type Apply [a] b (FoldlSym2 a b l1 l2) l3 # | |
type FoldlSym3 (t :: TyFun b6989586621679249585 (TyFun a6989586621679249584 b6989586621679249585 -> Type) -> Type) (t :: b6989586621679249585) (t :: [a6989586621679249584]) = Foldl t t t #
data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type) -> Type) -> *) (Foldl'Sym0 a6989586621679472622 b6989586621679472623) # | |
| type Apply (TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type) -> Type) (Foldl'Sym0 a6989586621679472622 b6989586621679472623) l # | |
data Foldl'Sym1 (l :: TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (l :: TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) -> TyFun b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type) -> *) (Foldl'Sym1 a6989586621679472622 b6989586621679472623) # | |
| type Apply b6989586621679472623 (TyFun [a6989586621679472622] b6989586621679472623 -> Type) (Foldl'Sym1 a6989586621679472622 b6989586621679472623 l1) l2 # | |
data Foldl'Sym2 (l :: TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (l :: b6989586621679472623) (l :: TyFun [a6989586621679472622] b6989586621679472623) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) -> b6989586621679472623 -> TyFun [a6989586621679472622] b6989586621679472623 -> *) (Foldl'Sym2 a6989586621679472622 b6989586621679472623) # | |
| type Apply [a] b (Foldl'Sym2 a b l1 l2) l3 # | |
type Foldl'Sym3 (t :: TyFun b6989586621679472623 (TyFun a6989586621679472622 b6989586621679472623 -> Type) -> Type) (t :: b6989586621679472623) (t :: [a6989586621679472622]) = Foldl' t t t #
data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) (TyFun [a6989586621679472621] a6989586621679472621 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) (TyFun [a6989586621679472621] a6989586621679472621 -> Type) -> *) (Foldl1Sym0 a6989586621679472621) # | |
| type Apply (TyFun a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) (TyFun [a6989586621679472621] a6989586621679472621 -> Type) (Foldl1Sym0 a6989586621679472621) l # | |
data Foldl1Sym1 (l :: TyFun a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) (l :: TyFun [a6989586621679472621] a6989586621679472621) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) -> TyFun [a6989586621679472621] a6989586621679472621 -> *) (Foldl1Sym1 a6989586621679472621) # | |
| type Apply [a] a (Foldl1Sym1 a l1) l2 # | |
type Foldl1Sym2 (t :: TyFun a6989586621679472621 (TyFun a6989586621679472621 a6989586621679472621 -> Type) -> Type) (t :: [a6989586621679472621]) = Foldl1 t t #
data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (TyFun [a6989586621679472620] a6989586621679472620 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (TyFun [a6989586621679472620] a6989586621679472620 -> Type) -> *) (Foldl1'Sym0 a6989586621679472620) # | |
| type Apply (TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (TyFun [a6989586621679472620] a6989586621679472620 -> Type) (Foldl1'Sym0 a6989586621679472620) l # | |
data Foldl1'Sym1 (l :: TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (l :: TyFun [a6989586621679472620] a6989586621679472620) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) -> TyFun [a6989586621679472620] a6989586621679472620 -> *) (Foldl1'Sym1 a6989586621679472620) # | |
| type Apply [a] a (Foldl1'Sym1 a l1) l2 # | |
type Foldl1'Sym2 (t :: TyFun a6989586621679472620 (TyFun a6989586621679472620 a6989586621679472620 -> Type) -> Type) (t :: [a6989586621679472620]) = Foldl1' t t #
data FoldrSym0 (l :: TyFun (TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> Type) -> *) (FoldrSym0 a6989586621679289774 b6989586621679289775) # | |
| type Apply (TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> Type) (FoldrSym0 a6989586621679289774 b6989586621679289775) l # | |
data FoldrSym1 (l :: TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (l :: TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) -> TyFun b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) -> *) (FoldrSym1 a6989586621679289774 b6989586621679289775) # | |
| type Apply b6989586621679289775 (TyFun [a6989586621679289774] b6989586621679289775 -> Type) (FoldrSym1 a6989586621679289774 b6989586621679289775 l1) l2 # | |
data FoldrSym2 (l :: TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (l :: b6989586621679289775) (l :: TyFun [a6989586621679289774] b6989586621679289775) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) -> b6989586621679289775 -> TyFun [a6989586621679289774] b6989586621679289775 -> *) (FoldrSym2 a6989586621679289774 b6989586621679289775) # | |
| type Apply [a] b (FoldrSym2 a b l1 l2) l3 # | |
type FoldrSym3 (t :: TyFun a6989586621679289774 (TyFun b6989586621679289775 b6989586621679289775 -> Type) -> Type) (t :: b6989586621679289775) (t :: [a6989586621679289774]) = Foldr t t t #
data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) (TyFun [a6989586621679472619] a6989586621679472619 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) (TyFun [a6989586621679472619] a6989586621679472619 -> Type) -> *) (Foldr1Sym0 a6989586621679472619) # | |
| type Apply (TyFun a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) (TyFun [a6989586621679472619] a6989586621679472619 -> Type) (Foldr1Sym0 a6989586621679472619) l # | |
data Foldr1Sym1 (l :: TyFun a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) (l :: TyFun [a6989586621679472619] a6989586621679472619) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) -> TyFun [a6989586621679472619] a6989586621679472619 -> *) (Foldr1Sym1 a6989586621679472619) # | |
| type Apply [a] a (Foldr1Sym1 a l1) l2 # | |
type Foldr1Sym2 (t :: TyFun a6989586621679472619 (TyFun a6989586621679472619 a6989586621679472619 -> Type) -> Type) (t :: [a6989586621679472619]) = Foldr1 t t #
data ConcatSym0 (l :: TyFun [[a6989586621679472618]] [a6989586621679472618]) #
Instances
| SuppressUnusedWarnings (TyFun [[a6989586621679472618]] [a6989586621679472618] -> *) (ConcatSym0 a6989586621679472618) # | |
| type Apply [[a]] [a] (ConcatSym0 a) l # | |
type ConcatSym1 (t :: [[a6989586621679472618]]) = Concat t #
data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679472616 [b6989586621679472617] -> Type) (TyFun [a6989586621679472616] [b6989586621679472617] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472616 [b6989586621679472617] -> Type) (TyFun [a6989586621679472616] [b6989586621679472617] -> Type) -> *) (ConcatMapSym0 a6989586621679472616 b6989586621679472617) # | |
| type Apply (TyFun a6989586621679472616 [b6989586621679472617] -> Type) (TyFun [a6989586621679472616] [b6989586621679472617] -> Type) (ConcatMapSym0 a6989586621679472616 b6989586621679472617) l # | |
data ConcatMapSym1 (l :: TyFun a6989586621679472616 [b6989586621679472617] -> Type) (l :: TyFun [a6989586621679472616] [b6989586621679472617]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472616 [b6989586621679472617] -> Type) -> TyFun [a6989586621679472616] [b6989586621679472617] -> *) (ConcatMapSym1 a6989586621679472616 b6989586621679472617) # | |
| type Apply [a] [b] (ConcatMapSym1 a b l1) l2 # | |
type ConcatMapSym2 (t :: TyFun a6989586621679472616 [b6989586621679472617] -> Type) (t :: [a6989586621679472616]) = ConcatMap t t #
data Any_Sym0 (l :: TyFun (TyFun a6989586621679462399 Bool -> Type) (TyFun [a6989586621679462399] Bool -> Type)) #
data Any_Sym1 (l :: TyFun a6989586621679462399 Bool -> Type) (l :: TyFun [a6989586621679462399] Bool) #
type Any_Sym2 (t :: TyFun a6989586621679462399 Bool -> Type) (t :: [a6989586621679462399]) = Any_ t t #
data AllSym0 (l :: TyFun (TyFun a6989586621679472615 Bool -> Type) (TyFun [a6989586621679472615] Bool -> Type)) #
data AllSym1 (l :: TyFun a6989586621679472615 Bool -> Type) (l :: TyFun [a6989586621679472615] Bool) #
type AllSym2 (t :: TyFun a6989586621679472615 Bool -> Type) (t :: [a6989586621679472615]) = All t t #
data ScanlSym0 (l :: TyFun (TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> Type) -> *) (ScanlSym0 a6989586621679472614 b6989586621679472613) # | |
| type Apply (TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> Type) (ScanlSym0 a6989586621679472614 b6989586621679472613) l # | |
data ScanlSym1 (l :: TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (l :: TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) -> TyFun b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) -> *) (ScanlSym1 a6989586621679472614 b6989586621679472613) # | |
| type Apply b6989586621679472613 (TyFun [a6989586621679472614] [b6989586621679472613] -> Type) (ScanlSym1 a6989586621679472614 b6989586621679472613 l1) l2 # | |
data ScanlSym2 (l :: TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (l :: b6989586621679472613) (l :: TyFun [a6989586621679472614] [b6989586621679472613]) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) -> b6989586621679472613 -> TyFun [a6989586621679472614] [b6989586621679472613] -> *) (ScanlSym2 a6989586621679472614 b6989586621679472613) # | |
| type Apply [a] [b] (ScanlSym2 a b l1 l2) l3 # | |
type ScanlSym3 (t :: TyFun b6989586621679472613 (TyFun a6989586621679472614 b6989586621679472613 -> Type) -> Type) (t :: b6989586621679472613) (t :: [a6989586621679472614]) = Scanl t t t #
data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) (TyFun [a6989586621679472612] [a6989586621679472612] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) (TyFun [a6989586621679472612] [a6989586621679472612] -> Type) -> *) (Scanl1Sym0 a6989586621679472612) # | |
| type Apply (TyFun a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) (TyFun [a6989586621679472612] [a6989586621679472612] -> Type) (Scanl1Sym0 a6989586621679472612) l # | |
data Scanl1Sym1 (l :: TyFun a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) (l :: TyFun [a6989586621679472612] [a6989586621679472612]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) -> TyFun [a6989586621679472612] [a6989586621679472612] -> *) (Scanl1Sym1 a6989586621679472612) # | |
| type Apply [a] [a] (Scanl1Sym1 a l1) l2 # | |
type Scanl1Sym2 (t :: TyFun a6989586621679472612 (TyFun a6989586621679472612 a6989586621679472612 -> Type) -> Type) (t :: [a6989586621679472612]) = Scanl1 t t #
data ScanrSym0 (l :: TyFun (TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> Type) -> *) (ScanrSym0 a6989586621679472610 b6989586621679472611) # | |
| type Apply (TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> Type) (ScanrSym0 a6989586621679472610 b6989586621679472611) l # | |
data ScanrSym1 (l :: TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (l :: TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) -> TyFun b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) -> *) (ScanrSym1 a6989586621679472610 b6989586621679472611) # | |
| type Apply b6989586621679472611 (TyFun [a6989586621679472610] [b6989586621679472611] -> Type) (ScanrSym1 a6989586621679472610 b6989586621679472611 l1) l2 # | |
data ScanrSym2 (l :: TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (l :: b6989586621679472611) (l :: TyFun [a6989586621679472610] [b6989586621679472611]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) -> b6989586621679472611 -> TyFun [a6989586621679472610] [b6989586621679472611] -> *) (ScanrSym2 a6989586621679472610 b6989586621679472611) # | |
| type Apply [a] [b] (ScanrSym2 a b l1 l2) l3 # | |
type ScanrSym3 (t :: TyFun a6989586621679472610 (TyFun b6989586621679472611 b6989586621679472611 -> Type) -> Type) (t :: b6989586621679472611) (t :: [a6989586621679472610]) = Scanr t t t #
data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) (TyFun [a6989586621679472609] [a6989586621679472609] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) (TyFun [a6989586621679472609] [a6989586621679472609] -> Type) -> *) (Scanr1Sym0 a6989586621679472609) # | |
| type Apply (TyFun a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) (TyFun [a6989586621679472609] [a6989586621679472609] -> Type) (Scanr1Sym0 a6989586621679472609) l # | |
data Scanr1Sym1 (l :: TyFun a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) (l :: TyFun [a6989586621679472609] [a6989586621679472609]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) -> TyFun [a6989586621679472609] [a6989586621679472609] -> *) (Scanr1Sym1 a6989586621679472609) # | |
| type Apply [a] [a] (Scanr1Sym1 a l1) l2 # | |
type Scanr1Sym2 (t :: TyFun a6989586621679472609 (TyFun a6989586621679472609 a6989586621679472609 -> Type) -> Type) (t :: [a6989586621679472609]) = Scanr1 t t #
data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> Type) -> *) (MapAccumLSym0 x6989586621679472607 acc6989586621679472606 y6989586621679472608) # | |
| type Apply (TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> Type) (MapAccumLSym0 x6989586621679472607 acc6989586621679472606 y6989586621679472608) l # | |
data MapAccumLSym1 (l :: TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (l :: TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) -> TyFun acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) -> *) (MapAccumLSym1 x6989586621679472607 acc6989586621679472606 y6989586621679472608) # | |
| type Apply acc6989586621679472606 (TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> Type) (MapAccumLSym1 x6989586621679472607 acc6989586621679472606 y6989586621679472608 l1) l2 # | |
data MapAccumLSym2 (l :: TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (l :: acc6989586621679472606) (l :: TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608])) #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) -> acc6989586621679472606 -> TyFun [x6989586621679472607] (acc6989586621679472606, [y6989586621679472608]) -> *) (MapAccumLSym2 x6989586621679472607 acc6989586621679472606 y6989586621679472608) # | |
| type Apply [x] (acc, [y]) (MapAccumLSym2 x acc y l1 l2) l3 # | |
type MapAccumLSym3 (t :: TyFun acc6989586621679472606 (TyFun x6989586621679472607 (acc6989586621679472606, y6989586621679472608) -> Type) -> Type) (t :: acc6989586621679472606) (t :: [x6989586621679472607]) = MapAccumL t t t #
data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> Type) -> *) (MapAccumRSym0 x6989586621679472604 acc6989586621679472603 y6989586621679472605) # | |
| type Apply (TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> Type) (MapAccumRSym0 x6989586621679472604 acc6989586621679472603 y6989586621679472605) l # | |
data MapAccumRSym1 (l :: TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (l :: TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) -> TyFun acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) -> *) (MapAccumRSym1 x6989586621679472604 acc6989586621679472603 y6989586621679472605) # | |
| type Apply acc6989586621679472603 (TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> Type) (MapAccumRSym1 x6989586621679472604 acc6989586621679472603 y6989586621679472605 l1) l2 # | |
data MapAccumRSym2 (l :: TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (l :: acc6989586621679472603) (l :: TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605])) #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) -> acc6989586621679472603 -> TyFun [x6989586621679472604] (acc6989586621679472603, [y6989586621679472605]) -> *) (MapAccumRSym2 x6989586621679472604 acc6989586621679472603 y6989586621679472605) # | |
| type Apply [x] (acc, [y]) (MapAccumRSym2 x acc y l1 l2) l3 # | |
type MapAccumRSym3 (t :: TyFun acc6989586621679472603 (TyFun x6989586621679472604 (acc6989586621679472603, y6989586621679472605) -> Type) -> Type) (t :: acc6989586621679472603) (t :: [x6989586621679472604]) = MapAccumR t t t #
data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (TyFun b6989586621679472601 [a6989586621679472602] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (TyFun b6989586621679472601 [a6989586621679472602] -> Type) -> *) (UnfoldrSym0 b6989586621679472601 a6989586621679472602) # | |
| type Apply (TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (TyFun b6989586621679472601 [a6989586621679472602] -> Type) (UnfoldrSym0 b6989586621679472601 a6989586621679472602) l # | |
data UnfoldrSym1 (l :: TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (l :: TyFun b6989586621679472601 [a6989586621679472602]) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) -> TyFun b6989586621679472601 [a6989586621679472602] -> *) (UnfoldrSym1 b6989586621679472601 a6989586621679472602) # | |
| type Apply b [a] (UnfoldrSym1 b a l1) l2 # | |
type UnfoldrSym2 (t :: TyFun b6989586621679472601 (Maybe (a6989586621679472602, b6989586621679472601)) -> Type) (t :: b6989586621679472601) = Unfoldr t t #
data IsPrefixOfSym0 (l :: TyFun [a6989586621679472598] (TyFun [a6989586621679472598] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472598] (TyFun [a6989586621679472598] Bool -> Type) -> *) (IsPrefixOfSym0 a6989586621679472598) # | |
| type Apply [a6989586621679472598] (TyFun [a6989586621679472598] Bool -> Type) (IsPrefixOfSym0 a6989586621679472598) l # | |
data IsPrefixOfSym1 (l :: [a6989586621679472598]) (l :: TyFun [a6989586621679472598] Bool) #
Instances
| SuppressUnusedWarnings ([a6989586621679472598] -> TyFun [a6989586621679472598] Bool -> *) (IsPrefixOfSym1 a6989586621679472598) # | |
| type Apply [a] Bool (IsPrefixOfSym1 a l1) l2 # | |
type IsPrefixOfSym2 (t :: [a6989586621679472598]) (t :: [a6989586621679472598]) = IsPrefixOf t t #
data IsSuffixOfSym0 (l :: TyFun [a6989586621679472597] (TyFun [a6989586621679472597] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472597] (TyFun [a6989586621679472597] Bool -> Type) -> *) (IsSuffixOfSym0 a6989586621679472597) # | |
| type Apply [a6989586621679472597] (TyFun [a6989586621679472597] Bool -> Type) (IsSuffixOfSym0 a6989586621679472597) l # | |
data IsSuffixOfSym1 (l :: [a6989586621679472597]) (l :: TyFun [a6989586621679472597] Bool) #
Instances
| SuppressUnusedWarnings ([a6989586621679472597] -> TyFun [a6989586621679472597] Bool -> *) (IsSuffixOfSym1 a6989586621679472597) # | |
| type Apply [a] Bool (IsSuffixOfSym1 a l1) l2 # | |
type IsSuffixOfSym2 (t :: [a6989586621679472597]) (t :: [a6989586621679472597]) = IsSuffixOf t t #
data IsInfixOfSym0 (l :: TyFun [a6989586621679472596] (TyFun [a6989586621679472596] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472596] (TyFun [a6989586621679472596] Bool -> Type) -> *) (IsInfixOfSym0 a6989586621679472596) # | |
| type Apply [a6989586621679472596] (TyFun [a6989586621679472596] Bool -> Type) (IsInfixOfSym0 a6989586621679472596) l # | |
data IsInfixOfSym1 (l :: [a6989586621679472596]) (l :: TyFun [a6989586621679472596] Bool) #
Instances
| SuppressUnusedWarnings ([a6989586621679472596] -> TyFun [a6989586621679472596] Bool -> *) (IsInfixOfSym1 a6989586621679472596) # | |
| type Apply [a] Bool (IsInfixOfSym1 a l1) l2 # | |
type IsInfixOfSym2 (t :: [a6989586621679472596]) (t :: [a6989586621679472596]) = IsInfixOf t t #
data NotElemSym0 (l :: TyFun a6989586621679472594 (TyFun [a6989586621679472594] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679472594 (TyFun [a6989586621679472594] Bool -> Type) -> *) (NotElemSym0 a6989586621679472594) # | |
| type Apply a6989586621679472594 (TyFun [a6989586621679472594] Bool -> Type) (NotElemSym0 a6989586621679472594) l # | |
data NotElemSym1 (l :: a6989586621679472594) (l :: TyFun [a6989586621679472594] Bool) #
Instances
| SuppressUnusedWarnings (a6989586621679472594 -> TyFun [a6989586621679472594] Bool -> *) (NotElemSym1 a6989586621679472594) # | |
| type Apply [a] Bool (NotElemSym1 a l1) l2 # | |
type NotElemSym2 (t :: a6989586621679472594) (t :: [a6989586621679472594]) = NotElem t t #
data ZipSym0 (l :: TyFun [a6989586621679472592] (TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472592] (TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)] -> Type) -> *) (ZipSym0 a6989586621679472592 b6989586621679472593) # | |
| type Apply [a6989586621679472592] (TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)] -> Type) (ZipSym0 a6989586621679472592 b6989586621679472593) l # | |
data ZipSym1 (l :: [a6989586621679472592]) (l :: TyFun [b6989586621679472593] [(a6989586621679472592, b6989586621679472593)]) #
data Zip3Sym0 (l :: TyFun [a6989586621679472589] (TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472589] (TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> Type) -> *) (Zip3Sym0 a6989586621679472589 b6989586621679472590 c6989586621679472591) # | |
| type Apply [a6989586621679472589] (TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> Type) (Zip3Sym0 a6989586621679472589 b6989586621679472590 c6989586621679472591) l # | |
data Zip3Sym1 (l :: [a6989586621679472589]) (l :: TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679472589] -> TyFun [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) -> *) (Zip3Sym1 a6989586621679472589 b6989586621679472590 c6989586621679472591) # | |
| type Apply [b6989586621679472590] (TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> Type) (Zip3Sym1 a6989586621679472589 b6989586621679472590 c6989586621679472591 l1) l2 # | |
data Zip3Sym2 (l :: [a6989586621679472589]) (l :: [b6989586621679472590]) (l :: TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)]) #
Instances
| SuppressUnusedWarnings ([a6989586621679472589] -> [b6989586621679472590] -> TyFun [c6989586621679472591] [(a6989586621679472589, b6989586621679472590, c6989586621679472591)] -> *) (Zip3Sym2 a6989586621679472589 b6989586621679472590 c6989586621679472591) # | |
| type Apply [c] [(a, b, c)] (Zip3Sym2 a b c l1 l2) l3 # | |
type Zip3Sym3 (t :: [a6989586621679472589]) (t :: [b6989586621679472590]) (t :: [c6989586621679472591]) = Zip3 t t t #
data ZipWithSym0 (l :: TyFun (TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> Type) -> *) (ZipWithSym0 a6989586621679472586 b6989586621679472587 c6989586621679472588) # | |
| type Apply (TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> Type) (ZipWithSym0 a6989586621679472586 b6989586621679472587 c6989586621679472588) l # | |
data ZipWithSym1 (l :: TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (l :: TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) -> TyFun [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) -> *) (ZipWithSym1 a6989586621679472586 b6989586621679472587 c6989586621679472588) # | |
| type Apply [a6989586621679472586] (TyFun [b6989586621679472587] [c6989586621679472588] -> Type) (ZipWithSym1 a6989586621679472586 b6989586621679472587 c6989586621679472588 l1) l2 # | |
data ZipWithSym2 (l :: TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (l :: [a6989586621679472586]) (l :: TyFun [b6989586621679472587] [c6989586621679472588]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) -> [a6989586621679472586] -> TyFun [b6989586621679472587] [c6989586621679472588] -> *) (ZipWithSym2 a6989586621679472586 b6989586621679472587 c6989586621679472588) # | |
| type Apply [b] [c] (ZipWithSym2 a b c l1 l2) l3 # | |
type ZipWithSym3 (t :: TyFun a6989586621679472586 (TyFun b6989586621679472587 c6989586621679472588 -> Type) -> Type) (t :: [a6989586621679472586]) (t :: [b6989586621679472587]) = ZipWith t t t #
data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> Type) -> *) (ZipWith3Sym0 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) # | |
| type Apply (TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> Type) (ZipWith3Sym0 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) l # | |
data ZipWith3Sym1 (l :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) -> TyFun [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) -> *) (ZipWith3Sym1 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) # | |
| type Apply [a6989586621679472582] (TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> Type) (ZipWith3Sym1 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585 l1) l2 # | |
data ZipWith3Sym2 (l :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (l :: [a6989586621679472582]) (l :: TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) -> [a6989586621679472582] -> TyFun [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) -> *) (ZipWith3Sym2 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) # | |
| type Apply [b6989586621679472583] (TyFun [c6989586621679472584] [d6989586621679472585] -> Type) (ZipWith3Sym2 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585 l1 l2) l3 # | |
data ZipWith3Sym3 (l :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (l :: [a6989586621679472582]) (l :: [b6989586621679472583]) (l :: TyFun [c6989586621679472584] [d6989586621679472585]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) -> [a6989586621679472582] -> [b6989586621679472583] -> TyFun [c6989586621679472584] [d6989586621679472585] -> *) (ZipWith3Sym3 a6989586621679472582 b6989586621679472583 c6989586621679472584 d6989586621679472585) # | |
| type Apply [c] [d] (ZipWith3Sym3 a b c d l1 l2 l3) l4 # | |
type ZipWith3Sym4 (t :: TyFun a6989586621679472582 (TyFun b6989586621679472583 (TyFun c6989586621679472584 d6989586621679472585 -> Type) -> Type) -> Type) (t :: [a6989586621679472582]) (t :: [b6989586621679472583]) (t :: [c6989586621679472584]) = ZipWith3 t t t t #
data UnzipSym0 (l :: TyFun [(a6989586621679472580, b6989586621679472581)] ([a6989586621679472580], [b6989586621679472581])) #
data Unzip3Sym0 (l :: TyFun [(a6989586621679472577, b6989586621679472578, c6989586621679472579)] ([a6989586621679472577], [b6989586621679472578], [c6989586621679472579])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679472577, b6989586621679472578, c6989586621679472579)] ([a6989586621679472577], [b6989586621679472578], [c6989586621679472579]) -> *) (Unzip3Sym0 a6989586621679472577 b6989586621679472578 c6989586621679472579) # | |
| type Apply [(a, b, c)] ([a], [b], [c]) (Unzip3Sym0 a b c) l # | |
type Unzip3Sym1 (t :: [(a6989586621679472577, b6989586621679472578, c6989586621679472579)]) = Unzip3 t #
data Unzip4Sym0 (l :: TyFun [(a6989586621679472573, b6989586621679472574, c6989586621679472575, d6989586621679472576)] ([a6989586621679472573], [b6989586621679472574], [c6989586621679472575], [d6989586621679472576])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679472573, b6989586621679472574, c6989586621679472575, d6989586621679472576)] ([a6989586621679472573], [b6989586621679472574], [c6989586621679472575], [d6989586621679472576]) -> *) (Unzip4Sym0 a6989586621679472573 b6989586621679472574 c6989586621679472575 d6989586621679472576) # | |
| type Apply [(a, b, c, d)] ([a], [b], [c], [d]) (Unzip4Sym0 a b c d) l # | |
type Unzip4Sym1 (t :: [(a6989586621679472573, b6989586621679472574, c6989586621679472575, d6989586621679472576)]) = Unzip4 t #
data Unzip5Sym0 (l :: TyFun [(a6989586621679472568, b6989586621679472569, c6989586621679472570, d6989586621679472571, e6989586621679472572)] ([a6989586621679472568], [b6989586621679472569], [c6989586621679472570], [d6989586621679472571], [e6989586621679472572])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679472568, b6989586621679472569, c6989586621679472570, d6989586621679472571, e6989586621679472572)] ([a6989586621679472568], [b6989586621679472569], [c6989586621679472570], [d6989586621679472571], [e6989586621679472572]) -> *) (Unzip5Sym0 a6989586621679472568 b6989586621679472569 c6989586621679472570 d6989586621679472571 e6989586621679472572) # | |
| type Apply [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) (Unzip5Sym0 a b c d e) l # | |
type Unzip5Sym1 (t :: [(a6989586621679472568, b6989586621679472569, c6989586621679472570, d6989586621679472571, e6989586621679472572)]) = Unzip5 t #
data Unzip6Sym0 (l :: TyFun [(a6989586621679472562, b6989586621679472563, c6989586621679472564, d6989586621679472565, e6989586621679472566, f6989586621679472567)] ([a6989586621679472562], [b6989586621679472563], [c6989586621679472564], [d6989586621679472565], [e6989586621679472566], [f6989586621679472567])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679472562, b6989586621679472563, c6989586621679472564, d6989586621679472565, e6989586621679472566, f6989586621679472567)] ([a6989586621679472562], [b6989586621679472563], [c6989586621679472564], [d6989586621679472565], [e6989586621679472566], [f6989586621679472567]) -> *) (Unzip6Sym0 a6989586621679472562 b6989586621679472563 c6989586621679472564 d6989586621679472565 e6989586621679472566 f6989586621679472567) # | |
| type Apply [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) (Unzip6Sym0 a b c d e f) l # | |
type Unzip6Sym1 (t :: [(a6989586621679472562, b6989586621679472563, c6989586621679472564, d6989586621679472565, e6989586621679472566, f6989586621679472567)]) = Unzip6 t #
data Unzip7Sym0 (l :: TyFun [(a6989586621679472555, b6989586621679472556, c6989586621679472557, d6989586621679472558, e6989586621679472559, f6989586621679472560, g6989586621679472561)] ([a6989586621679472555], [b6989586621679472556], [c6989586621679472557], [d6989586621679472558], [e6989586621679472559], [f6989586621679472560], [g6989586621679472561])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679472555, b6989586621679472556, c6989586621679472557, d6989586621679472558, e6989586621679472559, f6989586621679472560, g6989586621679472561)] ([a6989586621679472555], [b6989586621679472556], [c6989586621679472557], [d6989586621679472558], [e6989586621679472559], [f6989586621679472560], [g6989586621679472561]) -> *) (Unzip7Sym0 a6989586621679472555 b6989586621679472556 c6989586621679472557 d6989586621679472558 e6989586621679472559 f6989586621679472560 g6989586621679472561) # | |
| type Apply [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) (Unzip7Sym0 a b c d e f g) l # | |
type Unzip7Sym1 (t :: [(a6989586621679472555, b6989586621679472556, c6989586621679472557, d6989586621679472558, e6989586621679472559, f6989586621679472560, g6989586621679472561)]) = Unzip7 t #
data DeleteSym0 (l :: TyFun a6989586621679472554 (TyFun [a6989586621679472554] [a6989586621679472554] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679472554 (TyFun [a6989586621679472554] [a6989586621679472554] -> Type) -> *) (DeleteSym0 a6989586621679472554) # | |
| type Apply a6989586621679472554 (TyFun [a6989586621679472554] [a6989586621679472554] -> Type) (DeleteSym0 a6989586621679472554) l # | |
data DeleteSym1 (l :: a6989586621679472554) (l :: TyFun [a6989586621679472554] [a6989586621679472554]) #
Instances
| SuppressUnusedWarnings (a6989586621679472554 -> TyFun [a6989586621679472554] [a6989586621679472554] -> *) (DeleteSym1 a6989586621679472554) # | |
| type Apply [a] [a] (DeleteSym1 a l1) l2 # | |
type DeleteSym2 (t :: a6989586621679472554) (t :: [a6989586621679472554]) = Delete t t #
data (:\\$) (l :: TyFun [a6989586621679472553] (TyFun [a6989586621679472553] [a6989586621679472553] -> Type)) #
data (l :: [a6989586621679472553]) :\\$$ (l :: TyFun [a6989586621679472553] [a6989586621679472553]) #
data IntersectSym0 (l :: TyFun [a6989586621679472540] (TyFun [a6989586621679472540] [a6989586621679472540] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472540] (TyFun [a6989586621679472540] [a6989586621679472540] -> Type) -> *) (IntersectSym0 a6989586621679472540) # | |
| type Apply [a6989586621679472540] (TyFun [a6989586621679472540] [a6989586621679472540] -> Type) (IntersectSym0 a6989586621679472540) l # | |
data IntersectSym1 (l :: [a6989586621679472540]) (l :: TyFun [a6989586621679472540] [a6989586621679472540]) #
Instances
| SuppressUnusedWarnings ([a6989586621679472540] -> TyFun [a6989586621679472540] [a6989586621679472540] -> *) (IntersectSym1 a6989586621679472540) # | |
| type Apply [a] [a] (IntersectSym1 a l1) l2 # | |
type IntersectSym2 (t :: [a6989586621679472540]) (t :: [a6989586621679472540]) = Intersect t t #
data InsertSym0 (l :: TyFun a6989586621679472527 (TyFun [a6989586621679472527] [a6989586621679472527] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679472527 (TyFun [a6989586621679472527] [a6989586621679472527] -> Type) -> *) (InsertSym0 a6989586621679472527) # | |
| type Apply a6989586621679472527 (TyFun [a6989586621679472527] [a6989586621679472527] -> Type) (InsertSym0 a6989586621679472527) l # | |
data InsertSym1 (l :: a6989586621679472527) (l :: TyFun [a6989586621679472527] [a6989586621679472527]) #
Instances
| SuppressUnusedWarnings (a6989586621679472527 -> TyFun [a6989586621679472527] [a6989586621679472527] -> *) (InsertSym1 a6989586621679472527) # | |
| type Apply [a] [a] (InsertSym1 a l1) l2 # | |
type InsertSym2 (t :: a6989586621679472527) (t :: [a6989586621679472527]) = Insert t t #
data DeleteBySym0 (l :: TyFun (TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (TyFun a6989586621679472552 (TyFun [a6989586621679472552] [a6989586621679472552] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (TyFun a6989586621679472552 (TyFun [a6989586621679472552] [a6989586621679472552] -> Type) -> Type) -> *) (DeleteBySym0 a6989586621679472552) # | |
| type Apply (TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (TyFun a6989586621679472552 (TyFun [a6989586621679472552] [a6989586621679472552] -> Type) -> Type) (DeleteBySym0 a6989586621679472552) l # | |
data DeleteBySym1 (l :: TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (l :: TyFun a6989586621679472552 (TyFun [a6989586621679472552] [a6989586621679472552] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) -> TyFun a6989586621679472552 (TyFun [a6989586621679472552] [a6989586621679472552] -> Type) -> *) (DeleteBySym1 a6989586621679472552) # | |
| type Apply a6989586621679472552 (TyFun [a6989586621679472552] [a6989586621679472552] -> Type) (DeleteBySym1 a6989586621679472552 l1) l2 # | |
data DeleteBySym2 (l :: TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (l :: a6989586621679472552) (l :: TyFun [a6989586621679472552] [a6989586621679472552]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) -> a6989586621679472552 -> TyFun [a6989586621679472552] [a6989586621679472552] -> *) (DeleteBySym2 a6989586621679472552) # | |
| type Apply [a] [a] (DeleteBySym2 a l1 l2) l3 # | |
type DeleteBySym3 (t :: TyFun a6989586621679472552 (TyFun a6989586621679472552 Bool -> Type) -> Type) (t :: a6989586621679472552) (t :: [a6989586621679472552]) = DeleteBy t t t #
data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (TyFun [a6989586621679472551] (TyFun [a6989586621679472551] [a6989586621679472551] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (TyFun [a6989586621679472551] (TyFun [a6989586621679472551] [a6989586621679472551] -> Type) -> Type) -> *) (DeleteFirstsBySym0 a6989586621679472551) # | |
| type Apply (TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (TyFun [a6989586621679472551] (TyFun [a6989586621679472551] [a6989586621679472551] -> Type) -> Type) (DeleteFirstsBySym0 a6989586621679472551) l # | |
data DeleteFirstsBySym1 (l :: TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472551] (TyFun [a6989586621679472551] [a6989586621679472551] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) -> TyFun [a6989586621679472551] (TyFun [a6989586621679472551] [a6989586621679472551] -> Type) -> *) (DeleteFirstsBySym1 a6989586621679472551) # | |
| type Apply [a6989586621679472551] (TyFun [a6989586621679472551] [a6989586621679472551] -> Type) (DeleteFirstsBySym1 a6989586621679472551 l1) l2 # | |
data DeleteFirstsBySym2 (l :: TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (l :: [a6989586621679472551]) (l :: TyFun [a6989586621679472551] [a6989586621679472551]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) -> [a6989586621679472551] -> TyFun [a6989586621679472551] [a6989586621679472551] -> *) (DeleteFirstsBySym2 a6989586621679472551) # | |
| type Apply [a] [a] (DeleteFirstsBySym2 a l1 l2) l3 # | |
type DeleteFirstsBySym3 (t :: TyFun a6989586621679472551 (TyFun a6989586621679472551 Bool -> Type) -> Type) (t :: [a6989586621679472551]) (t :: [a6989586621679472551]) = DeleteFirstsBy t t t #
data IntersectBySym0 (l :: TyFun (TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) (TyFun [a6989586621679472539] (TyFun [a6989586621679472539] [a6989586621679472539] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) (TyFun [a6989586621679472539] (TyFun [a6989586621679472539] [a6989586621679472539] -> Type) -> Type) -> *) (IntersectBySym0 a6989586621679472539) # | |
| type Apply (TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) (TyFun [a6989586621679472539] (TyFun [a6989586621679472539] [a6989586621679472539] -> Type) -> Type) (IntersectBySym0 a6989586621679472539) l # | |
data IntersectBySym1 (l :: TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472539] (TyFun [a6989586621679472539] [a6989586621679472539] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) -> TyFun [a6989586621679472539] (TyFun [a6989586621679472539] [a6989586621679472539] -> Type) -> *) (IntersectBySym1 a6989586621679472539) # | |
| type Apply [a6989586621679472539] (TyFun [a6989586621679472539] [a6989586621679472539] -> Type) (IntersectBySym1 a6989586621679472539 l1) l2 # | |
data IntersectBySym2 (l :: TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) (l :: [a6989586621679472539]) (l :: TyFun [a6989586621679472539] [a6989586621679472539]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472539 (TyFun a6989586621679472539 Bool -> Type) -> Type) -> [a6989586621679472539] -> TyFun [a6989586621679472539] [a6989586621679472539] -> *) (IntersectBySym2 a6989586621679472539) # | |
| type Apply [a] [a] (IntersectBySym2 a l1 l2) l3 # | |
data SortBySym0 (l :: TyFun (TyFun a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) (TyFun [a6989586621679472550] [a6989586621679472550] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) (TyFun [a6989586621679472550] [a6989586621679472550] -> Type) -> *) (SortBySym0 a6989586621679472550) # | |
| type Apply (TyFun a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) (TyFun [a6989586621679472550] [a6989586621679472550] -> Type) (SortBySym0 a6989586621679472550) l # | |
data SortBySym1 (l :: TyFun a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679472550] [a6989586621679472550]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) -> TyFun [a6989586621679472550] [a6989586621679472550] -> *) (SortBySym1 a6989586621679472550) # | |
| type Apply [a] [a] (SortBySym1 a l1) l2 # | |
type SortBySym2 (t :: TyFun a6989586621679472550 (TyFun a6989586621679472550 Ordering -> Type) -> Type) (t :: [a6989586621679472550]) = SortBy t t #
data InsertBySym0 (l :: TyFun (TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (TyFun a6989586621679472549 (TyFun [a6989586621679472549] [a6989586621679472549] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (TyFun a6989586621679472549 (TyFun [a6989586621679472549] [a6989586621679472549] -> Type) -> Type) -> *) (InsertBySym0 a6989586621679472549) # | |
| type Apply (TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (TyFun a6989586621679472549 (TyFun [a6989586621679472549] [a6989586621679472549] -> Type) -> Type) (InsertBySym0 a6989586621679472549) l # | |
data InsertBySym1 (l :: TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (l :: TyFun a6989586621679472549 (TyFun [a6989586621679472549] [a6989586621679472549] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) -> TyFun a6989586621679472549 (TyFun [a6989586621679472549] [a6989586621679472549] -> Type) -> *) (InsertBySym1 a6989586621679472549) # | |
| type Apply a6989586621679472549 (TyFun [a6989586621679472549] [a6989586621679472549] -> Type) (InsertBySym1 a6989586621679472549 l1) l2 # | |
data InsertBySym2 (l :: TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (l :: a6989586621679472549) (l :: TyFun [a6989586621679472549] [a6989586621679472549]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) -> a6989586621679472549 -> TyFun [a6989586621679472549] [a6989586621679472549] -> *) (InsertBySym2 a6989586621679472549) # | |
| type Apply [a] [a] (InsertBySym2 a l1 l2) l3 # | |
type InsertBySym3 (t :: TyFun a6989586621679472549 (TyFun a6989586621679472549 Ordering -> Type) -> Type) (t :: a6989586621679472549) (t :: [a6989586621679472549]) = InsertBy t t t #
data MaximumBySym0 (l :: TyFun (TyFun a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) (TyFun [a6989586621679472548] a6989586621679472548 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) (TyFun [a6989586621679472548] a6989586621679472548 -> Type) -> *) (MaximumBySym0 a6989586621679472548) # | |
| type Apply (TyFun a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) (TyFun [a6989586621679472548] a6989586621679472548 -> Type) (MaximumBySym0 a6989586621679472548) l # | |
data MaximumBySym1 (l :: TyFun a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679472548] a6989586621679472548) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) -> TyFun [a6989586621679472548] a6989586621679472548 -> *) (MaximumBySym1 a6989586621679472548) # | |
| type Apply [a] a (MaximumBySym1 a l1) l2 # | |
type MaximumBySym2 (t :: TyFun a6989586621679472548 (TyFun a6989586621679472548 Ordering -> Type) -> Type) (t :: [a6989586621679472548]) = MaximumBy t t #
data MinimumBySym0 (l :: TyFun (TyFun a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) (TyFun [a6989586621679472547] a6989586621679472547 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) (TyFun [a6989586621679472547] a6989586621679472547 -> Type) -> *) (MinimumBySym0 a6989586621679472547) # | |
| type Apply (TyFun a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) (TyFun [a6989586621679472547] a6989586621679472547 -> Type) (MinimumBySym0 a6989586621679472547) l # | |
data MinimumBySym1 (l :: TyFun a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679472547] a6989586621679472547) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) -> TyFun [a6989586621679472547] a6989586621679472547 -> *) (MinimumBySym1 a6989586621679472547) # | |
| type Apply [a] a (MinimumBySym1 a l1) l2 # | |
type MinimumBySym2 (t :: TyFun a6989586621679472547 (TyFun a6989586621679472547 Ordering -> Type) -> Type) (t :: [a6989586621679472547]) = MinimumBy t t #
data LengthSym0 (l :: TyFun [a6989586621679472518] Nat) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472518] Nat -> *) (LengthSym0 a6989586621679472518) # | |
| type Apply [a] Nat (LengthSym0 a) l # | |
type LengthSym1 (t :: [a6989586621679472518]) = Length t #
data ProductSym0 (l :: TyFun [a6989586621679472519] a6989586621679472519) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472519] a6989586621679472519 -> *) (ProductSym0 a6989586621679472519) # | |
| type Apply [a] a (ProductSym0 a) l # | |
type ProductSym1 (t :: [a6989586621679472519]) = Product t #
data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679472517 [a6989586621679472517] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun Nat (TyFun a6989586621679472517 [a6989586621679472517] -> Type) -> *) (ReplicateSym0 a6989586621679472517) # | |
| type Apply Nat (TyFun a6989586621679472517 [a6989586621679472517] -> Type) (ReplicateSym0 a6989586621679472517) l # | |
data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679472517 [a6989586621679472517]) #
Instances
| SuppressUnusedWarnings (Nat -> TyFun a6989586621679472517 [a6989586621679472517] -> *) (ReplicateSym1 a6989586621679472517) # | |
| type Apply a [a] (ReplicateSym1 a l1) l2 # | |
type ReplicateSym2 (t :: Nat) (t :: a6989586621679472517) = Replicate t t #
data TransposeSym0 (l :: TyFun [[a6989586621679472516]] [[a6989586621679472516]]) #
Instances
| SuppressUnusedWarnings (TyFun [[a6989586621679472516]] [[a6989586621679472516]] -> *) (TransposeSym0 a6989586621679472516) # | |
| type Apply [[a]] [[a]] (TransposeSym0 a) l # | |
type TransposeSym1 (t :: [[a6989586621679472516]]) = Transpose t #
data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679472531] ([a6989586621679472531], [a6989586621679472531]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun Nat (TyFun [a6989586621679472531] ([a6989586621679472531], [a6989586621679472531]) -> Type) -> *) (SplitAtSym0 a6989586621679472531) # | |
| type Apply Nat (TyFun [a6989586621679472531] ([a6989586621679472531], [a6989586621679472531]) -> Type) (SplitAtSym0 a6989586621679472531) l # | |
data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679472531] ([a6989586621679472531], [a6989586621679472531])) #
Instances
| SuppressUnusedWarnings (Nat -> TyFun [a6989586621679472531] ([a6989586621679472531], [a6989586621679472531]) -> *) (SplitAtSym1 a6989586621679472531) # | |
| type Apply [a] ([a], [a]) (SplitAtSym1 a l1) l2 # | |
type SplitAtSym2 (t :: Nat) (t :: [a6989586621679472531]) = SplitAt t t #
data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679472538 Bool -> Type) (TyFun [a6989586621679472538] [a6989586621679472538] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472538 Bool -> Type) (TyFun [a6989586621679472538] [a6989586621679472538] -> Type) -> *) (TakeWhileSym0 a6989586621679472538) # | |
| type Apply (TyFun a6989586621679472538 Bool -> Type) (TyFun [a6989586621679472538] [a6989586621679472538] -> Type) (TakeWhileSym0 a6989586621679472538) l # | |
data TakeWhileSym1 (l :: TyFun a6989586621679472538 Bool -> Type) (l :: TyFun [a6989586621679472538] [a6989586621679472538]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472538 Bool -> Type) -> TyFun [a6989586621679472538] [a6989586621679472538] -> *) (TakeWhileSym1 a6989586621679472538) # | |
| type Apply [a] [a] (TakeWhileSym1 a l1) l2 # | |
type TakeWhileSym2 (t :: TyFun a6989586621679472538 Bool -> Type) (t :: [a6989586621679472538]) = TakeWhile t t #
data DropWhileSym0 (l :: TyFun (TyFun a6989586621679472537 Bool -> Type) (TyFun [a6989586621679472537] [a6989586621679472537] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472537 Bool -> Type) (TyFun [a6989586621679472537] [a6989586621679472537] -> Type) -> *) (DropWhileSym0 a6989586621679472537) # | |
| type Apply (TyFun a6989586621679472537 Bool -> Type) (TyFun [a6989586621679472537] [a6989586621679472537] -> Type) (DropWhileSym0 a6989586621679472537) l # | |
data DropWhileSym1 (l :: TyFun a6989586621679472537 Bool -> Type) (l :: TyFun [a6989586621679472537] [a6989586621679472537]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472537 Bool -> Type) -> TyFun [a6989586621679472537] [a6989586621679472537] -> *) (DropWhileSym1 a6989586621679472537) # | |
| type Apply [a] [a] (DropWhileSym1 a l1) l2 # | |
type DropWhileSym2 (t :: TyFun a6989586621679472537 Bool -> Type) (t :: [a6989586621679472537]) = DropWhile t t #
data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679472536 Bool -> Type) (TyFun [a6989586621679472536] [a6989586621679472536] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472536 Bool -> Type) (TyFun [a6989586621679472536] [a6989586621679472536] -> Type) -> *) (DropWhileEndSym0 a6989586621679472536) # | |
| type Apply (TyFun a6989586621679472536 Bool -> Type) (TyFun [a6989586621679472536] [a6989586621679472536] -> Type) (DropWhileEndSym0 a6989586621679472536) l # | |
data DropWhileEndSym1 (l :: TyFun a6989586621679472536 Bool -> Type) (l :: TyFun [a6989586621679472536] [a6989586621679472536]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472536 Bool -> Type) -> TyFun [a6989586621679472536] [a6989586621679472536] -> *) (DropWhileEndSym1 a6989586621679472536) # | |
| type Apply [a] [a] (DropWhileEndSym1 a l1) l2 # | |
type DropWhileEndSym2 (t :: TyFun a6989586621679472536 Bool -> Type) (t :: [a6989586621679472536]) = DropWhileEnd t t #
data SpanSym0 (l :: TyFun (TyFun a6989586621679472535 Bool -> Type) (TyFun [a6989586621679472535] ([a6989586621679472535], [a6989586621679472535]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472535 Bool -> Type) (TyFun [a6989586621679472535] ([a6989586621679472535], [a6989586621679472535]) -> Type) -> *) (SpanSym0 a6989586621679472535) # | |
| type Apply (TyFun a6989586621679472535 Bool -> Type) (TyFun [a6989586621679472535] ([a6989586621679472535], [a6989586621679472535]) -> Type) (SpanSym0 a6989586621679472535) l # | |
data SpanSym1 (l :: TyFun a6989586621679472535 Bool -> Type) (l :: TyFun [a6989586621679472535] ([a6989586621679472535], [a6989586621679472535])) #
type SpanSym2 (t :: TyFun a6989586621679472535 Bool -> Type) (t :: [a6989586621679472535]) = Span t t #
data BreakSym0 (l :: TyFun (TyFun a6989586621679472534 Bool -> Type) (TyFun [a6989586621679472534] ([a6989586621679472534], [a6989586621679472534]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472534 Bool -> Type) (TyFun [a6989586621679472534] ([a6989586621679472534], [a6989586621679472534]) -> Type) -> *) (BreakSym0 a6989586621679472534) # | |
| type Apply (TyFun a6989586621679472534 Bool -> Type) (TyFun [a6989586621679472534] ([a6989586621679472534], [a6989586621679472534]) -> Type) (BreakSym0 a6989586621679472534) l # | |
data BreakSym1 (l :: TyFun a6989586621679472534 Bool -> Type) (l :: TyFun [a6989586621679472534] ([a6989586621679472534], [a6989586621679472534])) #
type BreakSym2 (t :: TyFun a6989586621679472534 Bool -> Type) (t :: [a6989586621679472534]) = Break t t #
data StripPrefixSym0 (l :: TyFun [a6989586621679901288] (TyFun [a6989586621679901288] (Maybe [a6989586621679901288]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679901288] (TyFun [a6989586621679901288] (Maybe [a6989586621679901288]) -> Type) -> *) (StripPrefixSym0 a6989586621679901288) # | |
| type Apply [a6989586621679901288] (TyFun [a6989586621679901288] (Maybe [a6989586621679901288]) -> Type) (StripPrefixSym0 a6989586621679901288) l # | |
data StripPrefixSym1 (l :: [a6989586621679901288]) (l :: TyFun [a6989586621679901288] (Maybe [a6989586621679901288])) #
Instances
| SuppressUnusedWarnings ([a6989586621679901288] -> TyFun [a6989586621679901288] (Maybe [a6989586621679901288]) -> *) (StripPrefixSym1 a6989586621679901288) # | |
| type Apply [a] (Maybe [a]) (StripPrefixSym1 a l1) l2 # | |
type StripPrefixSym2 (t :: [a6989586621679901288]) (t :: [a6989586621679901288]) = StripPrefix t t #
data MaximumSym0 (l :: TyFun [a6989586621679472529] a6989586621679472529) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472529] a6989586621679472529 -> *) (MaximumSym0 a6989586621679472529) # | |
| type Apply [a] a (MaximumSym0 a) l # | |
type MaximumSym1 (t :: [a6989586621679472529]) = Maximum t #
data MinimumSym0 (l :: TyFun [a6989586621679472528] a6989586621679472528) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472528] a6989586621679472528 -> *) (MinimumSym0 a6989586621679472528) # | |
| type Apply [a] a (MinimumSym0 a) l # | |
type MinimumSym1 (t :: [a6989586621679472528]) = Minimum t #
data GroupBySym0 (l :: TyFun (TyFun a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) (TyFun [a6989586621679472525] [[a6989586621679472525]] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) (TyFun [a6989586621679472525] [[a6989586621679472525]] -> Type) -> *) (GroupBySym0 a6989586621679472525) # | |
| type Apply (TyFun a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) (TyFun [a6989586621679472525] [[a6989586621679472525]] -> Type) (GroupBySym0 a6989586621679472525) l # | |
data GroupBySym1 (l :: TyFun a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472525] [[a6989586621679472525]]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) -> TyFun [a6989586621679472525] [[a6989586621679472525]] -> *) (GroupBySym1 a6989586621679472525) # | |
| type Apply [a] [[a]] (GroupBySym1 a l1) l2 # | |
type GroupBySym2 (t :: TyFun a6989586621679472525 (TyFun a6989586621679472525 Bool -> Type) -> Type) (t :: [a6989586621679472525]) = GroupBy t t #
data LookupSym0 (l :: TyFun a6989586621679472523 (TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679472523 (TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524) -> Type) -> *) (LookupSym0 a6989586621679472523 b6989586621679472524) # | |
| type Apply a6989586621679472523 (TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524) -> Type) (LookupSym0 a6989586621679472523 b6989586621679472524) l # | |
data LookupSym1 (l :: a6989586621679472523) (l :: TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524)) #
Instances
| SuppressUnusedWarnings (a6989586621679472523 -> TyFun [(a6989586621679472523, b6989586621679472524)] (Maybe b6989586621679472524) -> *) (LookupSym1 a6989586621679472523 b6989586621679472524) # | |
| type Apply [(a, b)] (Maybe b) (LookupSym1 a b l1) l2 # | |
type LookupSym2 (t :: a6989586621679472523) (t :: [(a6989586621679472523, b6989586621679472524)]) = Lookup t t #
data FindSym0 (l :: TyFun (TyFun a6989586621679472545 Bool -> Type) (TyFun [a6989586621679472545] (Maybe a6989586621679472545) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472545 Bool -> Type) (TyFun [a6989586621679472545] (Maybe a6989586621679472545) -> Type) -> *) (FindSym0 a6989586621679472545) # | |
| type Apply (TyFun a6989586621679472545 Bool -> Type) (TyFun [a6989586621679472545] (Maybe a6989586621679472545) -> Type) (FindSym0 a6989586621679472545) l # | |
data FindSym1 (l :: TyFun a6989586621679472545 Bool -> Type) (l :: TyFun [a6989586621679472545] (Maybe a6989586621679472545)) #
type FindSym2 (t :: TyFun a6989586621679472545 Bool -> Type) (t :: [a6989586621679472545]) = Find t t #
data FilterSym0 (l :: TyFun (TyFun a6989586621679472546 Bool -> Type) (TyFun [a6989586621679472546] [a6989586621679472546] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472546 Bool -> Type) (TyFun [a6989586621679472546] [a6989586621679472546] -> Type) -> *) (FilterSym0 a6989586621679472546) # | |
| type Apply (TyFun a6989586621679472546 Bool -> Type) (TyFun [a6989586621679472546] [a6989586621679472546] -> Type) (FilterSym0 a6989586621679472546) l # | |
data FilterSym1 (l :: TyFun a6989586621679472546 Bool -> Type) (l :: TyFun [a6989586621679472546] [a6989586621679472546]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472546 Bool -> Type) -> TyFun [a6989586621679472546] [a6989586621679472546] -> *) (FilterSym1 a6989586621679472546) # | |
| type Apply [a] [a] (FilterSym1 a l1) l2 # | |
type FilterSym2 (t :: TyFun a6989586621679472546 Bool -> Type) (t :: [a6989586621679472546]) = Filter t t #
data PartitionSym0 (l :: TyFun (TyFun a6989586621679472522 Bool -> Type) (TyFun [a6989586621679472522] ([a6989586621679472522], [a6989586621679472522]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472522 Bool -> Type) (TyFun [a6989586621679472522] ([a6989586621679472522], [a6989586621679472522]) -> Type) -> *) (PartitionSym0 a6989586621679472522) # | |
| type Apply (TyFun a6989586621679472522 Bool -> Type) (TyFun [a6989586621679472522] ([a6989586621679472522], [a6989586621679472522]) -> Type) (PartitionSym0 a6989586621679472522) l # | |
data PartitionSym1 (l :: TyFun a6989586621679472522 Bool -> Type) (l :: TyFun [a6989586621679472522] ([a6989586621679472522], [a6989586621679472522])) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472522 Bool -> Type) -> TyFun [a6989586621679472522] ([a6989586621679472522], [a6989586621679472522]) -> *) (PartitionSym1 a6989586621679472522) # | |
| type Apply [a] ([a], [a]) (PartitionSym1 a l1) l2 # | |
type PartitionSym2 (t :: TyFun a6989586621679472522 Bool -> Type) (t :: [a6989586621679472522]) = Partition t t #
data ElemIndexSym0 (l :: TyFun a6989586621679472544 (TyFun [a6989586621679472544] (Maybe Nat) -> Type)) #
data ElemIndexSym1 (l :: a6989586621679472544) (l :: TyFun [a6989586621679472544] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings (a6989586621679472544 -> TyFun [a6989586621679472544] (Maybe Nat) -> *) (ElemIndexSym1 a6989586621679472544) # | |
| type Apply [a] (Maybe Nat) (ElemIndexSym1 a l1) l2 # | |
type ElemIndexSym2 (t :: a6989586621679472544) (t :: [a6989586621679472544]) = ElemIndex t t #
data ElemIndicesSym0 (l :: TyFun a6989586621679472543 (TyFun [a6989586621679472543] [Nat] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679472543 (TyFun [a6989586621679472543] [Nat] -> Type) -> *) (ElemIndicesSym0 a6989586621679472543) # | |
| type Apply a6989586621679472543 (TyFun [a6989586621679472543] [Nat] -> Type) (ElemIndicesSym0 a6989586621679472543) l # | |
data ElemIndicesSym1 (l :: a6989586621679472543) (l :: TyFun [a6989586621679472543] [Nat]) #
Instances
| SuppressUnusedWarnings (a6989586621679472543 -> TyFun [a6989586621679472543] [Nat] -> *) (ElemIndicesSym1 a6989586621679472543) # | |
| type Apply [a] [Nat] (ElemIndicesSym1 a l1) l2 # | |
type ElemIndicesSym2 (t :: a6989586621679472543) (t :: [a6989586621679472543]) = ElemIndices t t #
data FindIndexSym0 (l :: TyFun (TyFun a6989586621679472542 Bool -> Type) (TyFun [a6989586621679472542] (Maybe Nat) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472542 Bool -> Type) (TyFun [a6989586621679472542] (Maybe Nat) -> Type) -> *) (FindIndexSym0 a6989586621679472542) # | |
| type Apply (TyFun a6989586621679472542 Bool -> Type) (TyFun [a6989586621679472542] (Maybe Nat) -> Type) (FindIndexSym0 a6989586621679472542) l # | |
data FindIndexSym1 (l :: TyFun a6989586621679472542 Bool -> Type) (l :: TyFun [a6989586621679472542] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472542 Bool -> Type) -> TyFun [a6989586621679472542] (Maybe Nat) -> *) (FindIndexSym1 a6989586621679472542) # | |
| type Apply [a] (Maybe Nat) (FindIndexSym1 a l1) l2 # | |
type FindIndexSym2 (t :: TyFun a6989586621679472542 Bool -> Type) (t :: [a6989586621679472542]) = FindIndex t t #
data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679472541 Bool -> Type) (TyFun [a6989586621679472541] [Nat] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472541 Bool -> Type) (TyFun [a6989586621679472541] [Nat] -> Type) -> *) (FindIndicesSym0 a6989586621679472541) # | |
| type Apply (TyFun a6989586621679472541 Bool -> Type) (TyFun [a6989586621679472541] [Nat] -> Type) (FindIndicesSym0 a6989586621679472541) l # | |
data FindIndicesSym1 (l :: TyFun a6989586621679472541 Bool -> Type) (l :: TyFun [a6989586621679472541] [Nat]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472541 Bool -> Type) -> TyFun [a6989586621679472541] [Nat] -> *) (FindIndicesSym1 a6989586621679472541) # | |
| type Apply [a] [Nat] (FindIndicesSym1 a l1) l2 # | |
type FindIndicesSym2 (t :: TyFun a6989586621679472541 Bool -> Type) (t :: [a6989586621679472541]) = FindIndices t t #
data Zip4Sym0 (l :: TyFun [a6989586621679901284] (TyFun [b6989586621679901285] (TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679901284] (TyFun [b6989586621679901285] (TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) -> Type) -> Type) -> *) (Zip4Sym0 a6989586621679901284 b6989586621679901285 c6989586621679901286 d6989586621679901287) # | |
| type Apply [a6989586621679901284] (TyFun [b6989586621679901285] (TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) -> Type) -> Type) (Zip4Sym0 a6989586621679901284 b6989586621679901285 c6989586621679901286 d6989586621679901287) l # | |
data Zip4Sym1 (l :: [a6989586621679901284]) (l :: TyFun [b6989586621679901285] (TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901284] -> TyFun [b6989586621679901285] (TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) -> Type) -> *) (Zip4Sym1 a6989586621679901284 b6989586621679901285 c6989586621679901286 d6989586621679901287) # | |
| type Apply [b6989586621679901285] (TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) -> Type) (Zip4Sym1 a6989586621679901284 b6989586621679901285 c6989586621679901286 d6989586621679901287 l1) l2 # | |
data Zip4Sym2 (l :: [a6989586621679901284]) (l :: [b6989586621679901285]) (l :: TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901284] -> [b6989586621679901285] -> TyFun [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) -> *) (Zip4Sym2 a6989586621679901284 b6989586621679901285 c6989586621679901286 d6989586621679901287) # | |
| type Apply [c6989586621679901286] (TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> Type) (Zip4Sym2 a6989586621679901284 b6989586621679901285 c6989586621679901286 d6989586621679901287 l1 l2) l3 # | |
data Zip4Sym3 (l :: [a6989586621679901284]) (l :: [b6989586621679901285]) (l :: [c6989586621679901286]) (l :: TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)]) #
Instances
| SuppressUnusedWarnings ([a6989586621679901284] -> [b6989586621679901285] -> [c6989586621679901286] -> TyFun [d6989586621679901287] [(a6989586621679901284, b6989586621679901285, c6989586621679901286, d6989586621679901287)] -> *) (Zip4Sym3 a6989586621679901284 b6989586621679901285 c6989586621679901286 d6989586621679901287) # | |
| type Apply [d] [(a, b, c, d)] (Zip4Sym3 a b c d l1 l2 l3) l4 # | |
type Zip4Sym4 (t :: [a6989586621679901284]) (t :: [b6989586621679901285]) (t :: [c6989586621679901286]) (t :: [d6989586621679901287]) = Zip4 t t t t #
data Zip5Sym0 (l :: TyFun [a6989586621679901279] (TyFun [b6989586621679901280] (TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679901279] (TyFun [b6989586621679901280] (TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip5Sym0 a6989586621679901279 b6989586621679901280 c6989586621679901281 d6989586621679901282 e6989586621679901283) # | |
| type Apply [a6989586621679901279] (TyFun [b6989586621679901280] (TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) -> Type) -> Type) (Zip5Sym0 a6989586621679901279 b6989586621679901280 c6989586621679901281 d6989586621679901282 e6989586621679901283) l # | |
data Zip5Sym1 (l :: [a6989586621679901279]) (l :: TyFun [b6989586621679901280] (TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901279] -> TyFun [b6989586621679901280] (TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) -> Type) -> *) (Zip5Sym1 a6989586621679901279 b6989586621679901280 c6989586621679901281 d6989586621679901282 e6989586621679901283) # | |
| type Apply [b6989586621679901280] (TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) -> Type) (Zip5Sym1 a6989586621679901279 b6989586621679901280 c6989586621679901281 d6989586621679901282 e6989586621679901283 l1) l2 # | |
data Zip5Sym2 (l :: [a6989586621679901279]) (l :: [b6989586621679901280]) (l :: TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901279] -> [b6989586621679901280] -> TyFun [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) -> *) (Zip5Sym2 a6989586621679901279 b6989586621679901280 c6989586621679901281 d6989586621679901282 e6989586621679901283) # | |
| type Apply [c6989586621679901281] (TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> Type) (Zip5Sym2 a6989586621679901279 b6989586621679901280 c6989586621679901281 d6989586621679901282 e6989586621679901283 l1 l2) l3 # | |
data Zip5Sym3 (l :: [a6989586621679901279]) (l :: [b6989586621679901280]) (l :: [c6989586621679901281]) (l :: TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901279] -> [b6989586621679901280] -> [c6989586621679901281] -> TyFun [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) -> *) (Zip5Sym3 a6989586621679901279 b6989586621679901280 c6989586621679901281 d6989586621679901282 e6989586621679901283) # | |
| type Apply [d6989586621679901282] (TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> Type) (Zip5Sym3 a6989586621679901279 b6989586621679901280 c6989586621679901281 d6989586621679901282 e6989586621679901283 l1 l2 l3) l4 # | |
data Zip5Sym4 (l :: [a6989586621679901279]) (l :: [b6989586621679901280]) (l :: [c6989586621679901281]) (l :: [d6989586621679901282]) (l :: TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)]) #
Instances
| SuppressUnusedWarnings ([a6989586621679901279] -> [b6989586621679901280] -> [c6989586621679901281] -> [d6989586621679901282] -> TyFun [e6989586621679901283] [(a6989586621679901279, b6989586621679901280, c6989586621679901281, d6989586621679901282, e6989586621679901283)] -> *) (Zip5Sym4 a6989586621679901279 b6989586621679901280 c6989586621679901281 d6989586621679901282 e6989586621679901283) # | |
| type Apply [e] [(a, b, c, d, e)] (Zip5Sym4 a b c d e l1 l2 l3 l4) l5 # | |
type Zip5Sym5 (t :: [a6989586621679901279]) (t :: [b6989586621679901280]) (t :: [c6989586621679901281]) (t :: [d6989586621679901282]) (t :: [e6989586621679901283]) = Zip5 t t t t t #
data Zip6Sym0 (l :: TyFun [a6989586621679901273] (TyFun [b6989586621679901274] (TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679901273] (TyFun [b6989586621679901274] (TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip6Sym0 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278) # | |
| type Apply [a6989586621679901273] (TyFun [b6989586621679901274] (TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) -> Type) -> Type) (Zip6Sym0 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278) l # | |
data Zip6Sym1 (l :: [a6989586621679901273]) (l :: TyFun [b6989586621679901274] (TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901273] -> TyFun [b6989586621679901274] (TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip6Sym1 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278) # | |
| type Apply [b6989586621679901274] (TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) -> Type) (Zip6Sym1 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278 l1) l2 # | |
data Zip6Sym2 (l :: [a6989586621679901273]) (l :: [b6989586621679901274]) (l :: TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901273] -> [b6989586621679901274] -> TyFun [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) -> *) (Zip6Sym2 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278) # | |
| type Apply [c6989586621679901275] (TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> Type) (Zip6Sym2 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278 l1 l2) l3 # | |
data Zip6Sym3 (l :: [a6989586621679901273]) (l :: [b6989586621679901274]) (l :: [c6989586621679901275]) (l :: TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901273] -> [b6989586621679901274] -> [c6989586621679901275] -> TyFun [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) -> *) (Zip6Sym3 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278) # | |
| type Apply [d6989586621679901276] (TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> Type) (Zip6Sym3 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278 l1 l2 l3) l4 # | |
data Zip6Sym4 (l :: [a6989586621679901273]) (l :: [b6989586621679901274]) (l :: [c6989586621679901275]) (l :: [d6989586621679901276]) (l :: TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901273] -> [b6989586621679901274] -> [c6989586621679901275] -> [d6989586621679901276] -> TyFun [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) -> *) (Zip6Sym4 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278) # | |
| type Apply [e6989586621679901277] (TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> Type) (Zip6Sym4 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278 l1 l2 l3 l4) l5 # | |
data Zip6Sym5 (l :: [a6989586621679901273]) (l :: [b6989586621679901274]) (l :: [c6989586621679901275]) (l :: [d6989586621679901276]) (l :: [e6989586621679901277]) (l :: TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)]) #
Instances
| SuppressUnusedWarnings ([a6989586621679901273] -> [b6989586621679901274] -> [c6989586621679901275] -> [d6989586621679901276] -> [e6989586621679901277] -> TyFun [f6989586621679901278] [(a6989586621679901273, b6989586621679901274, c6989586621679901275, d6989586621679901276, e6989586621679901277, f6989586621679901278)] -> *) (Zip6Sym5 a6989586621679901273 b6989586621679901274 c6989586621679901275 d6989586621679901276 e6989586621679901277 f6989586621679901278) # | |
| type Apply [f] [(a, b, c, d, e, f)] (Zip6Sym5 a b c d e f l1 l2 l3 l4 l5) l6 # | |
type Zip6Sym6 (t :: [a6989586621679901273]) (t :: [b6989586621679901274]) (t :: [c6989586621679901275]) (t :: [d6989586621679901276]) (t :: [e6989586621679901277]) (t :: [f6989586621679901278]) = Zip6 t t t t t t #
data Zip7Sym0 (l :: TyFun [a6989586621679901266] (TyFun [b6989586621679901267] (TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679901266] (TyFun [b6989586621679901267] (TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym0 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272) # | |
| type Apply [a6989586621679901266] (TyFun [b6989586621679901267] (TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (Zip7Sym0 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272) l # | |
data Zip7Sym1 (l :: [a6989586621679901266]) (l :: TyFun [b6989586621679901267] (TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901266] -> TyFun [b6989586621679901267] (TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym1 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272) # | |
| type Apply [b6989586621679901267] (TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) -> Type) (Zip7Sym1 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272 l1) l2 # | |
data Zip7Sym2 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901266] -> [b6989586621679901267] -> TyFun [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym2 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272) # | |
| type Apply [c6989586621679901268] (TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> Type) (Zip7Sym2 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272 l1 l2) l3 # | |
data Zip7Sym3 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: [c6989586621679901268]) (l :: TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901266] -> [b6989586621679901267] -> [c6989586621679901268] -> TyFun [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) -> *) (Zip7Sym3 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272) # | |
| type Apply [d6989586621679901269] (TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> Type) (Zip7Sym3 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272 l1 l2 l3) l4 # | |
data Zip7Sym4 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: [c6989586621679901268]) (l :: [d6989586621679901269]) (l :: TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901266] -> [b6989586621679901267] -> [c6989586621679901268] -> [d6989586621679901269] -> TyFun [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) -> *) (Zip7Sym4 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272) # | |
| type Apply [e6989586621679901270] (TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> Type) (Zip7Sym4 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272 l1 l2 l3 l4) l5 # | |
data Zip7Sym5 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: [c6989586621679901268]) (l :: [d6989586621679901269]) (l :: [e6989586621679901270]) (l :: TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679901266] -> [b6989586621679901267] -> [c6989586621679901268] -> [d6989586621679901269] -> [e6989586621679901270] -> TyFun [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) -> *) (Zip7Sym5 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272) # | |
| type Apply [f6989586621679901271] (TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> Type) (Zip7Sym5 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272 l1 l2 l3 l4 l5) l6 # | |
data Zip7Sym6 (l :: [a6989586621679901266]) (l :: [b6989586621679901267]) (l :: [c6989586621679901268]) (l :: [d6989586621679901269]) (l :: [e6989586621679901270]) (l :: [f6989586621679901271]) (l :: TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)]) #
Instances
| SuppressUnusedWarnings ([a6989586621679901266] -> [b6989586621679901267] -> [c6989586621679901268] -> [d6989586621679901269] -> [e6989586621679901270] -> [f6989586621679901271] -> TyFun [g6989586621679901272] [(a6989586621679901266, b6989586621679901267, c6989586621679901268, d6989586621679901269, e6989586621679901270, f6989586621679901271, g6989586621679901272)] -> *) (Zip7Sym6 a6989586621679901266 b6989586621679901267 c6989586621679901268 d6989586621679901269 e6989586621679901270 f6989586621679901271 g6989586621679901272) # | |
| type Apply [g] [(a, b, c, d, e, f, g)] (Zip7Sym6 a b c d e f g l1 l2 l3 l4 l5 l6) l7 # | |
type Zip7Sym7 (t :: [a6989586621679901266]) (t :: [b6989586621679901267]) (t :: [c6989586621679901268]) (t :: [d6989586621679901269]) (t :: [e6989586621679901270]) (t :: [f6989586621679901271]) (t :: [g6989586621679901272]) = Zip7 t t t t t t t #
data ZipWith4Sym0 (l :: TyFun (TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901261] (TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901261] (TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith4Sym0 a6989586621679901261 b6989586621679901262 c6989586621679901263 d6989586621679901264 e6989586621679901265) # | |
| type Apply (TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901261] (TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) -> Type) -> Type) (ZipWith4Sym0 a6989586621679901261 b6989586621679901262 c6989586621679901263 d6989586621679901264 e6989586621679901265) l # | |
data ZipWith4Sym1 (l :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679901261] (TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679901261] (TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) -> Type) -> *) (ZipWith4Sym1 a6989586621679901261 b6989586621679901262 c6989586621679901263 d6989586621679901264 e6989586621679901265) # | |
| type Apply [a6989586621679901261] (TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) -> Type) (ZipWith4Sym1 a6989586621679901261 b6989586621679901262 c6989586621679901263 d6989586621679901264 e6989586621679901265 l1) l2 # | |
data ZipWith4Sym2 (l :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901261]) (l :: TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901261] -> TyFun [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) -> *) (ZipWith4Sym2 a6989586621679901261 b6989586621679901262 c6989586621679901263 d6989586621679901264 e6989586621679901265) # | |
| type Apply [b6989586621679901262] (TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> Type) (ZipWith4Sym2 a6989586621679901261 b6989586621679901262 c6989586621679901263 d6989586621679901264 e6989586621679901265 l1 l2) l3 # | |
data ZipWith4Sym3 (l :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901261]) (l :: [b6989586621679901262]) (l :: TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901261] -> [b6989586621679901262] -> TyFun [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) -> *) (ZipWith4Sym3 a6989586621679901261 b6989586621679901262 c6989586621679901263 d6989586621679901264 e6989586621679901265) # | |
| type Apply [c6989586621679901263] (TyFun [d6989586621679901264] [e6989586621679901265] -> Type) (ZipWith4Sym3 a6989586621679901261 b6989586621679901262 c6989586621679901263 d6989586621679901264 e6989586621679901265 l1 l2 l3) l4 # | |
data ZipWith4Sym4 (l :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901261]) (l :: [b6989586621679901262]) (l :: [c6989586621679901263]) (l :: TyFun [d6989586621679901264] [e6989586621679901265]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901261] -> [b6989586621679901262] -> [c6989586621679901263] -> TyFun [d6989586621679901264] [e6989586621679901265] -> *) (ZipWith4Sym4 a6989586621679901261 b6989586621679901262 c6989586621679901263 d6989586621679901264 e6989586621679901265) # | |
| type Apply [d] [e] (ZipWith4Sym4 a b c d e l1 l2 l3 l4) l5 # | |
type ZipWith4Sym5 (t :: TyFun a6989586621679901261 (TyFun b6989586621679901262 (TyFun c6989586621679901263 (TyFun d6989586621679901264 e6989586621679901265 -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679901261]) (t :: [b6989586621679901262]) (t :: [c6989586621679901263]) (t :: [d6989586621679901264]) = ZipWith4 t t t t t #
data ZipWith5Sym0 (l :: TyFun (TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901255] (TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901255] (TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith5Sym0 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260) # | |
| type Apply (TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901255] (TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith5Sym0 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260) l # | |
data ZipWith5Sym1 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679901255] (TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679901255] (TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith5Sym1 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260) # | |
| type Apply [a6989586621679901255] (TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) -> Type) (ZipWith5Sym1 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260 l1) l2 # | |
data ZipWith5Sym2 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901255]) (l :: TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901255] -> TyFun [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) -> *) (ZipWith5Sym2 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260) # | |
| type Apply [b6989586621679901256] (TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> Type) (ZipWith5Sym2 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260 l1 l2) l3 # | |
data ZipWith5Sym3 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901255]) (l :: [b6989586621679901256]) (l :: TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901255] -> [b6989586621679901256] -> TyFun [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) -> *) (ZipWith5Sym3 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260) # | |
| type Apply [c6989586621679901257] (TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> Type) (ZipWith5Sym3 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260 l1 l2 l3) l4 # | |
data ZipWith5Sym4 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901255]) (l :: [b6989586621679901256]) (l :: [c6989586621679901257]) (l :: TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901255] -> [b6989586621679901256] -> [c6989586621679901257] -> TyFun [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) -> *) (ZipWith5Sym4 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260) # | |
| type Apply [d6989586621679901258] (TyFun [e6989586621679901259] [f6989586621679901260] -> Type) (ZipWith5Sym4 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260 l1 l2 l3 l4) l5 # | |
data ZipWith5Sym5 (l :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901255]) (l :: [b6989586621679901256]) (l :: [c6989586621679901257]) (l :: [d6989586621679901258]) (l :: TyFun [e6989586621679901259] [f6989586621679901260]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901255] -> [b6989586621679901256] -> [c6989586621679901257] -> [d6989586621679901258] -> TyFun [e6989586621679901259] [f6989586621679901260] -> *) (ZipWith5Sym5 a6989586621679901255 b6989586621679901256 c6989586621679901257 d6989586621679901258 e6989586621679901259 f6989586621679901260) # | |
| type Apply [e] [f] (ZipWith5Sym5 a b c d e f l1 l2 l3 l4 l5) l6 # | |
type ZipWith5Sym6 (t :: TyFun a6989586621679901255 (TyFun b6989586621679901256 (TyFun c6989586621679901257 (TyFun d6989586621679901258 (TyFun e6989586621679901259 f6989586621679901260 -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679901255]) (t :: [b6989586621679901256]) (t :: [c6989586621679901257]) (t :: [d6989586621679901258]) (t :: [e6989586621679901259]) = ZipWith5 t t t t t t #
data ZipWith6Sym0 (l :: TyFun (TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901248] (TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901248] (TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym0 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254) # | |
| type Apply (TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901248] (TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym0 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254) l # | |
data ZipWith6Sym1 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679901248] (TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679901248] (TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym1 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254) # | |
| type Apply [a6989586621679901248] (TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym1 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254 l1) l2 # | |
data ZipWith6Sym2 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901248] -> TyFun [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym2 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254) # | |
| type Apply [b6989586621679901249] (TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym2 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254 l1 l2) l3 # | |
data ZipWith6Sym3 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: [b6989586621679901249]) (l :: TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901248] -> [b6989586621679901249] -> TyFun [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) -> *) (ZipWith6Sym3 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254) # | |
| type Apply [c6989586621679901250] (TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> Type) (ZipWith6Sym3 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254 l1 l2 l3) l4 # | |
data ZipWith6Sym4 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: [b6989586621679901249]) (l :: [c6989586621679901250]) (l :: TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901248] -> [b6989586621679901249] -> [c6989586621679901250] -> TyFun [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) -> *) (ZipWith6Sym4 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254) # | |
| type Apply [d6989586621679901251] (TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> Type) (ZipWith6Sym4 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254 l1 l2 l3 l4) l5 # | |
data ZipWith6Sym5 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: [b6989586621679901249]) (l :: [c6989586621679901250]) (l :: [d6989586621679901251]) (l :: TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901248] -> [b6989586621679901249] -> [c6989586621679901250] -> [d6989586621679901251] -> TyFun [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) -> *) (ZipWith6Sym5 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254) # | |
| type Apply [e6989586621679901252] (TyFun [f6989586621679901253] [g6989586621679901254] -> Type) (ZipWith6Sym5 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254 l1 l2 l3 l4 l5) l6 # | |
data ZipWith6Sym6 (l :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901248]) (l :: [b6989586621679901249]) (l :: [c6989586621679901250]) (l :: [d6989586621679901251]) (l :: [e6989586621679901252]) (l :: TyFun [f6989586621679901253] [g6989586621679901254]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901248] -> [b6989586621679901249] -> [c6989586621679901250] -> [d6989586621679901251] -> [e6989586621679901252] -> TyFun [f6989586621679901253] [g6989586621679901254] -> *) (ZipWith6Sym6 a6989586621679901248 b6989586621679901249 c6989586621679901250 d6989586621679901251 e6989586621679901252 f6989586621679901253 g6989586621679901254) # | |
| type Apply [f] [g] (ZipWith6Sym6 a b c d e f g l1 l2 l3 l4 l5 l6) l7 # | |
type ZipWith6Sym7 (t :: TyFun a6989586621679901248 (TyFun b6989586621679901249 (TyFun c6989586621679901250 (TyFun d6989586621679901251 (TyFun e6989586621679901252 (TyFun f6989586621679901253 g6989586621679901254 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679901248]) (t :: [b6989586621679901249]) (t :: [c6989586621679901250]) (t :: [d6989586621679901251]) (t :: [e6989586621679901252]) (t :: [f6989586621679901253]) = ZipWith6 t t t t t t t #
data ZipWith7Sym0 (l :: TyFun (TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901240] (TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901240] (TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym0 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247) # | |
| type Apply (TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679901240] (TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym0 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247) l # | |
data ZipWith7Sym1 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679901240] (TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679901240] (TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym1 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247) # | |
| type Apply [a6989586621679901240] (TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym1 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247 l1) l2 # | |
data ZipWith7Sym2 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901240] -> TyFun [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym2 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247) # | |
| type Apply [b6989586621679901241] (TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym2 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247 l1 l2) l3 # | |
data ZipWith7Sym3 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901240] -> [b6989586621679901241] -> TyFun [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym3 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247) # | |
| type Apply [c6989586621679901242] (TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym3 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247 l1 l2 l3) l4 # | |
data ZipWith7Sym4 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: [c6989586621679901242]) (l :: TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901240] -> [b6989586621679901241] -> [c6989586621679901242] -> TyFun [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) -> *) (ZipWith7Sym4 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247) # | |
| type Apply [d6989586621679901243] (TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> Type) (ZipWith7Sym4 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247 l1 l2 l3 l4) l5 # | |
data ZipWith7Sym5 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: [c6989586621679901242]) (l :: [d6989586621679901243]) (l :: TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901240] -> [b6989586621679901241] -> [c6989586621679901242] -> [d6989586621679901243] -> TyFun [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) -> *) (ZipWith7Sym5 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247) # | |
| type Apply [e6989586621679901244] (TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> Type) (ZipWith7Sym5 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247 l1 l2 l3 l4 l5) l6 # | |
data ZipWith7Sym6 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: [c6989586621679901242]) (l :: [d6989586621679901243]) (l :: [e6989586621679901244]) (l :: TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901240] -> [b6989586621679901241] -> [c6989586621679901242] -> [d6989586621679901243] -> [e6989586621679901244] -> TyFun [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) -> *) (ZipWith7Sym6 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247) # | |
| type Apply [f6989586621679901245] (TyFun [g6989586621679901246] [h6989586621679901247] -> Type) (ZipWith7Sym6 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247 l1 l2 l3 l4 l5 l6) l7 # | |
data ZipWith7Sym7 (l :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679901240]) (l :: [b6989586621679901241]) (l :: [c6989586621679901242]) (l :: [d6989586621679901243]) (l :: [e6989586621679901244]) (l :: [f6989586621679901245]) (l :: TyFun [g6989586621679901246] [h6989586621679901247]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679901240] -> [b6989586621679901241] -> [c6989586621679901242] -> [d6989586621679901243] -> [e6989586621679901244] -> [f6989586621679901245] -> TyFun [g6989586621679901246] [h6989586621679901247] -> *) (ZipWith7Sym7 a6989586621679901240 b6989586621679901241 c6989586621679901242 d6989586621679901243 e6989586621679901244 f6989586621679901245 g6989586621679901246 h6989586621679901247) # | |
| type Apply [g] [h] (ZipWith7Sym7 a b c d e f g h l1 l2 l3 l4 l5 l6 l7) l8 # | |
type ZipWith7Sym8 (t :: TyFun a6989586621679901240 (TyFun b6989586621679901241 (TyFun c6989586621679901242 (TyFun d6989586621679901243 (TyFun e6989586621679901244 (TyFun f6989586621679901245 (TyFun g6989586621679901246 h6989586621679901247 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679901240]) (t :: [b6989586621679901241]) (t :: [c6989586621679901242]) (t :: [d6989586621679901243]) (t :: [e6989586621679901244]) (t :: [f6989586621679901245]) (t :: [g6989586621679901246]) = ZipWith7 t t t t t t t t #
data NubBySym0 (l :: TyFun (TyFun a6989586621679472513 (TyFun a6989586621679472513 Bool -> Type) -> Type) (TyFun [a6989586621679472513] [a6989586621679472513] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472513 (TyFun a6989586621679472513 Bool -> Type) -> Type) (TyFun [a6989586621679472513] [a6989586621679472513] -> Type) -> *) (NubBySym0 a6989586621679472513) # | |
| type Apply (TyFun a6989586621679472513 (TyFun a6989586621679472513 Bool -> Type) -> Type) (TyFun [a6989586621679472513] [a6989586621679472513] -> Type) (NubBySym0 a6989586621679472513) l # | |
data NubBySym1 (l :: TyFun a6989586621679472513 (TyFun a6989586621679472513 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472513] [a6989586621679472513]) #
type NubBySym2 (t :: TyFun a6989586621679472513 (TyFun a6989586621679472513 Bool -> Type) -> Type) (t :: [a6989586621679472513]) = NubBy t t #
data UnionSym0 (l :: TyFun [a6989586621679472510] (TyFun [a6989586621679472510] [a6989586621679472510] -> Type)) #
data UnionSym1 (l :: [a6989586621679472510]) (l :: TyFun [a6989586621679472510] [a6989586621679472510]) #
data UnionBySym0 (l :: TyFun (TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (TyFun [a6989586621679472511] (TyFun [a6989586621679472511] [a6989586621679472511] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (TyFun [a6989586621679472511] (TyFun [a6989586621679472511] [a6989586621679472511] -> Type) -> Type) -> *) (UnionBySym0 a6989586621679472511) # | |
| type Apply (TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (TyFun [a6989586621679472511] (TyFun [a6989586621679472511] [a6989586621679472511] -> Type) -> Type) (UnionBySym0 a6989586621679472511) l # | |
data UnionBySym1 (l :: TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (l :: TyFun [a6989586621679472511] (TyFun [a6989586621679472511] [a6989586621679472511] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) -> TyFun [a6989586621679472511] (TyFun [a6989586621679472511] [a6989586621679472511] -> Type) -> *) (UnionBySym1 a6989586621679472511) # | |
| type Apply [a6989586621679472511] (TyFun [a6989586621679472511] [a6989586621679472511] -> Type) (UnionBySym1 a6989586621679472511 l1) l2 # | |
data UnionBySym2 (l :: TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (l :: [a6989586621679472511]) (l :: TyFun [a6989586621679472511] [a6989586621679472511]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) -> [a6989586621679472511] -> TyFun [a6989586621679472511] [a6989586621679472511] -> *) (UnionBySym2 a6989586621679472511) # | |
| type Apply [a] [a] (UnionBySym2 a l1 l2) l3 # | |
type UnionBySym3 (t :: TyFun a6989586621679472511 (TyFun a6989586621679472511 Bool -> Type) -> Type) (t :: [a6989586621679472511]) (t :: [a6989586621679472511]) = UnionBy t t t #
data GenericLengthSym0 (l :: TyFun [a6989586621679472509] i6989586621679472508) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679472509] i6989586621679472508 -> *) (GenericLengthSym0 a6989586621679472509 i6989586621679472508) # | |
| type Apply [a] k2 (GenericLengthSym0 a k2) l # | |
type GenericLengthSym1 (t :: [a6989586621679472509]) = GenericLength t #
data GenericTakeSym0 (l :: TyFun i6989586621679901238 (TyFun [a6989586621679901239] [a6989586621679901239] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun i6989586621679901238 (TyFun [a6989586621679901239] [a6989586621679901239] -> Type) -> *) (GenericTakeSym0 i6989586621679901238 a6989586621679901239) # | |
| type Apply i6989586621679901238 (TyFun [a6989586621679901239] [a6989586621679901239] -> Type) (GenericTakeSym0 i6989586621679901238 a6989586621679901239) l # | |
data GenericTakeSym1 (l :: i6989586621679901238) (l :: TyFun [a6989586621679901239] [a6989586621679901239]) #
Instances
| SuppressUnusedWarnings (i6989586621679901238 -> TyFun [a6989586621679901239] [a6989586621679901239] -> *) (GenericTakeSym1 i6989586621679901238 a6989586621679901239) # | |
| type Apply [a] [a] (GenericTakeSym1 i a l1) l2 # | |
type GenericTakeSym2 (t :: i6989586621679901238) (t :: [a6989586621679901239]) = GenericTake t t #
data GenericDropSym0 (l :: TyFun i6989586621679901236 (TyFun [a6989586621679901237] [a6989586621679901237] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun i6989586621679901236 (TyFun [a6989586621679901237] [a6989586621679901237] -> Type) -> *) (GenericDropSym0 i6989586621679901236 a6989586621679901237) # | |
| type Apply i6989586621679901236 (TyFun [a6989586621679901237] [a6989586621679901237] -> Type) (GenericDropSym0 i6989586621679901236 a6989586621679901237) l # | |
data GenericDropSym1 (l :: i6989586621679901236) (l :: TyFun [a6989586621679901237] [a6989586621679901237]) #
Instances
| SuppressUnusedWarnings (i6989586621679901236 -> TyFun [a6989586621679901237] [a6989586621679901237] -> *) (GenericDropSym1 i6989586621679901236 a6989586621679901237) # | |
| type Apply [a] [a] (GenericDropSym1 i a l1) l2 # | |
type GenericDropSym2 (t :: i6989586621679901236) (t :: [a6989586621679901237]) = GenericDrop t t #
data GenericSplitAtSym0 (l :: TyFun i6989586621679901234 (TyFun [a6989586621679901235] ([a6989586621679901235], [a6989586621679901235]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun i6989586621679901234 (TyFun [a6989586621679901235] ([a6989586621679901235], [a6989586621679901235]) -> Type) -> *) (GenericSplitAtSym0 i6989586621679901234 a6989586621679901235) # | |
| type Apply i6989586621679901234 (TyFun [a6989586621679901235] ([a6989586621679901235], [a6989586621679901235]) -> Type) (GenericSplitAtSym0 i6989586621679901234 a6989586621679901235) l # | |
data GenericSplitAtSym1 (l :: i6989586621679901234) (l :: TyFun [a6989586621679901235] ([a6989586621679901235], [a6989586621679901235])) #
Instances
| SuppressUnusedWarnings (i6989586621679901234 -> TyFun [a6989586621679901235] ([a6989586621679901235], [a6989586621679901235]) -> *) (GenericSplitAtSym1 i6989586621679901234 a6989586621679901235) # | |
| type Apply [a] ([a], [a]) (GenericSplitAtSym1 i a l1) l2 # | |
type GenericSplitAtSym2 (t :: i6989586621679901234) (t :: [a6989586621679901235]) = GenericSplitAt t t #
data GenericIndexSym0 (l :: TyFun [a6989586621679901233] (TyFun i6989586621679901232 a6989586621679901233 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679901233] (TyFun i6989586621679901232 a6989586621679901233 -> Type) -> *) (GenericIndexSym0 i6989586621679901232 a6989586621679901233) # | |
| type Apply [a6989586621679901233] (TyFun i6989586621679901232 a6989586621679901233 -> Type) (GenericIndexSym0 i6989586621679901232 a6989586621679901233) l # | |
data GenericIndexSym1 (l :: [a6989586621679901233]) (l :: TyFun i6989586621679901232 a6989586621679901233) #
Instances
| SuppressUnusedWarnings ([a6989586621679901233] -> TyFun i6989586621679901232 a6989586621679901233 -> *) (GenericIndexSym1 i6989586621679901232 a6989586621679901233) # | |
| type Apply i a (GenericIndexSym1 i a l1) l2 # | |
type GenericIndexSym2 (t :: [a6989586621679901233]) (t :: i6989586621679901232) = GenericIndex t t #
data GenericReplicateSym0 (l :: TyFun i6989586621679901230 (TyFun a6989586621679901231 [a6989586621679901231] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun i6989586621679901230 (TyFun a6989586621679901231 [a6989586621679901231] -> Type) -> *) (GenericReplicateSym0 i6989586621679901230 a6989586621679901231) # | |
| type Apply i6989586621679901230 (TyFun a6989586621679901231 [a6989586621679901231] -> Type) (GenericReplicateSym0 i6989586621679901230 a6989586621679901231) l # | |
data GenericReplicateSym1 (l :: i6989586621679901230) (l :: TyFun a6989586621679901231 [a6989586621679901231]) #
Instances
| SuppressUnusedWarnings (i6989586621679901230 -> TyFun a6989586621679901231 [a6989586621679901231] -> *) (GenericReplicateSym1 i6989586621679901230 a6989586621679901231) # | |
| type Apply a [a] (GenericReplicateSym1 i a l1) l2 # | |
type GenericReplicateSym2 (t :: i6989586621679901230) (t :: a6989586621679901231) = GenericReplicate t t #