| 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.
Synopsis
- type family (a :: [a]) ++ (a :: [a]) :: [a] where ...
- type family Head (a :: [a]) :: a where ...
- type family Last (a :: [a]) :: a where ...
- type family Tail (a :: [a]) :: [a] where ...
- type family Init (a :: [a]) :: [a] where ...
- type family Null (a :: [a]) :: Bool where ...
- type family Length (a :: [a]) :: Nat where ...
- type family Map (a :: TyFun a b -> Type) (a :: [a]) :: [b] where ...
- type family Reverse (a :: [a]) :: [a] where ...
- type family Intersperse (a :: a) (a :: [a]) :: [a] where ...
- type family Intercalate (a :: [a]) (a :: [[a]]) :: [a] where ...
- type family Transpose (a :: [[a]]) :: [[a]] where ...
- type family Subsequences (a :: [a]) :: [[a]] where ...
- type family Permutations (a :: [a]) :: [[a]] where ...
- type family Foldl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
- type family Foldl' (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
- type family Foldl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
- type family Foldl1' (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
- type family Foldr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
- type family Foldr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
- type family Concat (a :: [[a]]) :: [a] where ...
- type family ConcatMap (a :: TyFun a [b] -> Type) (a :: [a]) :: [b] where ...
- type family And (a :: [Bool]) :: Bool where ...
- type family Or (a :: [Bool]) :: Bool where ...
- type family Any (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ...
- type family All (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ...
- type family Sum (a :: [a]) :: a where ...
- type family Product (a :: [a]) :: a where ...
- type family Maximum (a :: [a]) :: a where ...
- type family Minimum (a :: [a]) :: a where ...
- type family Scanl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ...
- type family Scanl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ...
- type family Scanr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ...
- type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ...
- type family MapAccumL (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ...
- type family MapAccumR (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ...
- type family Replicate (a :: Nat) (a :: a) :: [a] where ...
- type family Unfoldr (a :: TyFun b (Maybe (a, b)) -> Type) (a :: b) :: [a] where ...
- type family Take (a :: Nat) (a :: [a]) :: [a] where ...
- type family Drop (a :: Nat) (a :: [a]) :: [a] where ...
- type family SplitAt (a :: Nat) (a :: [a]) :: ([a], [a]) where ...
- type family TakeWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- type family DropWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- type family DropWhileEnd (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- type family Span (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
- type family Break (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
- type family StripPrefix (a :: [a]) (a :: [a]) :: Maybe [a] where ...
- type family Group (a :: [a]) :: [[a]] where ...
- type family Inits (a :: [a]) :: [[a]] where ...
- type family Tails (a :: [a]) :: [[a]] where ...
- type family IsPrefixOf (a :: [a]) (a :: [a]) :: Bool where ...
- type family IsSuffixOf (a :: [a]) (a :: [a]) :: Bool where ...
- type family IsInfixOf (a :: [a]) (a :: [a]) :: Bool where ...
- type family Elem (a :: a) (a :: [a]) :: Bool where ...
- type family NotElem (a :: a) (a :: [a]) :: Bool where ...
- type family Lookup (a :: a) (a :: [(a, b)]) :: Maybe b where ...
- type family Find (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe a where ...
- type family Filter (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- type family Partition (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
- type family (a :: [a]) !! (a :: Nat) :: a where ...
- type family ElemIndex (a :: a) (a :: [a]) :: Maybe Nat where ...
- type family ElemIndices (a :: a) (a :: [a]) :: [Nat] where ...
- type family FindIndex (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe Nat where ...
- type family FindIndices (a :: TyFun a Bool -> Type) (a :: [a]) :: [Nat] where ...
- type family Zip (a :: [a]) (a :: [b]) :: [(a, b)] where ...
- type family Zip3 (a :: [a]) (a :: [b]) (a :: [c]) :: [(a, b, c)] where ...
- type family Zip4 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [(a, b, c, d)] where ...
- type family Zip5 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [(a, b, c, d, e)] where ...
- type family Zip6 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [(a, b, c, d, e, f)] where ...
- type family Zip7 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [(a, b, c, d, e, f, g)] where ...
- type family ZipWith (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: [a]) (a :: [b]) :: [c] where ...
- type family ZipWith3 (a :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) :: [d] where ...
- type family ZipWith4 (a :: TyFun a (TyFun b (TyFun c (TyFun d e -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [e] where ...
- type family ZipWith5 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e f -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [f] where ...
- type family ZipWith6 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f g -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [g] where ...
- type family ZipWith7 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f (TyFun g h -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [h] where ...
- type family Unzip (a :: [(a, b)]) :: ([a], [b]) where ...
- type family Unzip3 (a :: [(a, b, c)]) :: ([a], [b], [c]) where ...
- type family Unzip4 (a :: [(a, b, c, d)]) :: ([a], [b], [c], [d]) where ...
- type family Unzip5 (a :: [(a, b, c, d, e)]) :: ([a], [b], [c], [d], [e]) where ...
- type family Unzip6 (a :: [(a, b, c, d, e, f)]) :: ([a], [b], [c], [d], [e], [f]) where ...
- type family Unzip7 (a :: [(a, b, c, d, e, f, g)]) :: ([a], [b], [c], [d], [e], [f], [g]) where ...
- type family Unlines (a :: [Symbol]) :: Symbol where ...
- type family Unwords (a :: [Symbol]) :: Symbol where ...
- type family Nub (a :: [a]) :: [a] where ...
- type family Delete (a :: a) (a :: [a]) :: [a] where ...
- type family (a :: [a]) \\ (a :: [a]) :: [a] where ...
- type family Union (a :: [a]) (a :: [a]) :: [a] where ...
- type family Intersect (a :: [a]) (a :: [a]) :: [a] where ...
- type family Sort (a :: [a]) :: [a] where ...
- type family Insert (a :: a) (a :: [a]) :: [a] where ...
- type family NubBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [a] where ...
- type family DeleteBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
- type family DeleteFirstsBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- type family UnionBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- type family GroupBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [[a]] where ...
- type family IntersectBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- type family SortBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: [a] where ...
- type family InsertBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
- type family MaximumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
- type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
- type family GenericLength (a :: [a]) :: i where ...
- type family GenericTake (a :: i) (a :: [a]) :: [a] where ...
- type family GenericDrop (a :: i) (a :: [a]) :: [a] where ...
- type family GenericSplitAt (a :: i) (a :: [a]) :: ([a], [a]) where ...
- type family GenericIndex (a :: [a]) (a :: i) :: a where ...
- type family GenericReplicate (a :: i) (a :: a) :: [a] where ...
- type NilSym0 = '[]
- data (:@#@$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type))
- data (l :: a3530822107858468865) :@#@$$ (l :: TyFun [a3530822107858468865] [a3530822107858468865])
- type (:@#@$$$) (t :: a3530822107858468865) (t :: [a3530822107858468865]) = (:) t t
- type (++@#@$$$) (t :: [a6989586621679436421]) (t :: [a6989586621679436421]) = (++) t t
- data (l :: [a6989586621679436421]) ++@#@$$ (l :: TyFun [a6989586621679436421] [a6989586621679436421])
- data (++@#@$) (l :: TyFun [a6989586621679436421] (TyFun [a6989586621679436421] [a6989586621679436421] -> Type))
- data HeadSym0 (l :: TyFun [a6989586621679459312] a6989586621679459312)
- type HeadSym1 (t :: [a6989586621679459312]) = Head t
- data LastSym0 (l :: TyFun [a6989586621679459311] a6989586621679459311)
- type LastSym1 (t :: [a6989586621679459311]) = Last t
- data TailSym0 (l :: TyFun [a6989586621679459310] [a6989586621679459310])
- type TailSym1 (t :: [a6989586621679459310]) = Tail t
- data InitSym0 (l :: TyFun [a6989586621679459309] [a6989586621679459309])
- type InitSym1 (t :: [a6989586621679459309]) = Init t
- data NullSym0 (l :: TyFun [a6989586621679459308] Bool)
- type NullSym1 (t :: [a6989586621679459308]) = Null t
- data MapSym0 (l :: TyFun (TyFun a6989586621679436422 b6989586621679436423 -> Type) (TyFun [a6989586621679436422] [b6989586621679436423] -> Type))
- data MapSym1 (l :: TyFun a6989586621679436422 b6989586621679436423 -> Type) (l :: TyFun [a6989586621679436422] [b6989586621679436423])
- type MapSym2 (t :: TyFun a6989586621679436422 b6989586621679436423 -> Type) (t :: [a6989586621679436422]) = Map t t
- data ReverseSym0 (l :: TyFun [a6989586621679459307] [a6989586621679459307])
- type ReverseSym1 (t :: [a6989586621679459307]) = Reverse t
- data IntersperseSym0 (l :: TyFun a6989586621679459306 (TyFun [a6989586621679459306] [a6989586621679459306] -> Type))
- data IntersperseSym1 (l :: a6989586621679459306) (l :: TyFun [a6989586621679459306] [a6989586621679459306])
- type IntersperseSym2 (t :: a6989586621679459306) (t :: [a6989586621679459306]) = Intersperse t t
- data IntercalateSym0 (l :: TyFun [a6989586621679459305] (TyFun [[a6989586621679459305]] [a6989586621679459305] -> Type))
- data IntercalateSym1 (l :: [a6989586621679459305]) (l :: TyFun [[a6989586621679459305]] [a6989586621679459305])
- type IntercalateSym2 (t :: [a6989586621679459305]) (t :: [[a6989586621679459305]]) = Intercalate t t
- data SubsequencesSym0 (l :: TyFun [a6989586621679459304] [[a6989586621679459304]])
- type SubsequencesSym1 (t :: [a6989586621679459304]) = Subsequences t
- data PermutationsSym0 (l :: TyFun [a6989586621679459301] [[a6989586621679459301]])
- type PermutationsSym1 (t :: [a6989586621679459301]) = Permutations t
- data FoldlSym0 (l :: TyFun (TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (TyFun b6989586621679270365 (TyFun [a6989586621679270364] b6989586621679270365 -> Type) -> Type))
- data FoldlSym1 (l :: TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (l :: TyFun b6989586621679270365 (TyFun [a6989586621679270364] b6989586621679270365 -> Type))
- data FoldlSym2 (l :: TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (l :: b6989586621679270365) (l :: TyFun [a6989586621679270364] b6989586621679270365)
- type FoldlSym3 (t :: TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (t :: b6989586621679270365) (t :: [a6989586621679270364]) = Foldl t t t
- data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type) -> Type))
- data Foldl'Sym1 (l :: TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (l :: TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type))
- data Foldl'Sym2 (l :: TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (l :: b6989586621679459300) (l :: TyFun [a6989586621679459299] b6989586621679459300)
- type Foldl'Sym3 (t :: TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (t :: b6989586621679459300) (t :: [a6989586621679459299]) = Foldl' t t t
- data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) (TyFun [a6989586621679459298] a6989586621679459298 -> Type))
- data Foldl1Sym1 (l :: TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) (l :: TyFun [a6989586621679459298] a6989586621679459298)
- type Foldl1Sym2 (t :: TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) (t :: [a6989586621679459298]) = Foldl1 t t
- data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) (TyFun [a6989586621679459297] a6989586621679459297 -> Type))
- data Foldl1'Sym1 (l :: TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) (l :: TyFun [a6989586621679459297] a6989586621679459297)
- type Foldl1'Sym2 (t :: TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) (t :: [a6989586621679459297]) = Foldl1' t t
- data FoldrSym0 (l :: TyFun (TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (TyFun b6989586621679436425 (TyFun [a6989586621679436424] b6989586621679436425 -> Type) -> Type))
- data FoldrSym1 (l :: TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (l :: TyFun b6989586621679436425 (TyFun [a6989586621679436424] b6989586621679436425 -> Type))
- data FoldrSym2 (l :: TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (l :: b6989586621679436425) (l :: TyFun [a6989586621679436424] b6989586621679436425)
- type FoldrSym3 (t :: TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (t :: b6989586621679436425) (t :: [a6989586621679436424]) = Foldr t t t
- data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) (TyFun [a6989586621679459296] a6989586621679459296 -> Type))
- data Foldr1Sym1 (l :: TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) (l :: TyFun [a6989586621679459296] a6989586621679459296)
- type Foldr1Sym2 (t :: TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) (t :: [a6989586621679459296]) = Foldr1 t t
- data ConcatSym0 (l :: TyFun [[a6989586621679459295]] [a6989586621679459295])
- type ConcatSym1 (t :: [[a6989586621679459295]]) = Concat t
- data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679459293 [b6989586621679459294] -> Type) (TyFun [a6989586621679459293] [b6989586621679459294] -> Type))
- data ConcatMapSym1 (l :: TyFun a6989586621679459293 [b6989586621679459294] -> Type) (l :: TyFun [a6989586621679459293] [b6989586621679459294])
- type ConcatMapSym2 (t :: TyFun a6989586621679459293 [b6989586621679459294] -> Type) (t :: [a6989586621679459293]) = ConcatMap t t
- data AndSym0 (l :: TyFun [Bool] Bool)
- type AndSym1 (t :: [Bool]) = And t
- data OrSym0 (l :: TyFun [Bool] Bool)
- type OrSym1 (t :: [Bool]) = Or t
- data AnySym0 (l :: TyFun (TyFun a6989586621679459291 Bool -> Type) (TyFun [a6989586621679459291] Bool -> Type))
- data AnySym1 (l :: TyFun a6989586621679459291 Bool -> Type) (l :: TyFun [a6989586621679459291] Bool)
- type AnySym2 (t :: TyFun a6989586621679459291 Bool -> Type) (t :: [a6989586621679459291]) = Any t t
- data AllSym0 (l :: TyFun (TyFun a6989586621679459292 Bool -> Type) (TyFun [a6989586621679459292] Bool -> Type))
- data AllSym1 (l :: TyFun a6989586621679459292 Bool -> Type) (l :: TyFun [a6989586621679459292] Bool)
- type AllSym2 (t :: TyFun a6989586621679459292 Bool -> Type) (t :: [a6989586621679459292]) = All t t
- data ScanlSym0 (l :: TyFun (TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (TyFun b6989586621679459289 (TyFun [a6989586621679459290] [b6989586621679459289] -> Type) -> Type))
- data ScanlSym1 (l :: TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (l :: TyFun b6989586621679459289 (TyFun [a6989586621679459290] [b6989586621679459289] -> Type))
- data ScanlSym2 (l :: TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (l :: b6989586621679459289) (l :: TyFun [a6989586621679459290] [b6989586621679459289])
- type ScanlSym3 (t :: TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (t :: b6989586621679459289) (t :: [a6989586621679459290]) = Scanl t t t
- data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) (TyFun [a6989586621679459288] [a6989586621679459288] -> Type))
- data Scanl1Sym1 (l :: TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) (l :: TyFun [a6989586621679459288] [a6989586621679459288])
- type Scanl1Sym2 (t :: TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) (t :: [a6989586621679459288]) = Scanl1 t t
- data ScanrSym0 (l :: TyFun (TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (TyFun b6989586621679459287 (TyFun [a6989586621679459286] [b6989586621679459287] -> Type) -> Type))
- data ScanrSym1 (l :: TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (l :: TyFun b6989586621679459287 (TyFun [a6989586621679459286] [b6989586621679459287] -> Type))
- data ScanrSym2 (l :: TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (l :: b6989586621679459287) (l :: TyFun [a6989586621679459286] [b6989586621679459287])
- type ScanrSym3 (t :: TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (t :: b6989586621679459287) (t :: [a6989586621679459286]) = Scanr t t t
- data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) (TyFun [a6989586621679459285] [a6989586621679459285] -> Type))
- data Scanr1Sym1 (l :: TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) (l :: TyFun [a6989586621679459285] [a6989586621679459285])
- type Scanr1Sym2 (t :: TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) (t :: [a6989586621679459285]) = Scanr1 t t
- data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type) -> Type))
- data MapAccumLSym1 (l :: TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (l :: TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type))
- data MapAccumLSym2 (l :: TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (l :: acc6989586621679459282) (l :: TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]))
- type MapAccumLSym3 (t :: TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (t :: acc6989586621679459282) (t :: [x6989586621679459283]) = MapAccumL t t t
- data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type) -> Type))
- data MapAccumRSym1 (l :: TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (l :: TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type))
- data MapAccumRSym2 (l :: TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (l :: acc6989586621679459279) (l :: TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]))
- type MapAccumRSym3 (t :: TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (t :: acc6989586621679459279) (t :: [x6989586621679459280]) = MapAccumR t t t
- data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) (TyFun b6989586621679459277 [a6989586621679459278] -> Type))
- data UnfoldrSym1 (l :: TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) (l :: TyFun b6989586621679459277 [a6989586621679459278])
- type UnfoldrSym2 (t :: TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) (t :: b6989586621679459277) = Unfoldr t t
- data InitsSym0 (l :: TyFun [a6989586621679459276] [[a6989586621679459276]])
- type InitsSym1 (t :: [a6989586621679459276]) = Inits t
- data TailsSym0 (l :: TyFun [a6989586621679459275] [[a6989586621679459275]])
- type TailsSym1 (t :: [a6989586621679459275]) = Tails t
- data IsPrefixOfSym0 (l :: TyFun [a6989586621679459274] (TyFun [a6989586621679459274] Bool -> Type))
- data IsPrefixOfSym1 (l :: [a6989586621679459274]) (l :: TyFun [a6989586621679459274] Bool)
- type IsPrefixOfSym2 (t :: [a6989586621679459274]) (t :: [a6989586621679459274]) = IsPrefixOf t t
- data IsSuffixOfSym0 (l :: TyFun [a6989586621679459273] (TyFun [a6989586621679459273] Bool -> Type))
- data IsSuffixOfSym1 (l :: [a6989586621679459273]) (l :: TyFun [a6989586621679459273] Bool)
- type IsSuffixOfSym2 (t :: [a6989586621679459273]) (t :: [a6989586621679459273]) = IsSuffixOf t t
- data IsInfixOfSym0 (l :: TyFun [a6989586621679459272] (TyFun [a6989586621679459272] Bool -> Type))
- data IsInfixOfSym1 (l :: [a6989586621679459272]) (l :: TyFun [a6989586621679459272] Bool)
- type IsInfixOfSym2 (t :: [a6989586621679459272]) (t :: [a6989586621679459272]) = IsInfixOf t t
- data ElemSym0 (l :: TyFun a6989586621679459271 (TyFun [a6989586621679459271] Bool -> Type))
- data ElemSym1 (l :: a6989586621679459271) (l :: TyFun [a6989586621679459271] Bool)
- type ElemSym2 (t :: a6989586621679459271) (t :: [a6989586621679459271]) = Elem t t
- data NotElemSym0 (l :: TyFun a6989586621679459270 (TyFun [a6989586621679459270] Bool -> Type))
- data NotElemSym1 (l :: a6989586621679459270) (l :: TyFun [a6989586621679459270] Bool)
- type NotElemSym2 (t :: a6989586621679459270) (t :: [a6989586621679459270]) = NotElem t t
- data ZipSym0 (l :: TyFun [a6989586621679459268] (TyFun [b6989586621679459269] [(a6989586621679459268, b6989586621679459269)] -> Type))
- data ZipSym1 (l :: [a6989586621679459268]) (l :: TyFun [b6989586621679459269] [(a6989586621679459268, b6989586621679459269)])
- type ZipSym2 (t :: [a6989586621679459268]) (t :: [b6989586621679459269]) = Zip t t
- data Zip3Sym0 (l :: TyFun [a6989586621679459265] (TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type) -> Type))
- data Zip3Sym1 (l :: [a6989586621679459265]) (l :: TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type))
- data Zip3Sym2 (l :: [a6989586621679459265]) (l :: [b6989586621679459266]) (l :: TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)])
- type Zip3Sym3 (t :: [a6989586621679459265]) (t :: [b6989586621679459266]) (t :: [c6989586621679459267]) = Zip3 t t t
- data ZipWithSym0 (l :: TyFun (TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type) -> Type))
- data ZipWithSym1 (l :: TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (l :: TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type))
- data ZipWithSym2 (l :: TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (l :: [a6989586621679459262]) (l :: TyFun [b6989586621679459263] [c6989586621679459264])
- type ZipWithSym3 (t :: TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (t :: [a6989586621679459262]) (t :: [b6989586621679459263]) = ZipWith t t t
- data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type) -> Type))
- data ZipWith3Sym1 (l :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type))
- data ZipWith3Sym2 (l :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (l :: [a6989586621679459258]) (l :: TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type))
- data ZipWith3Sym3 (l :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (l :: [a6989586621679459258]) (l :: [b6989586621679459259]) (l :: TyFun [c6989586621679459260] [d6989586621679459261])
- type ZipWith3Sym4 (t :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (t :: [a6989586621679459258]) (t :: [b6989586621679459259]) (t :: [c6989586621679459260]) = ZipWith3 t t t t
- data UnzipSym0 (l :: TyFun [(a6989586621679459256, b6989586621679459257)] ([a6989586621679459256], [b6989586621679459257]))
- type UnzipSym1 (t :: [(a6989586621679459256, b6989586621679459257)]) = Unzip t
- data Unzip3Sym0 (l :: TyFun [(a6989586621679459253, b6989586621679459254, c6989586621679459255)] ([a6989586621679459253], [b6989586621679459254], [c6989586621679459255]))
- type Unzip3Sym1 (t :: [(a6989586621679459253, b6989586621679459254, c6989586621679459255)]) = Unzip3 t
- data Unzip4Sym0 (l :: TyFun [(a6989586621679459249, b6989586621679459250, c6989586621679459251, d6989586621679459252)] ([a6989586621679459249], [b6989586621679459250], [c6989586621679459251], [d6989586621679459252]))
- type Unzip4Sym1 (t :: [(a6989586621679459249, b6989586621679459250, c6989586621679459251, d6989586621679459252)]) = Unzip4 t
- data Unzip5Sym0 (l :: TyFun [(a6989586621679459244, b6989586621679459245, c6989586621679459246, d6989586621679459247, e6989586621679459248)] ([a6989586621679459244], [b6989586621679459245], [c6989586621679459246], [d6989586621679459247], [e6989586621679459248]))
- type Unzip5Sym1 (t :: [(a6989586621679459244, b6989586621679459245, c6989586621679459246, d6989586621679459247, e6989586621679459248)]) = Unzip5 t
- data Unzip6Sym0 (l :: TyFun [(a6989586621679459238, b6989586621679459239, c6989586621679459240, d6989586621679459241, e6989586621679459242, f6989586621679459243)] ([a6989586621679459238], [b6989586621679459239], [c6989586621679459240], [d6989586621679459241], [e6989586621679459242], [f6989586621679459243]))
- type Unzip6Sym1 (t :: [(a6989586621679459238, b6989586621679459239, c6989586621679459240, d6989586621679459241, e6989586621679459242, f6989586621679459243)]) = Unzip6 t
- data Unzip7Sym0 (l :: TyFun [(a6989586621679459231, b6989586621679459232, c6989586621679459233, d6989586621679459234, e6989586621679459235, f6989586621679459236, g6989586621679459237)] ([a6989586621679459231], [b6989586621679459232], [c6989586621679459233], [d6989586621679459234], [e6989586621679459235], [f6989586621679459236], [g6989586621679459237]))
- type Unzip7Sym1 (t :: [(a6989586621679459231, b6989586621679459232, c6989586621679459233, d6989586621679459234, e6989586621679459235, f6989586621679459236, g6989586621679459237)]) = Unzip7 t
- data DeleteSym0 (l :: TyFun a6989586621679459230 (TyFun [a6989586621679459230] [a6989586621679459230] -> Type))
- data DeleteSym1 (l :: a6989586621679459230) (l :: TyFun [a6989586621679459230] [a6989586621679459230])
- type DeleteSym2 (t :: a6989586621679459230) (t :: [a6989586621679459230]) = Delete t t
- data (\\@#@$) (l :: TyFun [a6989586621679459229] (TyFun [a6989586621679459229] [a6989586621679459229] -> Type))
- data (l :: [a6989586621679459229]) \\@#@$$ (l :: TyFun [a6989586621679459229] [a6989586621679459229])
- type (\\@#@$$$) (t :: [a6989586621679459229]) (t :: [a6989586621679459229]) = (\\) t t
- data IntersectSym0 (l :: TyFun [a6989586621679459216] (TyFun [a6989586621679459216] [a6989586621679459216] -> Type))
- data IntersectSym1 (l :: [a6989586621679459216]) (l :: TyFun [a6989586621679459216] [a6989586621679459216])
- type IntersectSym2 (t :: [a6989586621679459216]) (t :: [a6989586621679459216]) = Intersect t t
- data InsertSym0 (l :: TyFun a6989586621679459203 (TyFun [a6989586621679459203] [a6989586621679459203] -> Type))
- data InsertSym1 (l :: a6989586621679459203) (l :: TyFun [a6989586621679459203] [a6989586621679459203])
- type InsertSym2 (t :: a6989586621679459203) (t :: [a6989586621679459203]) = Insert t t
- data SortSym0 (l :: TyFun [a6989586621679459202] [a6989586621679459202])
- type SortSym1 (t :: [a6989586621679459202]) = Sort t
- data DeleteBySym0 (l :: TyFun (TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type) -> Type))
- data DeleteBySym1 (l :: TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (l :: TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type))
- data DeleteBySym2 (l :: TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (l :: a6989586621679459228) (l :: TyFun [a6989586621679459228] [a6989586621679459228])
- type DeleteBySym3 (t :: TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (t :: a6989586621679459228) (t :: [a6989586621679459228]) = DeleteBy t t t
- data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type) -> Type))
- data DeleteFirstsBySym1 (l :: TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type))
- data DeleteFirstsBySym2 (l :: TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (l :: [a6989586621679459227]) (l :: TyFun [a6989586621679459227] [a6989586621679459227])
- type DeleteFirstsBySym3 (t :: TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (t :: [a6989586621679459227]) (t :: [a6989586621679459227]) = DeleteFirstsBy t t t
- data IntersectBySym0 (l :: TyFun (TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) (TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type) -> Type))
- data IntersectBySym1 (l :: TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type))
- data IntersectBySym2 (l :: TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) (l :: [a6989586621679459215]) (l :: TyFun [a6989586621679459215] [a6989586621679459215])
- data SortBySym0 (l :: TyFun (TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) (TyFun [a6989586621679459226] [a6989586621679459226] -> Type))
- data SortBySym1 (l :: TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679459226] [a6989586621679459226])
- type SortBySym2 (t :: TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) (t :: [a6989586621679459226]) = SortBy t t
- data InsertBySym0 (l :: TyFun (TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type) -> Type))
- data InsertBySym1 (l :: TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (l :: TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type))
- data InsertBySym2 (l :: TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (l :: a6989586621679459225) (l :: TyFun [a6989586621679459225] [a6989586621679459225])
- type InsertBySym3 (t :: TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (t :: a6989586621679459225) (t :: [a6989586621679459225]) = InsertBy t t t
- data MaximumBySym0 (l :: TyFun (TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) (TyFun [a6989586621679459224] a6989586621679459224 -> Type))
- data MaximumBySym1 (l :: TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679459224] a6989586621679459224)
- type MaximumBySym2 (t :: TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) (t :: [a6989586621679459224]) = MaximumBy t t
- data MinimumBySym0 (l :: TyFun (TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) (TyFun [a6989586621679459223] a6989586621679459223 -> Type))
- data MinimumBySym1 (l :: TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679459223] a6989586621679459223)
- type MinimumBySym2 (t :: TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) (t :: [a6989586621679459223]) = MinimumBy t t
- data LengthSym0 (l :: TyFun [a6989586621679459194] Nat)
- type LengthSym1 (t :: [a6989586621679459194]) = Length t
- data SumSym0 (l :: TyFun [a6989586621679459196] a6989586621679459196)
- type SumSym1 (t :: [a6989586621679459196]) = Sum t
- data ProductSym0 (l :: TyFun [a6989586621679459195] a6989586621679459195)
- type ProductSym1 (t :: [a6989586621679459195]) = Product t
- data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679459193 [a6989586621679459193] -> Type))
- data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679459193 [a6989586621679459193])
- type ReplicateSym2 (t :: Nat) (t :: a6989586621679459193) = Replicate t t
- data TransposeSym0 (l :: TyFun [[a6989586621679459192]] [[a6989586621679459192]])
- type TransposeSym1 (t :: [[a6989586621679459192]]) = Transpose t
- data TakeSym0 (l :: TyFun Nat (TyFun [a6989586621679459209] [a6989586621679459209] -> Type))
- data TakeSym1 (l :: Nat) (l :: TyFun [a6989586621679459209] [a6989586621679459209])
- type TakeSym2 (t :: Nat) (t :: [a6989586621679459209]) = Take t t
- data DropSym0 (l :: TyFun Nat (TyFun [a6989586621679459208] [a6989586621679459208] -> Type))
- data DropSym1 (l :: Nat) (l :: TyFun [a6989586621679459208] [a6989586621679459208])
- type DropSym2 (t :: Nat) (t :: [a6989586621679459208]) = Drop t t
- data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679459207] ([a6989586621679459207], [a6989586621679459207]) -> Type))
- data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679459207] ([a6989586621679459207], [a6989586621679459207]))
- type SplitAtSym2 (t :: Nat) (t :: [a6989586621679459207]) = SplitAt t t
- data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679459214 Bool -> Type) (TyFun [a6989586621679459214] [a6989586621679459214] -> Type))
- data TakeWhileSym1 (l :: TyFun a6989586621679459214 Bool -> Type) (l :: TyFun [a6989586621679459214] [a6989586621679459214])
- type TakeWhileSym2 (t :: TyFun a6989586621679459214 Bool -> Type) (t :: [a6989586621679459214]) = TakeWhile t t
- data DropWhileSym0 (l :: TyFun (TyFun a6989586621679459213 Bool -> Type) (TyFun [a6989586621679459213] [a6989586621679459213] -> Type))
- data DropWhileSym1 (l :: TyFun a6989586621679459213 Bool -> Type) (l :: TyFun [a6989586621679459213] [a6989586621679459213])
- type DropWhileSym2 (t :: TyFun a6989586621679459213 Bool -> Type) (t :: [a6989586621679459213]) = DropWhile t t
- data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679459212 Bool -> Type) (TyFun [a6989586621679459212] [a6989586621679459212] -> Type))
- data DropWhileEndSym1 (l :: TyFun a6989586621679459212 Bool -> Type) (l :: TyFun [a6989586621679459212] [a6989586621679459212])
- type DropWhileEndSym2 (t :: TyFun a6989586621679459212 Bool -> Type) (t :: [a6989586621679459212]) = DropWhileEnd t t
- data SpanSym0 (l :: TyFun (TyFun a6989586621679459211 Bool -> Type) (TyFun [a6989586621679459211] ([a6989586621679459211], [a6989586621679459211]) -> Type))
- data SpanSym1 (l :: TyFun a6989586621679459211 Bool -> Type) (l :: TyFun [a6989586621679459211] ([a6989586621679459211], [a6989586621679459211]))
- type SpanSym2 (t :: TyFun a6989586621679459211 Bool -> Type) (t :: [a6989586621679459211]) = Span t t
- data BreakSym0 (l :: TyFun (TyFun a6989586621679459210 Bool -> Type) (TyFun [a6989586621679459210] ([a6989586621679459210], [a6989586621679459210]) -> Type))
- data BreakSym1 (l :: TyFun a6989586621679459210 Bool -> Type) (l :: TyFun [a6989586621679459210] ([a6989586621679459210], [a6989586621679459210]))
- type BreakSym2 (t :: TyFun a6989586621679459210 Bool -> Type) (t :: [a6989586621679459210]) = Break t t
- data StripPrefixSym0 (l :: TyFun [a6989586621679951006] (TyFun [a6989586621679951006] (Maybe [a6989586621679951006]) -> Type))
- data StripPrefixSym1 (l :: [a6989586621679951006]) (l :: TyFun [a6989586621679951006] (Maybe [a6989586621679951006]))
- type StripPrefixSym2 (t :: [a6989586621679951006]) (t :: [a6989586621679951006]) = StripPrefix t t
- data MaximumSym0 (l :: TyFun [a6989586621679459205] a6989586621679459205)
- type MaximumSym1 (t :: [a6989586621679459205]) = Maximum t
- data MinimumSym0 (l :: TyFun [a6989586621679459204] a6989586621679459204)
- type MinimumSym1 (t :: [a6989586621679459204]) = Minimum t
- data GroupSym0 (l :: TyFun [a6989586621679459206] [[a6989586621679459206]])
- type GroupSym1 (t :: [a6989586621679459206]) = Group t
- data GroupBySym0 (l :: TyFun (TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) (TyFun [a6989586621679459201] [[a6989586621679459201]] -> Type))
- data GroupBySym1 (l :: TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459201] [[a6989586621679459201]])
- type GroupBySym2 (t :: TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) (t :: [a6989586621679459201]) = GroupBy t t
- data LookupSym0 (l :: TyFun a6989586621679459199 (TyFun [(a6989586621679459199, b6989586621679459200)] (Maybe b6989586621679459200) -> Type))
- data LookupSym1 (l :: a6989586621679459199) (l :: TyFun [(a6989586621679459199, b6989586621679459200)] (Maybe b6989586621679459200))
- type LookupSym2 (t :: a6989586621679459199) (t :: [(a6989586621679459199, b6989586621679459200)]) = Lookup t t
- data FindSym0 (l :: TyFun (TyFun a6989586621679459221 Bool -> Type) (TyFun [a6989586621679459221] (Maybe a6989586621679459221) -> Type))
- data FindSym1 (l :: TyFun a6989586621679459221 Bool -> Type) (l :: TyFun [a6989586621679459221] (Maybe a6989586621679459221))
- type FindSym2 (t :: TyFun a6989586621679459221 Bool -> Type) (t :: [a6989586621679459221]) = Find t t
- data FilterSym0 (l :: TyFun (TyFun a6989586621679459222 Bool -> Type) (TyFun [a6989586621679459222] [a6989586621679459222] -> Type))
- data FilterSym1 (l :: TyFun a6989586621679459222 Bool -> Type) (l :: TyFun [a6989586621679459222] [a6989586621679459222])
- type FilterSym2 (t :: TyFun a6989586621679459222 Bool -> Type) (t :: [a6989586621679459222]) = Filter t t
- data PartitionSym0 (l :: TyFun (TyFun a6989586621679459198 Bool -> Type) (TyFun [a6989586621679459198] ([a6989586621679459198], [a6989586621679459198]) -> Type))
- data PartitionSym1 (l :: TyFun a6989586621679459198 Bool -> Type) (l :: TyFun [a6989586621679459198] ([a6989586621679459198], [a6989586621679459198]))
- type PartitionSym2 (t :: TyFun a6989586621679459198 Bool -> Type) (t :: [a6989586621679459198]) = Partition t t
- data (!!@#@$) (l :: TyFun [a6989586621679459191] (TyFun Nat a6989586621679459191 -> Type))
- data (l :: [a6989586621679459191]) !!@#@$$ (l :: TyFun Nat a6989586621679459191)
- type (!!@#@$$$) (t :: [a6989586621679459191]) (t :: Nat) = (!!) t t
- data ElemIndexSym0 (l :: TyFun a6989586621679459220 (TyFun [a6989586621679459220] (Maybe Nat) -> Type))
- data ElemIndexSym1 (l :: a6989586621679459220) (l :: TyFun [a6989586621679459220] (Maybe Nat))
- type ElemIndexSym2 (t :: a6989586621679459220) (t :: [a6989586621679459220]) = ElemIndex t t
- data ElemIndicesSym0 (l :: TyFun a6989586621679459219 (TyFun [a6989586621679459219] [Nat] -> Type))
- data ElemIndicesSym1 (l :: a6989586621679459219) (l :: TyFun [a6989586621679459219] [Nat])
- type ElemIndicesSym2 (t :: a6989586621679459219) (t :: [a6989586621679459219]) = ElemIndices t t
- data FindIndexSym0 (l :: TyFun (TyFun a6989586621679459218 Bool -> Type) (TyFun [a6989586621679459218] (Maybe Nat) -> Type))
- data FindIndexSym1 (l :: TyFun a6989586621679459218 Bool -> Type) (l :: TyFun [a6989586621679459218] (Maybe Nat))
- type FindIndexSym2 (t :: TyFun a6989586621679459218 Bool -> Type) (t :: [a6989586621679459218]) = FindIndex t t
- data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679459217 Bool -> Type) (TyFun [a6989586621679459217] [Nat] -> Type))
- data FindIndicesSym1 (l :: TyFun a6989586621679459217 Bool -> Type) (l :: TyFun [a6989586621679459217] [Nat])
- type FindIndicesSym2 (t :: TyFun a6989586621679459217 Bool -> Type) (t :: [a6989586621679459217]) = FindIndices t t
- data Zip4Sym0 (l :: TyFun [a6989586621679951002] (TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type) -> Type))
- data Zip4Sym1 (l :: [a6989586621679951002]) (l :: TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type))
- data Zip4Sym2 (l :: [a6989586621679951002]) (l :: [b6989586621679951003]) (l :: TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type))
- data Zip4Sym3 (l :: [a6989586621679951002]) (l :: [b6989586621679951003]) (l :: [c6989586621679951004]) (l :: TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)])
- type Zip4Sym4 (t :: [a6989586621679951002]) (t :: [b6989586621679951003]) (t :: [c6989586621679951004]) (t :: [d6989586621679951005]) = Zip4 t t t t
- data Zip5Sym0 (l :: TyFun [a6989586621679950997] (TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type) -> Type))
- data Zip5Sym1 (l :: [a6989586621679950997]) (l :: TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type))
- data Zip5Sym2 (l :: [a6989586621679950997]) (l :: [b6989586621679950998]) (l :: TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type))
- data Zip5Sym3 (l :: [a6989586621679950997]) (l :: [b6989586621679950998]) (l :: [c6989586621679950999]) (l :: TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type))
- data Zip5Sym4 (l :: [a6989586621679950997]) (l :: [b6989586621679950998]) (l :: [c6989586621679950999]) (l :: [d6989586621679951000]) (l :: TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)])
- type Zip5Sym5 (t :: [a6989586621679950997]) (t :: [b6989586621679950998]) (t :: [c6989586621679950999]) (t :: [d6989586621679951000]) (t :: [e6989586621679951001]) = Zip5 t t t t t
- data Zip6Sym0 (l :: TyFun [a6989586621679950991] (TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type) -> Type))
- data Zip6Sym1 (l :: [a6989586621679950991]) (l :: TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type))
- data Zip6Sym2 (l :: [a6989586621679950991]) (l :: [b6989586621679950992]) (l :: TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type))
- data Zip6Sym3 (l :: [a6989586621679950991]) (l :: [b6989586621679950992]) (l :: [c6989586621679950993]) (l :: TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type))
- data Zip6Sym4 (l :: [a6989586621679950991]) (l :: [b6989586621679950992]) (l :: [c6989586621679950993]) (l :: [d6989586621679950994]) (l :: TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type))
- data Zip6Sym5 (l :: [a6989586621679950991]) (l :: [b6989586621679950992]) (l :: [c6989586621679950993]) (l :: [d6989586621679950994]) (l :: [e6989586621679950995]) (l :: TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)])
- type Zip6Sym6 (t :: [a6989586621679950991]) (t :: [b6989586621679950992]) (t :: [c6989586621679950993]) (t :: [d6989586621679950994]) (t :: [e6989586621679950995]) (t :: [f6989586621679950996]) = Zip6 t t t t t t
- data Zip7Sym0 (l :: TyFun [a6989586621679950984] (TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
- data Zip7Sym1 (l :: [a6989586621679950984]) (l :: TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type))
- data Zip7Sym2 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type))
- data Zip7Sym3 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: [c6989586621679950986]) (l :: TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type))
- data Zip7Sym4 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: [c6989586621679950986]) (l :: [d6989586621679950987]) (l :: TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type))
- data Zip7Sym5 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: [c6989586621679950986]) (l :: [d6989586621679950987]) (l :: [e6989586621679950988]) (l :: TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type))
- data Zip7Sym6 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: [c6989586621679950986]) (l :: [d6989586621679950987]) (l :: [e6989586621679950988]) (l :: [f6989586621679950989]) (l :: TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)])
- type Zip7Sym7 (t :: [a6989586621679950984]) (t :: [b6989586621679950985]) (t :: [c6989586621679950986]) (t :: [d6989586621679950987]) (t :: [e6989586621679950988]) (t :: [f6989586621679950989]) (t :: [g6989586621679950990]) = Zip7 t t t t t t t
- data ZipWith4Sym0 (l :: TyFun (TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950979] (TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> Type) -> Type))
- data ZipWith4Sym1 (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679950979] (TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> Type))
- data ZipWith4Sym2 (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950979]) (l :: TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type))
- data ZipWith4Sym3 (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950979]) (l :: [b6989586621679950980]) (l :: TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type))
- data ZipWith4Sym4 (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950979]) (l :: [b6989586621679950980]) (l :: [c6989586621679950981]) (l :: TyFun [d6989586621679950982] [e6989586621679950983])
- type ZipWith4Sym5 (t :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679950979]) (t :: [b6989586621679950980]) (t :: [c6989586621679950981]) (t :: [d6989586621679950982]) = ZipWith4 t t t t t
- data ZipWith5Sym0 (l :: TyFun (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950973] (TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith5Sym1 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679950973] (TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> Type))
- data ZipWith5Sym2 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950973]) (l :: TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type))
- data ZipWith5Sym3 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950973]) (l :: [b6989586621679950974]) (l :: TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type))
- data ZipWith5Sym4 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950973]) (l :: [b6989586621679950974]) (l :: [c6989586621679950975]) (l :: TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type))
- data ZipWith5Sym5 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950973]) (l :: [b6989586621679950974]) (l :: [c6989586621679950975]) (l :: [d6989586621679950976]) (l :: TyFun [e6989586621679950977] [f6989586621679950978])
- type ZipWith5Sym6 (t :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679950973]) (t :: [b6989586621679950974]) (t :: [c6989586621679950975]) (t :: [d6989586621679950976]) (t :: [e6989586621679950977]) = ZipWith5 t t t t t t
- data ZipWith6Sym0 (l :: TyFun (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith6Sym1 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith6Sym2 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type))
- data ZipWith6Sym3 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: [b6989586621679950967]) (l :: TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type))
- data ZipWith6Sym4 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: [b6989586621679950967]) (l :: [c6989586621679950968]) (l :: TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type))
- data ZipWith6Sym5 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: [b6989586621679950967]) (l :: [c6989586621679950968]) (l :: [d6989586621679950969]) (l :: TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type))
- data ZipWith6Sym6 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: [b6989586621679950967]) (l :: [c6989586621679950968]) (l :: [d6989586621679950969]) (l :: [e6989586621679950970]) (l :: TyFun [f6989586621679950971] [g6989586621679950972])
- type ZipWith6Sym7 (t :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679950966]) (t :: [b6989586621679950967]) (t :: [c6989586621679950968]) (t :: [d6989586621679950969]) (t :: [e6989586621679950970]) (t :: [f6989586621679950971]) = ZipWith6 t t t t t t t
- data ZipWith7Sym0 (l :: TyFun (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith7Sym1 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith7Sym2 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type))
- data ZipWith7Sym3 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type))
- data ZipWith7Sym4 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: [c6989586621679950960]) (l :: TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type))
- data ZipWith7Sym5 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: [c6989586621679950960]) (l :: [d6989586621679950961]) (l :: TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type))
- data ZipWith7Sym6 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: [c6989586621679950960]) (l :: [d6989586621679950961]) (l :: [e6989586621679950962]) (l :: TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type))
- data ZipWith7Sym7 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: [c6989586621679950960]) (l :: [d6989586621679950961]) (l :: [e6989586621679950962]) (l :: [f6989586621679950963]) (l :: TyFun [g6989586621679950964] [h6989586621679950965])
- type ZipWith7Sym8 (t :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679950958]) (t :: [b6989586621679950959]) (t :: [c6989586621679950960]) (t :: [d6989586621679950961]) (t :: [e6989586621679950962]) (t :: [f6989586621679950963]) (t :: [g6989586621679950964]) = ZipWith7 t t t t t t t t
- data UnlinesSym0 (l :: TyFun [Symbol] Symbol)
- type UnlinesSym1 (t :: [Symbol]) = Unlines t
- data UnwordsSym0 (l :: TyFun [Symbol] Symbol)
- type UnwordsSym1 (t :: [Symbol]) = Unwords t
- data NubSym0 (l :: TyFun [a6989586621679459190] [a6989586621679459190])
- type NubSym1 (t :: [a6989586621679459190]) = Nub t
- data NubBySym0 (l :: TyFun (TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) (TyFun [a6989586621679459189] [a6989586621679459189] -> Type))
- data NubBySym1 (l :: TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459189] [a6989586621679459189])
- type NubBySym2 (t :: TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) (t :: [a6989586621679459189]) = NubBy t t
- data UnionSym0 (l :: TyFun [a6989586621679459186] (TyFun [a6989586621679459186] [a6989586621679459186] -> Type))
- data UnionSym1 (l :: [a6989586621679459186]) (l :: TyFun [a6989586621679459186] [a6989586621679459186])
- type UnionSym2 (t :: [a6989586621679459186]) (t :: [a6989586621679459186]) = Union t t
- data UnionBySym0 (l :: TyFun (TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type) -> Type))
- data UnionBySym1 (l :: TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type))
- data UnionBySym2 (l :: TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (l :: [a6989586621679459187]) (l :: TyFun [a6989586621679459187] [a6989586621679459187])
- type UnionBySym3 (t :: TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (t :: [a6989586621679459187]) (t :: [a6989586621679459187]) = UnionBy t t t
- data GenericLengthSym0 (l :: TyFun [a6989586621679459185] i6989586621679459184)
- type GenericLengthSym1 (t :: [a6989586621679459185]) = GenericLength t
- data GenericTakeSym0 (l :: TyFun i6989586621679950956 (TyFun [a6989586621679950957] [a6989586621679950957] -> Type))
- data GenericTakeSym1 (l :: i6989586621679950956) (l :: TyFun [a6989586621679950957] [a6989586621679950957])
- type GenericTakeSym2 (t :: i6989586621679950956) (t :: [a6989586621679950957]) = GenericTake t t
- data GenericDropSym0 (l :: TyFun i6989586621679950954 (TyFun [a6989586621679950955] [a6989586621679950955] -> Type))
- data GenericDropSym1 (l :: i6989586621679950954) (l :: TyFun [a6989586621679950955] [a6989586621679950955])
- type GenericDropSym2 (t :: i6989586621679950954) (t :: [a6989586621679950955]) = GenericDrop t t
- data GenericSplitAtSym0 (l :: TyFun i6989586621679950952 (TyFun [a6989586621679950953] ([a6989586621679950953], [a6989586621679950953]) -> Type))
- data GenericSplitAtSym1 (l :: i6989586621679950952) (l :: TyFun [a6989586621679950953] ([a6989586621679950953], [a6989586621679950953]))
- type GenericSplitAtSym2 (t :: i6989586621679950952) (t :: [a6989586621679950953]) = GenericSplitAt t t
- data GenericIndexSym0 (l :: TyFun [a6989586621679950951] (TyFun i6989586621679950950 a6989586621679950951 -> Type))
- data GenericIndexSym1 (l :: [a6989586621679950951]) (l :: TyFun i6989586621679950950 a6989586621679950951)
- type GenericIndexSym2 (t :: [a6989586621679950951]) (t :: i6989586621679950950) = GenericIndex t t
- data GenericReplicateSym0 (l :: TyFun i6989586621679950948 (TyFun a6989586621679950949 [a6989586621679950949] -> Type))
- data GenericReplicateSym1 (l :: i6989586621679950948) (l :: TyFun a6989586621679950949 [a6989586621679950949])
- type GenericReplicateSym2 (t :: i6989586621679950948) (t :: a6989586621679950949) = GenericReplicate t t
Basic functions
type family Length (a :: [a]) :: Nat where ... #
Equations
| Length '[] = FromInteger 0 | |
| Length ((:) _ xs) = Apply (Apply (+@#@$) (FromInteger 1)) (Apply LengthSym0 xs) |
List transformations
type family Intersperse (a :: a) (a :: [a]) :: [a] where ... #
Equations
| Intersperse _ '[] = '[] | |
| 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 _ '[x] = x | |
| Foldr1 f ((:) x ((:) wild_6989586621679459773 wild_6989586621679459775)) = Apply (Apply f x) (Apply (Apply Foldr1Sym0 f) (Let6989586621679470571XsSym4 f x wild_6989586621679459773 wild_6989586621679459775)) | |
| Foldr1 _ '[] = Apply ErrorSym0 "Data.Singletons.List.foldr1: empty list" |
Special folds
type family Sum (a :: [a]) :: a where ... #
Equations
| Sum l = Apply (Apply (Let6989586621679468621Sum'Sym1 l) l) (FromInteger 0) |
type family Product (a :: [a]) :: a where ... #
Equations
| Product l = Apply (Apply (Let6989586621679468597ProdSym1 l) l) (FromInteger 1) |
Building lists
Scans
type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ... #
Equations
| Scanr1 _ '[] = '[] | |
| Scanr1 _ '[x] = Apply (Apply (:@#@$) x) '[] | |
| Scanr1 f ((:) x ((:) wild_6989586621679459793 wild_6989586621679459795)) = Case_6989586621679470283 f x wild_6989586621679459793 wild_6989586621679459795 (Let6989586621679470264Scrutinee_6989586621679459787Sym4 f x wild_6989586621679459793 wild_6989586621679459795) |
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_6989586621679468584 n x (Let6989586621679468576Scrutinee_6989586621679459889Sym2 n x) |
Unfolding
type family Unfoldr (a :: TyFun b (Maybe (a, b)) -> Type) (a :: b) :: [a] where ... #
Equations
| Unfoldr f b = Case_6989586621679469912 f b (Let6989586621679469904Scrutinee_6989586621679459797Sym2 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 _ '[] = Apply (Apply Tuple2Sym0 Let6989586621679468897XsSym0) Let6989586621679468897XsSym0 | |
| Span p ((:) x xs') = Case_6989586621679468927 p x xs' (Let6989586621679468914Scrutinee_6989586621679459869Sym3 p x xs') |
type family Break (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ... #
Equations
| Break _ '[] = Apply (Apply Tuple2Sym0 Let6989586621679468804XsSym0) Let6989586621679468804XsSym0 | |
| Break p ((:) x xs') = Case_6989586621679468834 p x xs' (Let6989586621679468821Scrutinee_6989586621679459871Sym3 p x xs') |
type family StripPrefix (a :: [a]) (a :: [a]) :: Maybe [a] where ... #
Equations
| StripPrefix '[] ys = Apply JustSym0 ys | |
| StripPrefix arg_6989586621679951074 arg_6989586621679951076 = Case_6989586621679963975 arg_6989586621679951074 arg_6989586621679951076 (Apply (Apply Tuple2Sym0 arg_6989586621679951074) arg_6989586621679951076) |
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 '[] ((:) _ _) = TrueSym0 | |
| IsPrefixOf ((:) _ _) '[] = FalseSym0 | |
| IsPrefixOf ((:) x xs) ((:) y ys) = Apply (Apply (&&@#@$) (Apply (Apply (==@#@$) x) y)) (Apply (Apply IsPrefixOfSym0 xs) ys) |
type family IsSuffixOf (a :: [a]) (a :: [a]) :: Bool where ... #
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_6989586621679468725 key x y xys (Let6989586621679468706Scrutinee_6989586621679459885Sym4 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_6989586621679469156 = Apply (Apply (Apply (.@#@$) ListToMaybeSym0) (Apply FilterSym0 p)) a_6989586621679469156 |
Indexing lists
type family ElemIndices (a :: a) (a :: [a]) :: [Nat] where ... #
Equations
| ElemIndices x a_6989586621679469762 = Apply (Apply FindIndicesSym0 (Apply (==@#@$) x)) a_6989586621679469762 |
type family FindIndex (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe Nat where ... #
Equations
| FindIndex p a_6989586621679469775 = Apply (Apply (Apply (.@#@$) ListToMaybeSym0) (Apply FindIndicesSym0 p)) a_6989586621679469775 |
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 '[] '[] ((:) _ _) = '[] | |
| Zip3 '[] ((:) _ _) '[] = '[] | |
| Zip3 '[] ((:) _ _) ((:) _ _) = '[] | |
| Zip3 ((:) _ _) '[] '[] = '[] | |
| Zip3 ((:) _ _) '[] ((:) _ _) = '[] | |
| Zip3 ((:) _ _) ((:) _ _) '[] = '[] |
type family Zip4 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [(a, b, c, d)] where ... #
Equations
| Zip4 a_6989586621679963929 a_6989586621679963931 a_6989586621679963933 a_6989586621679963935 = Apply (Apply (Apply (Apply (Apply ZipWith4Sym0 Tuple4Sym0) a_6989586621679963929) a_6989586621679963931) a_6989586621679963933) a_6989586621679963935 |
type family Zip5 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [(a, b, c, d, e)] where ... #
Equations
| Zip5 a_6989586621679963884 a_6989586621679963886 a_6989586621679963888 a_6989586621679963890 a_6989586621679963892 = Apply (Apply (Apply (Apply (Apply (Apply ZipWith5Sym0 Tuple5Sym0) a_6989586621679963884) a_6989586621679963886) a_6989586621679963888) a_6989586621679963890) a_6989586621679963892 |
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_6989586621679963827 a_6989586621679963829 a_6989586621679963831 a_6989586621679963833 a_6989586621679963835 a_6989586621679963837 = Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith6Sym0 Tuple6Sym0) a_6989586621679963827) a_6989586621679963829) a_6989586621679963831) a_6989586621679963833) a_6989586621679963835) a_6989586621679963837 |
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_6989586621679963757 a_6989586621679963759 a_6989586621679963761 a_6989586621679963763 a_6989586621679963765 a_6989586621679963767 a_6989586621679963769 = Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 Tuple7Sym0) a_6989586621679963757) a_6989586621679963759) a_6989586621679963761) a_6989586621679963763) a_6989586621679963765) a_6989586621679963767) a_6989586621679963769 |
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 ... #
Equations
| ZipWith3 z ((:) a as) ((:) b bs) ((:) c cs) = Apply (Apply (:@#@$) (Apply (Apply (Apply z a) b) c)) (Apply (Apply (Apply (Apply ZipWith3Sym0 z) as) bs) cs) | |
| ZipWith3 _ '[] '[] '[] = '[] | |
| ZipWith3 _ '[] '[] ((:) _ _) = '[] | |
| ZipWith3 _ '[] ((:) _ _) '[] = '[] | |
| ZipWith3 _ '[] ((:) _ _) ((:) _ _) = '[] | |
| ZipWith3 _ ((:) _ _) '[] '[] = '[] | |
| ZipWith3 _ ((:) _ _) '[] ((:) _ _) = '[] | |
| ZipWith3 _ ((:) _ _) ((:) _ _) '[] = '[] |
type family ZipWith4 (a :: TyFun a (TyFun b (TyFun c (TyFun d e -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [e] where ... #
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 ... #
Equations
| ZipWith7 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) ((:) f fs) ((:) g gs) = Apply (Apply (:@#@$) (Apply (Apply (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e) f) g)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 z) as) bs) cs) ds) es) fs) gs) | |
| ZipWith7 _ _ _ _ _ _ _ _ = '[] |
type family Unzip7 (a :: [(a, b, c, d, e, f, g)]) :: ([a], [b], [c], [d], [e], [f], [g]) where ... #
Special lists
Functions on Symbols
"Set" operations
Ordered lists
type family Sort (a :: [a]) :: [a] where ... #
Equations
| Sort a_6989586621679469245 = Apply (Apply SortBySym0 CompareSym0) a_6989586621679469245 |
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_6989586621679469308 a_6989586621679469310 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) a_6989586621679469308) a_6989586621679469310 |
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 _ '[] '[] = '[] | |
| IntersectBy _ '[] ((:) _ _) = '[] | |
| IntersectBy _ ((:) _ _) '[] = '[] | |
| IntersectBy eq ((:) wild_6989586621679459855 wild_6989586621679459857) ((:) wild_6989586621679459859 wild_6989586621679459861) = Apply (Apply FilterSym0 (Apply (Apply (Apply (Apply (Apply Lambda_6989586621679470461Sym0 eq) wild_6989586621679459855) wild_6989586621679459857) wild_6989586621679459859) wild_6989586621679459861)) (Let6989586621679470410XsSym5 eq wild_6989586621679459855 wild_6989586621679459857 wild_6989586621679459859 wild_6989586621679459861) |
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 _ '[] = Apply ErrorSym0 "Data.Singletons.List.maximumBy: empty list" | |
| MaximumBy cmp ((:) wild_6989586621679459841 wild_6989586621679459843) = Apply (Apply Foldl1Sym0 (Let6989586621679470627MaxBySym3 cmp wild_6989586621679459841 wild_6989586621679459843)) (Let6989586621679470614XsSym3 cmp wild_6989586621679459841 wild_6989586621679459843) |
type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| MinimumBy _ '[] = Apply ErrorSym0 "Data.Singletons.List.minimumBy: empty list" | |
| MinimumBy cmp ((:) wild_6989586621679459847 wild_6989586621679459849) = Apply (Apply Foldl1Sym0 (Let6989586621679470711MinBySym3 cmp wild_6989586621679459847 wild_6989586621679459849)) (Let6989586621679470698XsSym3 cmp wild_6989586621679459847 wild_6989586621679459849) |
The "generic" operations
type family GenericLength (a :: [a]) :: i where ... #
Equations
| GenericLength '[] = FromInteger 0 | |
| GenericLength ((:) _ xs) = Apply (Apply (+@#@$) (FromInteger 1)) (Apply GenericLengthSym0 xs) |
type family GenericTake (a :: i) (a :: [a]) :: [a] where ... #
Equations
| GenericTake a_6989586621679963516 a_6989586621679963518 = Apply (Apply TakeSym0 a_6989586621679963516) a_6989586621679963518 |
type family GenericDrop (a :: i) (a :: [a]) :: [a] where ... #
Equations
| GenericDrop a_6989586621679963501 a_6989586621679963503 = Apply (Apply DropSym0 a_6989586621679963501) a_6989586621679963503 |
type family GenericSplitAt (a :: i) (a :: [a]) :: ([a], [a]) where ... #
Equations
| GenericSplitAt a_6989586621679963486 a_6989586621679963488 = Apply (Apply SplitAtSym0 a_6989586621679963486) a_6989586621679963488 |
type family GenericIndex (a :: [a]) (a :: i) :: a where ... #
Equations
| GenericIndex a_6989586621679963471 a_6989586621679963473 = Apply (Apply (!!@#@$) a_6989586621679963471) a_6989586621679963473 |
type family GenericReplicate (a :: i) (a :: a) :: [a] where ... #
Equations
| GenericReplicate a_6989586621679963456 a_6989586621679963458 = Apply (Apply ReplicateSym0 a_6989586621679963456) a_6989586621679963458 |
Defunctionalization symbols
data (:@#@$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type)) #
Instances
| SuppressUnusedWarnings ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) (l :: a3530822107858468865) # | |
data (l :: a3530822107858468865) :@#@$$ (l :: TyFun [a3530822107858468865] [a3530822107858468865]) #
Instances
| SuppressUnusedWarnings ((:@#@$$) :: a3530822107858468865 -> TyFun [a3530822107858468865] [a3530822107858468865] -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply ((:@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.Instances | |
type (++@#@$$$) (t :: [a6989586621679436421]) (t :: [a6989586621679436421]) = (++) t t #
data (l :: [a6989586621679436421]) ++@#@$$ (l :: TyFun [a6989586621679436421] [a6989586621679436421]) #
Instances
| SuppressUnusedWarnings ((++@#@$$) :: [a6989586621679436421] -> TyFun [a6989586621679436421] [a6989586621679436421] -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply ((++@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
data (++@#@$) (l :: TyFun [a6989586621679436421] (TyFun [a6989586621679436421] [a6989586621679436421] -> Type)) #
Instances
| SuppressUnusedWarnings ((++@#@$) :: TyFun [a6989586621679436421] (TyFun [a6989586621679436421] [a6989586621679436421] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply ((++@#@$) :: TyFun [a6989586621679436421] (TyFun [a6989586621679436421] [a6989586621679436421] -> Type) -> *) (l :: [a6989586621679436421]) # | |
data HeadSym0 (l :: TyFun [a6989586621679459312] a6989586621679459312) #
Instances
| SuppressUnusedWarnings (HeadSym0 :: TyFun [a6989586621679459312] a6989586621679459312 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (HeadSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
data LastSym0 (l :: TyFun [a6989586621679459311] a6989586621679459311) #
Instances
| SuppressUnusedWarnings (LastSym0 :: TyFun [a6989586621679459311] a6989586621679459311 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (LastSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
data TailSym0 (l :: TyFun [a6989586621679459310] [a6989586621679459310]) #
Instances
| SuppressUnusedWarnings (TailSym0 :: TyFun [a6989586621679459310] [a6989586621679459310] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TailSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
data InitSym0 (l :: TyFun [a6989586621679459309] [a6989586621679459309]) #
Instances
| SuppressUnusedWarnings (InitSym0 :: TyFun [a6989586621679459309] [a6989586621679459309] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InitSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
data NullSym0 (l :: TyFun [a6989586621679459308] Bool) #
Instances
| SuppressUnusedWarnings (NullSym0 :: TyFun [a6989586621679459308] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NullSym0 :: TyFun [a] Bool -> *) (l :: [a]) # | |
data MapSym0 (l :: TyFun (TyFun a6989586621679436422 b6989586621679436423 -> Type) (TyFun [a6989586621679436422] [b6989586621679436423] -> Type)) #
Instances
| SuppressUnusedWarnings (MapSym0 :: TyFun (TyFun a6989586621679436422 b6989586621679436423 -> Type) (TyFun [a6989586621679436422] [b6989586621679436423] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (MapSym0 :: TyFun (TyFun a6989586621679436422 b6989586621679436423 -> Type) (TyFun [a6989586621679436422] [b6989586621679436423] -> Type) -> *) (l :: TyFun a6989586621679436422 b6989586621679436423 -> Type) # | |
data MapSym1 (l :: TyFun a6989586621679436422 b6989586621679436423 -> Type) (l :: TyFun [a6989586621679436422] [b6989586621679436423]) #
Instances
| SuppressUnusedWarnings (MapSym1 :: (TyFun a6989586621679436422 b6989586621679436423 -> Type) -> TyFun [a6989586621679436422] [b6989586621679436423] -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (MapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) # | |
type MapSym2 (t :: TyFun a6989586621679436422 b6989586621679436423 -> Type) (t :: [a6989586621679436422]) = Map t t #
data ReverseSym0 (l :: TyFun [a6989586621679459307] [a6989586621679459307]) #
Instances
| SuppressUnusedWarnings (ReverseSym0 :: TyFun [a6989586621679459307] [a6989586621679459307] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ReverseSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ReverseSym1 (t :: [a6989586621679459307]) = Reverse t #
data IntersperseSym0 (l :: TyFun a6989586621679459306 (TyFun [a6989586621679459306] [a6989586621679459306] -> Type)) #
Instances
| SuppressUnusedWarnings (IntersperseSym0 :: TyFun a6989586621679459306 (TyFun [a6989586621679459306] [a6989586621679459306] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersperseSym0 :: TyFun a6989586621679459306 (TyFun [a6989586621679459306] [a6989586621679459306] -> Type) -> *) (l :: a6989586621679459306) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersperseSym0 :: TyFun a6989586621679459306 (TyFun [a6989586621679459306] [a6989586621679459306] -> Type) -> *) (l :: a6989586621679459306) = IntersperseSym1 l | |
data IntersperseSym1 (l :: a6989586621679459306) (l :: TyFun [a6989586621679459306] [a6989586621679459306]) #
Instances
| SuppressUnusedWarnings (IntersperseSym1 :: a6989586621679459306 -> TyFun [a6989586621679459306] [a6989586621679459306] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersperseSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IntersperseSym2 (t :: a6989586621679459306) (t :: [a6989586621679459306]) = Intersperse t t #
data IntercalateSym0 (l :: TyFun [a6989586621679459305] (TyFun [[a6989586621679459305]] [a6989586621679459305] -> Type)) #
Instances
| SuppressUnusedWarnings (IntercalateSym0 :: TyFun [a6989586621679459305] (TyFun [[a6989586621679459305]] [a6989586621679459305] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntercalateSym0 :: TyFun [a6989586621679459305] (TyFun [[a6989586621679459305]] [a6989586621679459305] -> Type) -> *) (l :: [a6989586621679459305]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntercalateSym0 :: TyFun [a6989586621679459305] (TyFun [[a6989586621679459305]] [a6989586621679459305] -> Type) -> *) (l :: [a6989586621679459305]) = IntercalateSym1 l | |
data IntercalateSym1 (l :: [a6989586621679459305]) (l :: TyFun [[a6989586621679459305]] [a6989586621679459305]) #
Instances
| SuppressUnusedWarnings (IntercalateSym1 :: [a6989586621679459305] -> TyFun [[a6989586621679459305]] [a6989586621679459305] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntercalateSym1 l1 :: TyFun [[a]] [a] -> *) (l2 :: [[a]]) # | |
Defined in Data.Singletons.Prelude.List | |
type IntercalateSym2 (t :: [a6989586621679459305]) (t :: [[a6989586621679459305]]) = Intercalate t t #
data SubsequencesSym0 (l :: TyFun [a6989586621679459304] [[a6989586621679459304]]) #
Instances
| SuppressUnusedWarnings (SubsequencesSym0 :: TyFun [a6989586621679459304] [[a6989586621679459304]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SubsequencesSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type SubsequencesSym1 (t :: [a6989586621679459304]) = Subsequences t #
data PermutationsSym0 (l :: TyFun [a6989586621679459301] [[a6989586621679459301]]) #
Instances
| SuppressUnusedWarnings (PermutationsSym0 :: TyFun [a6989586621679459301] [[a6989586621679459301]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (PermutationsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type PermutationsSym1 (t :: [a6989586621679459301]) = Permutations t #
data FoldlSym0 (l :: TyFun (TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (TyFun b6989586621679270365 (TyFun [a6989586621679270364] b6989586621679270365 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (FoldlSym0 :: TyFun (TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (TyFun b6989586621679270365 (TyFun [a6989586621679270364] b6989586621679270365 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (TyFun b6989586621679270365 (TyFun [a6989586621679270364] b6989586621679270365 -> Type) -> Type) -> *) (l :: TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (TyFun b6989586621679270365 (TyFun [a6989586621679270364] b6989586621679270365 -> Type) -> Type) -> *) (l :: TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) = FoldlSym1 l | |
data FoldlSym1 (l :: TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (l :: TyFun b6989586621679270365 (TyFun [a6989586621679270364] b6989586621679270365 -> Type)) #
Instances
| SuppressUnusedWarnings (FoldlSym1 :: (TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) -> TyFun b6989586621679270365 (TyFun [a6989586621679270364] b6989586621679270365 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldlSym1 l1 :: TyFun b6989586621679270365 (TyFun [a6989586621679270364] b6989586621679270365 -> Type) -> *) (l2 :: b6989586621679270365) # | |
data FoldlSym2 (l :: TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (l :: b6989586621679270365) (l :: TyFun [a6989586621679270364] b6989586621679270365) #
Instances
| SuppressUnusedWarnings (FoldlSym2 :: (TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) -> b6989586621679270365 -> TyFun [a6989586621679270364] b6989586621679270365 -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldlSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) # | |
type FoldlSym3 (t :: TyFun b6989586621679270365 (TyFun a6989586621679270364 b6989586621679270365 -> Type) -> Type) (t :: b6989586621679270365) (t :: [a6989586621679270364]) = Foldl t t t #
data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Foldl'Sym0 :: TyFun (TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type) -> Type) -> *) (l :: TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type) -> Type) -> *) (l :: TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) = Foldl'Sym1 l | |
data Foldl'Sym1 (l :: TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (l :: TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type)) #
Instances
| SuppressUnusedWarnings (Foldl'Sym1 :: (TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) -> TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type) -> *) (l2 :: b6989586621679459300) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679459300 (TyFun [a6989586621679459299] b6989586621679459300 -> Type) -> *) (l2 :: b6989586621679459300) = Foldl'Sym2 l1 l2 | |
data Foldl'Sym2 (l :: TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (l :: b6989586621679459300) (l :: TyFun [a6989586621679459299] b6989586621679459300) #
Instances
| SuppressUnusedWarnings (Foldl'Sym2 :: (TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) -> b6989586621679459300 -> TyFun [a6989586621679459299] b6989586621679459300 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl'Sym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Foldl'Sym3 (t :: TyFun b6989586621679459300 (TyFun a6989586621679459299 b6989586621679459300 -> Type) -> Type) (t :: b6989586621679459300) (t :: [a6989586621679459299]) = Foldl' t t t #
data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) (TyFun [a6989586621679459298] a6989586621679459298 -> Type)) #
Instances
| SuppressUnusedWarnings (Foldl1Sym0 :: TyFun (TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) (TyFun [a6989586621679459298] a6989586621679459298 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) (TyFun [a6989586621679459298] a6989586621679459298 -> Type) -> *) (l :: TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) (TyFun [a6989586621679459298] a6989586621679459298 -> Type) -> *) (l :: TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) = Foldl1Sym1 l | |
data Foldl1Sym1 (l :: TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) (l :: TyFun [a6989586621679459298] a6989586621679459298) #
Instances
| SuppressUnusedWarnings (Foldl1Sym1 :: (TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) -> TyFun [a6989586621679459298] a6989586621679459298 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Foldl1Sym2 (t :: TyFun a6989586621679459298 (TyFun a6989586621679459298 a6989586621679459298 -> Type) -> Type) (t :: [a6989586621679459298]) = Foldl1 t t #
data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) (TyFun [a6989586621679459297] a6989586621679459297 -> Type)) #
Instances
| SuppressUnusedWarnings (Foldl1'Sym0 :: TyFun (TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) (TyFun [a6989586621679459297] a6989586621679459297 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) (TyFun [a6989586621679459297] a6989586621679459297 -> Type) -> *) (l :: TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) (TyFun [a6989586621679459297] a6989586621679459297 -> Type) -> *) (l :: TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) = Foldl1'Sym1 l | |
data Foldl1'Sym1 (l :: TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) (l :: TyFun [a6989586621679459297] a6989586621679459297) #
Instances
| SuppressUnusedWarnings (Foldl1'Sym1 :: (TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) -> TyFun [a6989586621679459297] a6989586621679459297 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl1'Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Foldl1'Sym2 (t :: TyFun a6989586621679459297 (TyFun a6989586621679459297 a6989586621679459297 -> Type) -> Type) (t :: [a6989586621679459297]) = Foldl1' t t #
data FoldrSym0 (l :: TyFun (TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (TyFun b6989586621679436425 (TyFun [a6989586621679436424] b6989586621679436425 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (FoldrSym0 :: TyFun (TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (TyFun b6989586621679436425 (TyFun [a6989586621679436424] b6989586621679436425 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (TyFun b6989586621679436425 (TyFun [a6989586621679436424] b6989586621679436425 -> Type) -> Type) -> *) (l :: TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Base type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (TyFun b6989586621679436425 (TyFun [a6989586621679436424] b6989586621679436425 -> Type) -> Type) -> *) (l :: TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) = FoldrSym1 l | |
data FoldrSym1 (l :: TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (l :: TyFun b6989586621679436425 (TyFun [a6989586621679436424] b6989586621679436425 -> Type)) #
Instances
| SuppressUnusedWarnings (FoldrSym1 :: (TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) -> TyFun b6989586621679436425 (TyFun [a6989586621679436424] b6989586621679436425 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldrSym1 l1 :: TyFun b6989586621679436425 (TyFun [a6989586621679436424] b6989586621679436425 -> Type) -> *) (l2 :: b6989586621679436425) # | |
data FoldrSym2 (l :: TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (l :: b6989586621679436425) (l :: TyFun [a6989586621679436424] b6989586621679436425) #
Instances
| SuppressUnusedWarnings (FoldrSym2 :: (TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) -> b6989586621679436425 -> TyFun [a6989586621679436424] b6989586621679436425 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldrSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) # | |
type FoldrSym3 (t :: TyFun a6989586621679436424 (TyFun b6989586621679436425 b6989586621679436425 -> Type) -> Type) (t :: b6989586621679436425) (t :: [a6989586621679436424]) = Foldr t t t #
data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) (TyFun [a6989586621679459296] a6989586621679459296 -> Type)) #
Instances
| SuppressUnusedWarnings (Foldr1Sym0 :: TyFun (TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) (TyFun [a6989586621679459296] a6989586621679459296 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) (TyFun [a6989586621679459296] a6989586621679459296 -> Type) -> *) (l :: TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) (TyFun [a6989586621679459296] a6989586621679459296 -> Type) -> *) (l :: TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) = Foldr1Sym1 l | |
data Foldr1Sym1 (l :: TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) (l :: TyFun [a6989586621679459296] a6989586621679459296) #
Instances
| SuppressUnusedWarnings (Foldr1Sym1 :: (TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) -> TyFun [a6989586621679459296] a6989586621679459296 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldr1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Foldr1Sym2 (t :: TyFun a6989586621679459296 (TyFun a6989586621679459296 a6989586621679459296 -> Type) -> Type) (t :: [a6989586621679459296]) = Foldr1 t t #
data ConcatSym0 (l :: TyFun [[a6989586621679459295]] [a6989586621679459295]) #
Instances
| SuppressUnusedWarnings (ConcatSym0 :: TyFun [[a6989586621679459295]] [a6989586621679459295] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ConcatSym0 :: TyFun [[a]] [a] -> *) (l :: [[a]]) # | |
Defined in Data.Singletons.Prelude.List | |
type ConcatSym1 (t :: [[a6989586621679459295]]) = Concat t #
data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679459293 [b6989586621679459294] -> Type) (TyFun [a6989586621679459293] [b6989586621679459294] -> Type)) #
Instances
| SuppressUnusedWarnings (ConcatMapSym0 :: TyFun (TyFun a6989586621679459293 [b6989586621679459294] -> Type) (TyFun [a6989586621679459293] [b6989586621679459294] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ConcatMapSym0 :: TyFun (TyFun a6989586621679459293 [b6989586621679459294] -> Type) (TyFun [a6989586621679459293] [b6989586621679459294] -> Type) -> *) (l :: TyFun a6989586621679459293 [b6989586621679459294] -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data ConcatMapSym1 (l :: TyFun a6989586621679459293 [b6989586621679459294] -> Type) (l :: TyFun [a6989586621679459293] [b6989586621679459294]) #
Instances
| SuppressUnusedWarnings (ConcatMapSym1 :: (TyFun a6989586621679459293 [b6989586621679459294] -> Type) -> TyFun [a6989586621679459293] [b6989586621679459294] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ConcatMapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ConcatMapSym2 (t :: TyFun a6989586621679459293 [b6989586621679459294] -> Type) (t :: [a6989586621679459293]) = ConcatMap t t #
data AndSym0 (l :: TyFun [Bool] Bool) #
Instances
| SuppressUnusedWarnings AndSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply AndSym0 (l :: [Bool]) # | |
Defined in Data.Singletons.Prelude.List | |
data OrSym0 (l :: TyFun [Bool] Bool) #
Instances
| SuppressUnusedWarnings OrSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply OrSym0 (l :: [Bool]) # | |
Defined in Data.Singletons.Prelude.List | |
data AnySym0 (l :: TyFun (TyFun a6989586621679459291 Bool -> Type) (TyFun [a6989586621679459291] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (AnySym0 :: TyFun (TyFun a6989586621679459291 Bool -> Type) (TyFun [a6989586621679459291] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (AnySym0 :: TyFun (TyFun a6989586621679459291 Bool -> Type) (TyFun [a6989586621679459291] Bool -> Type) -> *) (l :: TyFun a6989586621679459291 Bool -> Type) # | |
data AnySym1 (l :: TyFun a6989586621679459291 Bool -> Type) (l :: TyFun [a6989586621679459291] Bool) #
type AnySym2 (t :: TyFun a6989586621679459291 Bool -> Type) (t :: [a6989586621679459291]) = Any t t #
data AllSym0 (l :: TyFun (TyFun a6989586621679459292 Bool -> Type) (TyFun [a6989586621679459292] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (AllSym0 :: TyFun (TyFun a6989586621679459292 Bool -> Type) (TyFun [a6989586621679459292] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (AllSym0 :: TyFun (TyFun a6989586621679459292 Bool -> Type) (TyFun [a6989586621679459292] Bool -> Type) -> *) (l :: TyFun a6989586621679459292 Bool -> Type) # | |
data AllSym1 (l :: TyFun a6989586621679459292 Bool -> Type) (l :: TyFun [a6989586621679459292] Bool) #
type AllSym2 (t :: TyFun a6989586621679459292 Bool -> Type) (t :: [a6989586621679459292]) = All t t #
data ScanlSym0 (l :: TyFun (TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (TyFun b6989586621679459289 (TyFun [a6989586621679459290] [b6989586621679459289] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ScanlSym0 :: TyFun (TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (TyFun b6989586621679459289 (TyFun [a6989586621679459290] [b6989586621679459289] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (TyFun b6989586621679459289 (TyFun [a6989586621679459290] [b6989586621679459289] -> Type) -> Type) -> *) (l :: TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (TyFun b6989586621679459289 (TyFun [a6989586621679459290] [b6989586621679459289] -> Type) -> Type) -> *) (l :: TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) = ScanlSym1 l | |
data ScanlSym1 (l :: TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (l :: TyFun b6989586621679459289 (TyFun [a6989586621679459290] [b6989586621679459289] -> Type)) #
Instances
| SuppressUnusedWarnings (ScanlSym1 :: (TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) -> TyFun b6989586621679459289 (TyFun [a6989586621679459290] [b6989586621679459289] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanlSym1 l1 :: TyFun b6989586621679459289 (TyFun [a6989586621679459290] [b6989586621679459289] -> Type) -> *) (l2 :: b6989586621679459289) # | |
data ScanlSym2 (l :: TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (l :: b6989586621679459289) (l :: TyFun [a6989586621679459290] [b6989586621679459289]) #
Instances
| SuppressUnusedWarnings (ScanlSym2 :: (TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) -> b6989586621679459289 -> TyFun [a6989586621679459290] [b6989586621679459289] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanlSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) # | |
type ScanlSym3 (t :: TyFun b6989586621679459289 (TyFun a6989586621679459290 b6989586621679459289 -> Type) -> Type) (t :: b6989586621679459289) (t :: [a6989586621679459290]) = Scanl t t t #
data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) (TyFun [a6989586621679459288] [a6989586621679459288] -> Type)) #
Instances
| SuppressUnusedWarnings (Scanl1Sym0 :: TyFun (TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) (TyFun [a6989586621679459288] [a6989586621679459288] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) (TyFun [a6989586621679459288] [a6989586621679459288] -> Type) -> *) (l :: TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) (TyFun [a6989586621679459288] [a6989586621679459288] -> Type) -> *) (l :: TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) = Scanl1Sym1 l | |
data Scanl1Sym1 (l :: TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) (l :: TyFun [a6989586621679459288] [a6989586621679459288]) #
Instances
| SuppressUnusedWarnings (Scanl1Sym1 :: (TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) -> TyFun [a6989586621679459288] [a6989586621679459288] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Scanl1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Scanl1Sym2 (t :: TyFun a6989586621679459288 (TyFun a6989586621679459288 a6989586621679459288 -> Type) -> Type) (t :: [a6989586621679459288]) = Scanl1 t t #
data ScanrSym0 (l :: TyFun (TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (TyFun b6989586621679459287 (TyFun [a6989586621679459286] [b6989586621679459287] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ScanrSym0 :: TyFun (TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (TyFun b6989586621679459287 (TyFun [a6989586621679459286] [b6989586621679459287] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (TyFun b6989586621679459287 (TyFun [a6989586621679459286] [b6989586621679459287] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (TyFun b6989586621679459287 (TyFun [a6989586621679459286] [b6989586621679459287] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) = ScanrSym1 l | |
data ScanrSym1 (l :: TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (l :: TyFun b6989586621679459287 (TyFun [a6989586621679459286] [b6989586621679459287] -> Type)) #
Instances
| SuppressUnusedWarnings (ScanrSym1 :: (TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) -> TyFun b6989586621679459287 (TyFun [a6989586621679459286] [b6989586621679459287] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanrSym1 l1 :: TyFun b6989586621679459287 (TyFun [a6989586621679459286] [b6989586621679459287] -> Type) -> *) (l2 :: b6989586621679459287) # | |
data ScanrSym2 (l :: TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (l :: b6989586621679459287) (l :: TyFun [a6989586621679459286] [b6989586621679459287]) #
Instances
| SuppressUnusedWarnings (ScanrSym2 :: (TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) -> b6989586621679459287 -> TyFun [a6989586621679459286] [b6989586621679459287] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanrSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) # | |
type ScanrSym3 (t :: TyFun a6989586621679459286 (TyFun b6989586621679459287 b6989586621679459287 -> Type) -> Type) (t :: b6989586621679459287) (t :: [a6989586621679459286]) = Scanr t t t #
data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) (TyFun [a6989586621679459285] [a6989586621679459285] -> Type)) #
Instances
| SuppressUnusedWarnings (Scanr1Sym0 :: TyFun (TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) (TyFun [a6989586621679459285] [a6989586621679459285] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) (TyFun [a6989586621679459285] [a6989586621679459285] -> Type) -> *) (l :: TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) (TyFun [a6989586621679459285] [a6989586621679459285] -> Type) -> *) (l :: TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) = Scanr1Sym1 l | |
data Scanr1Sym1 (l :: TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) (l :: TyFun [a6989586621679459285] [a6989586621679459285]) #
Instances
| SuppressUnusedWarnings (Scanr1Sym1 :: (TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) -> TyFun [a6989586621679459285] [a6989586621679459285] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Scanr1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Scanr1Sym2 (t :: TyFun a6989586621679459285 (TyFun a6989586621679459285 a6989586621679459285 -> Type) -> Type) (t :: [a6989586621679459285]) = Scanr1 t t #
data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (MapAccumLSym0 :: TyFun (TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) = MapAccumLSym1 l | |
data MapAccumLSym1 (l :: TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (l :: TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type)) #
Instances
| SuppressUnusedWarnings (MapAccumLSym1 :: (TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) -> TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type) -> *) (l2 :: acc6989586621679459282) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679459282 (TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> Type) -> *) (l2 :: acc6989586621679459282) = MapAccumLSym2 l1 l2 | |
data MapAccumLSym2 (l :: TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (l :: acc6989586621679459282) (l :: TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284])) #
Instances
| SuppressUnusedWarnings (MapAccumLSym2 :: (TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) -> acc6989586621679459282 -> TyFun [x6989586621679459283] (acc6989586621679459282, [y6989586621679459284]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumLSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) # | |
Defined in Data.Singletons.Prelude.List | |
type MapAccumLSym3 (t :: TyFun acc6989586621679459282 (TyFun x6989586621679459283 (acc6989586621679459282, y6989586621679459284) -> Type) -> Type) (t :: acc6989586621679459282) (t :: [x6989586621679459283]) = MapAccumL t t t #
data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (MapAccumRSym0 :: TyFun (TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) = MapAccumRSym1 l | |
data MapAccumRSym1 (l :: TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (l :: TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type)) #
Instances
| SuppressUnusedWarnings (MapAccumRSym1 :: (TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) -> TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type) -> *) (l2 :: acc6989586621679459279) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679459279 (TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> Type) -> *) (l2 :: acc6989586621679459279) = MapAccumRSym2 l1 l2 | |
data MapAccumRSym2 (l :: TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (l :: acc6989586621679459279) (l :: TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281])) #
Instances
| SuppressUnusedWarnings (MapAccumRSym2 :: (TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) -> acc6989586621679459279 -> TyFun [x6989586621679459280] (acc6989586621679459279, [y6989586621679459281]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumRSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) # | |
Defined in Data.Singletons.Prelude.List | |
type MapAccumRSym3 (t :: TyFun acc6989586621679459279 (TyFun x6989586621679459280 (acc6989586621679459279, y6989586621679459281) -> Type) -> Type) (t :: acc6989586621679459279) (t :: [x6989586621679459280]) = MapAccumR t t t #
data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) (TyFun b6989586621679459277 [a6989586621679459278] -> Type)) #
Instances
| SuppressUnusedWarnings (UnfoldrSym0 :: TyFun (TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) (TyFun b6989586621679459277 [a6989586621679459278] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnfoldrSym0 :: TyFun (TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) (TyFun b6989586621679459277 [a6989586621679459278] -> Type) -> *) (l :: TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data UnfoldrSym1 (l :: TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) (l :: TyFun b6989586621679459277 [a6989586621679459278]) #
Instances
| SuppressUnusedWarnings (UnfoldrSym1 :: (TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) -> TyFun b6989586621679459277 [a6989586621679459278] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnfoldrSym1 l1 :: TyFun b [a] -> *) (l2 :: b) # | |
Defined in Data.Singletons.Prelude.List | |
type UnfoldrSym2 (t :: TyFun b6989586621679459277 (Maybe (a6989586621679459278, b6989586621679459277)) -> Type) (t :: b6989586621679459277) = Unfoldr t t #
data InitsSym0 (l :: TyFun [a6989586621679459276] [[a6989586621679459276]]) #
Instances
| SuppressUnusedWarnings (InitsSym0 :: TyFun [a6989586621679459276] [[a6989586621679459276]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InitsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
data TailsSym0 (l :: TyFun [a6989586621679459275] [[a6989586621679459275]]) #
Instances
| SuppressUnusedWarnings (TailsSym0 :: TyFun [a6989586621679459275] [[a6989586621679459275]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TailsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
data IsPrefixOfSym0 (l :: TyFun [a6989586621679459274] (TyFun [a6989586621679459274] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (IsPrefixOfSym0 :: TyFun [a6989586621679459274] (TyFun [a6989586621679459274] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679459274] (TyFun [a6989586621679459274] Bool -> Type) -> *) (l :: [a6989586621679459274]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679459274] (TyFun [a6989586621679459274] Bool -> Type) -> *) (l :: [a6989586621679459274]) = IsPrefixOfSym1 l | |
data IsPrefixOfSym1 (l :: [a6989586621679459274]) (l :: TyFun [a6989586621679459274] Bool) #
Instances
| SuppressUnusedWarnings (IsPrefixOfSym1 :: [a6989586621679459274] -> TyFun [a6989586621679459274] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsPrefixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IsPrefixOfSym2 (t :: [a6989586621679459274]) (t :: [a6989586621679459274]) = IsPrefixOf t t #
data IsSuffixOfSym0 (l :: TyFun [a6989586621679459273] (TyFun [a6989586621679459273] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (IsSuffixOfSym0 :: TyFun [a6989586621679459273] (TyFun [a6989586621679459273] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679459273] (TyFun [a6989586621679459273] Bool -> Type) -> *) (l :: [a6989586621679459273]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679459273] (TyFun [a6989586621679459273] Bool -> Type) -> *) (l :: [a6989586621679459273]) = IsSuffixOfSym1 l | |
data IsSuffixOfSym1 (l :: [a6989586621679459273]) (l :: TyFun [a6989586621679459273] Bool) #
Instances
| SuppressUnusedWarnings (IsSuffixOfSym1 :: [a6989586621679459273] -> TyFun [a6989586621679459273] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsSuffixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IsSuffixOfSym2 (t :: [a6989586621679459273]) (t :: [a6989586621679459273]) = IsSuffixOf t t #
data IsInfixOfSym0 (l :: TyFun [a6989586621679459272] (TyFun [a6989586621679459272] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (IsInfixOfSym0 :: TyFun [a6989586621679459272] (TyFun [a6989586621679459272] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsInfixOfSym0 :: TyFun [a6989586621679459272] (TyFun [a6989586621679459272] Bool -> Type) -> *) (l :: [a6989586621679459272]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsInfixOfSym0 :: TyFun [a6989586621679459272] (TyFun [a6989586621679459272] Bool -> Type) -> *) (l :: [a6989586621679459272]) = IsInfixOfSym1 l | |
data IsInfixOfSym1 (l :: [a6989586621679459272]) (l :: TyFun [a6989586621679459272] Bool) #
Instances
| SuppressUnusedWarnings (IsInfixOfSym1 :: [a6989586621679459272] -> TyFun [a6989586621679459272] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsInfixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IsInfixOfSym2 (t :: [a6989586621679459272]) (t :: [a6989586621679459272]) = IsInfixOf t t #
data ElemSym0 (l :: TyFun a6989586621679459271 (TyFun [a6989586621679459271] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (ElemSym0 :: TyFun a6989586621679459271 (TyFun [a6989586621679459271] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemSym0 :: TyFun a6989586621679459271 (TyFun [a6989586621679459271] Bool -> Type) -> *) (l :: a6989586621679459271) # | |
data ElemSym1 (l :: a6989586621679459271) (l :: TyFun [a6989586621679459271] Bool) #
Instances
| SuppressUnusedWarnings (ElemSym1 :: a6989586621679459271 -> TyFun [a6989586621679459271] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
data NotElemSym0 (l :: TyFun a6989586621679459270 (TyFun [a6989586621679459270] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (NotElemSym0 :: TyFun a6989586621679459270 (TyFun [a6989586621679459270] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NotElemSym0 :: TyFun a6989586621679459270 (TyFun [a6989586621679459270] Bool -> Type) -> *) (l :: a6989586621679459270) # | |
Defined in Data.Singletons.Prelude.List type Apply (NotElemSym0 :: TyFun a6989586621679459270 (TyFun [a6989586621679459270] Bool -> Type) -> *) (l :: a6989586621679459270) = NotElemSym1 l | |
data NotElemSym1 (l :: a6989586621679459270) (l :: TyFun [a6989586621679459270] Bool) #
Instances
| SuppressUnusedWarnings (NotElemSym1 :: a6989586621679459270 -> TyFun [a6989586621679459270] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NotElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type NotElemSym2 (t :: a6989586621679459270) (t :: [a6989586621679459270]) = NotElem t t #
data ZipSym0 (l :: TyFun [a6989586621679459268] (TyFun [b6989586621679459269] [(a6989586621679459268, b6989586621679459269)] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipSym0 :: TyFun [a6989586621679459268] (TyFun [b6989586621679459269] [(a6989586621679459268, b6989586621679459269)] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipSym0 :: TyFun [a6989586621679459268] (TyFun [b6989586621679459269] [(a6989586621679459268, b6989586621679459269)] -> Type) -> *) (l :: [a6989586621679459268]) # | |
Defined in Data.Singletons.Prelude.List | |
data ZipSym1 (l :: [a6989586621679459268]) (l :: TyFun [b6989586621679459269] [(a6989586621679459268, b6989586621679459269)]) #
Instances
| SuppressUnusedWarnings (ZipSym1 :: [a6989586621679459268] -> TyFun [b6989586621679459269] [(a6989586621679459268, b6989586621679459269)] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipSym1 l1 :: TyFun [b] [(a, b)] -> *) (l2 :: [b]) # | |
data Zip3Sym0 (l :: TyFun [a6989586621679459265] (TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip3Sym0 :: TyFun [a6989586621679459265] (TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip3Sym0 :: TyFun [a6989586621679459265] (TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type) -> Type) -> *) (l :: [a6989586621679459265]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym0 :: TyFun [a6989586621679459265] (TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type) -> Type) -> *) (l :: [a6989586621679459265]) = (Zip3Sym1 l :: TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type) -> *) | |
data Zip3Sym1 (l :: [a6989586621679459265]) (l :: TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type)) #
Instances
| SuppressUnusedWarnings (Zip3Sym1 :: [a6989586621679459265] -> TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type) -> *) (l2 :: [b6989586621679459266]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679459266] (TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> Type) -> *) (l2 :: [b6989586621679459266]) = (Zip3Sym2 l1 l2 :: TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> *) | |
data Zip3Sym2 (l :: [a6989586621679459265]) (l :: [b6989586621679459266]) (l :: TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)]) #
Instances
| SuppressUnusedWarnings (Zip3Sym2 :: [a6989586621679459265] -> [b6989586621679459266] -> TyFun [c6989586621679459267] [(a6989586621679459265, b6989586621679459266, c6989586621679459267)] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip3Sym2 l1 l2 :: TyFun [c] [(a, b, c)] -> *) (l3 :: [c]) # | |
type Zip3Sym3 (t :: [a6989586621679459265]) (t :: [b6989586621679459266]) (t :: [c6989586621679459267]) = Zip3 t t t #
data ZipWithSym0 (l :: TyFun (TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWithSym0 :: TyFun (TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) = ZipWithSym1 l | |
data ZipWithSym1 (l :: TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (l :: TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWithSym1 :: (TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) -> TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type) -> *) (l2 :: [a6989586621679459262]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679459262] (TyFun [b6989586621679459263] [c6989586621679459264] -> Type) -> *) (l2 :: [a6989586621679459262]) = ZipWithSym2 l1 l2 | |
data ZipWithSym2 (l :: TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (l :: [a6989586621679459262]) (l :: TyFun [b6989586621679459263] [c6989586621679459264]) #
Instances
| SuppressUnusedWarnings (ZipWithSym2 :: (TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) -> [a6989586621679459262] -> TyFun [b6989586621679459263] [c6989586621679459264] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWithSym2 l1 l2 :: TyFun [b] [c] -> *) (l3 :: [b]) # | |
Defined in Data.Singletons.Prelude.List | |
type ZipWithSym3 (t :: TyFun a6989586621679459262 (TyFun b6989586621679459263 c6989586621679459264 -> Type) -> Type) (t :: [a6989586621679459262]) (t :: [b6989586621679459263]) = ZipWith t t t #
data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith3Sym0 :: TyFun (TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) = ZipWith3Sym1 l | |
data ZipWith3Sym1 (l :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith3Sym1 :: (TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) -> TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type) -> *) (l2 :: [a6989586621679459258]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679459258] (TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> Type) -> *) (l2 :: [a6989586621679459258]) = ZipWith3Sym2 l1 l2 | |
data ZipWith3Sym2 (l :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (l :: [a6989586621679459258]) (l :: TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith3Sym2 :: (TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) -> [a6989586621679459258] -> TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> *) (l3 :: [b6989586621679459259]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679459259] (TyFun [c6989586621679459260] [d6989586621679459261] -> Type) -> *) (l3 :: [b6989586621679459259]) = ZipWith3Sym3 l1 l2 l3 | |
data ZipWith3Sym3 (l :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (l :: [a6989586621679459258]) (l :: [b6989586621679459259]) (l :: TyFun [c6989586621679459260] [d6989586621679459261]) #
Instances
| SuppressUnusedWarnings (ZipWith3Sym3 :: (TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) -> [a6989586621679459258] -> [b6989586621679459259] -> TyFun [c6989586621679459260] [d6989586621679459261] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith3Sym3 l1 l2 l3 :: TyFun [c] [d] -> *) (l4 :: [c]) # | |
Defined in Data.Singletons.Prelude.List | |
type ZipWith3Sym4 (t :: TyFun a6989586621679459258 (TyFun b6989586621679459259 (TyFun c6989586621679459260 d6989586621679459261 -> Type) -> Type) -> Type) (t :: [a6989586621679459258]) (t :: [b6989586621679459259]) (t :: [c6989586621679459260]) = ZipWith3 t t t t #
data UnzipSym0 (l :: TyFun [(a6989586621679459256, b6989586621679459257)] ([a6989586621679459256], [b6989586621679459257])) #
Instances
| SuppressUnusedWarnings (UnzipSym0 :: TyFun [(a6989586621679459256, b6989586621679459257)] ([a6989586621679459256], [b6989586621679459257]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnzipSym0 :: TyFun [(a, b)] ([a], [b]) -> *) (l :: [(a, b)]) # | |
data Unzip3Sym0 (l :: TyFun [(a6989586621679459253, b6989586621679459254, c6989586621679459255)] ([a6989586621679459253], [b6989586621679459254], [c6989586621679459255])) #
Instances
| SuppressUnusedWarnings (Unzip3Sym0 :: TyFun [(a6989586621679459253, b6989586621679459254, c6989586621679459255)] ([a6989586621679459253], [b6989586621679459254], [c6989586621679459255]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip3Sym0 :: TyFun [(a, b, c)] ([a], [b], [c]) -> *) (l :: [(a, b, c)]) # | |
Defined in Data.Singletons.Prelude.List | |
type Unzip3Sym1 (t :: [(a6989586621679459253, b6989586621679459254, c6989586621679459255)]) = Unzip3 t #
data Unzip4Sym0 (l :: TyFun [(a6989586621679459249, b6989586621679459250, c6989586621679459251, d6989586621679459252)] ([a6989586621679459249], [b6989586621679459250], [c6989586621679459251], [d6989586621679459252])) #
Instances
| SuppressUnusedWarnings (Unzip4Sym0 :: TyFun [(a6989586621679459249, b6989586621679459250, c6989586621679459251, d6989586621679459252)] ([a6989586621679459249], [b6989586621679459250], [c6989586621679459251], [d6989586621679459252]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) = Unzip4 l | |
type Unzip4Sym1 (t :: [(a6989586621679459249, b6989586621679459250, c6989586621679459251, d6989586621679459252)]) = Unzip4 t #
data Unzip5Sym0 (l :: TyFun [(a6989586621679459244, b6989586621679459245, c6989586621679459246, d6989586621679459247, e6989586621679459248)] ([a6989586621679459244], [b6989586621679459245], [c6989586621679459246], [d6989586621679459247], [e6989586621679459248])) #
Instances
| SuppressUnusedWarnings (Unzip5Sym0 :: TyFun [(a6989586621679459244, b6989586621679459245, c6989586621679459246, d6989586621679459247, e6989586621679459248)] ([a6989586621679459244], [b6989586621679459245], [c6989586621679459246], [d6989586621679459247], [e6989586621679459248]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) = Unzip5 l | |
type Unzip5Sym1 (t :: [(a6989586621679459244, b6989586621679459245, c6989586621679459246, d6989586621679459247, e6989586621679459248)]) = Unzip5 t #
data Unzip6Sym0 (l :: TyFun [(a6989586621679459238, b6989586621679459239, c6989586621679459240, d6989586621679459241, e6989586621679459242, f6989586621679459243)] ([a6989586621679459238], [b6989586621679459239], [c6989586621679459240], [d6989586621679459241], [e6989586621679459242], [f6989586621679459243])) #
Instances
| SuppressUnusedWarnings (Unzip6Sym0 :: TyFun [(a6989586621679459238, b6989586621679459239, c6989586621679459240, d6989586621679459241, e6989586621679459242, f6989586621679459243)] ([a6989586621679459238], [b6989586621679459239], [c6989586621679459240], [d6989586621679459241], [e6989586621679459242], [f6989586621679459243]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) = Unzip6 l | |
type Unzip6Sym1 (t :: [(a6989586621679459238, b6989586621679459239, c6989586621679459240, d6989586621679459241, e6989586621679459242, f6989586621679459243)]) = Unzip6 t #
data Unzip7Sym0 (l :: TyFun [(a6989586621679459231, b6989586621679459232, c6989586621679459233, d6989586621679459234, e6989586621679459235, f6989586621679459236, g6989586621679459237)] ([a6989586621679459231], [b6989586621679459232], [c6989586621679459233], [d6989586621679459234], [e6989586621679459235], [f6989586621679459236], [g6989586621679459237])) #
Instances
| SuppressUnusedWarnings (Unzip7Sym0 :: TyFun [(a6989586621679459231, b6989586621679459232, c6989586621679459233, d6989586621679459234, e6989586621679459235, f6989586621679459236, g6989586621679459237)] ([a6989586621679459231], [b6989586621679459232], [c6989586621679459233], [d6989586621679459234], [e6989586621679459235], [f6989586621679459236], [g6989586621679459237]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) = Unzip7 l | |
type Unzip7Sym1 (t :: [(a6989586621679459231, b6989586621679459232, c6989586621679459233, d6989586621679459234, e6989586621679459235, f6989586621679459236, g6989586621679459237)]) = Unzip7 t #
data DeleteSym0 (l :: TyFun a6989586621679459230 (TyFun [a6989586621679459230] [a6989586621679459230] -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteSym0 :: TyFun a6989586621679459230 (TyFun [a6989586621679459230] [a6989586621679459230] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteSym0 :: TyFun a6989586621679459230 (TyFun [a6989586621679459230] [a6989586621679459230] -> Type) -> *) (l :: a6989586621679459230) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteSym0 :: TyFun a6989586621679459230 (TyFun [a6989586621679459230] [a6989586621679459230] -> Type) -> *) (l :: a6989586621679459230) = DeleteSym1 l | |
data DeleteSym1 (l :: a6989586621679459230) (l :: TyFun [a6989586621679459230] [a6989586621679459230]) #
Instances
| SuppressUnusedWarnings (DeleteSym1 :: a6989586621679459230 -> TyFun [a6989586621679459230] [a6989586621679459230] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DeleteSym2 (t :: a6989586621679459230) (t :: [a6989586621679459230]) = Delete t t #
data (\\@#@$) (l :: TyFun [a6989586621679459229] (TyFun [a6989586621679459229] [a6989586621679459229] -> Type)) #
Instances
| SuppressUnusedWarnings ((\\@#@$) :: TyFun [a6989586621679459229] (TyFun [a6989586621679459229] [a6989586621679459229] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply ((\\@#@$) :: TyFun [a6989586621679459229] (TyFun [a6989586621679459229] [a6989586621679459229] -> Type) -> *) (l :: [a6989586621679459229]) # | |
data (l :: [a6989586621679459229]) \\@#@$$ (l :: TyFun [a6989586621679459229] [a6989586621679459229]) #
Instances
| SuppressUnusedWarnings ((\\@#@$$) :: [a6989586621679459229] -> TyFun [a6989586621679459229] [a6989586621679459229] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply ((\\@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
type (\\@#@$$$) (t :: [a6989586621679459229]) (t :: [a6989586621679459229]) = (\\) t t #
data IntersectSym0 (l :: TyFun [a6989586621679459216] (TyFun [a6989586621679459216] [a6989586621679459216] -> Type)) #
Instances
| SuppressUnusedWarnings (IntersectSym0 :: TyFun [a6989586621679459216] (TyFun [a6989586621679459216] [a6989586621679459216] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectSym0 :: TyFun [a6989586621679459216] (TyFun [a6989586621679459216] [a6989586621679459216] -> Type) -> *) (l :: [a6989586621679459216]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectSym0 :: TyFun [a6989586621679459216] (TyFun [a6989586621679459216] [a6989586621679459216] -> Type) -> *) (l :: [a6989586621679459216]) = IntersectSym1 l | |
data IntersectSym1 (l :: [a6989586621679459216]) (l :: TyFun [a6989586621679459216] [a6989586621679459216]) #
Instances
| SuppressUnusedWarnings (IntersectSym1 :: [a6989586621679459216] -> TyFun [a6989586621679459216] [a6989586621679459216] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IntersectSym2 (t :: [a6989586621679459216]) (t :: [a6989586621679459216]) = Intersect t t #
data InsertSym0 (l :: TyFun a6989586621679459203 (TyFun [a6989586621679459203] [a6989586621679459203] -> Type)) #
Instances
| SuppressUnusedWarnings (InsertSym0 :: TyFun a6989586621679459203 (TyFun [a6989586621679459203] [a6989586621679459203] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertSym0 :: TyFun a6989586621679459203 (TyFun [a6989586621679459203] [a6989586621679459203] -> Type) -> *) (l :: a6989586621679459203) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertSym0 :: TyFun a6989586621679459203 (TyFun [a6989586621679459203] [a6989586621679459203] -> Type) -> *) (l :: a6989586621679459203) = InsertSym1 l | |
data InsertSym1 (l :: a6989586621679459203) (l :: TyFun [a6989586621679459203] [a6989586621679459203]) #
Instances
| SuppressUnusedWarnings (InsertSym1 :: a6989586621679459203 -> TyFun [a6989586621679459203] [a6989586621679459203] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type InsertSym2 (t :: a6989586621679459203) (t :: [a6989586621679459203]) = Insert t t #
data SortSym0 (l :: TyFun [a6989586621679459202] [a6989586621679459202]) #
Instances
| SuppressUnusedWarnings (SortSym0 :: TyFun [a6989586621679459202] [a6989586621679459202] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SortSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
data DeleteBySym0 (l :: TyFun (TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteBySym0 :: TyFun (TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) = DeleteBySym1 l | |
data DeleteBySym1 (l :: TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (l :: TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteBySym1 :: (TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) -> TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteBySym1 l1 :: TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type) -> *) (l2 :: a6989586621679459228) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym1 l1 :: TyFun a6989586621679459228 (TyFun [a6989586621679459228] [a6989586621679459228] -> Type) -> *) (l2 :: a6989586621679459228) = DeleteBySym2 l1 l2 | |
data DeleteBySym2 (l :: TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (l :: a6989586621679459228) (l :: TyFun [a6989586621679459228] [a6989586621679459228]) #
Instances
| SuppressUnusedWarnings (DeleteBySym2 :: (TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) -> a6989586621679459228 -> TyFun [a6989586621679459228] [a6989586621679459228] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DeleteBySym3 (t :: TyFun a6989586621679459228 (TyFun a6989586621679459228 Bool -> Type) -> Type) (t :: a6989586621679459228) (t :: [a6989586621679459228]) = DeleteBy t t t #
data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) = DeleteFirstsBySym1 l | |
data DeleteFirstsBySym1 (l :: TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteFirstsBySym1 :: (TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) -> TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type) -> *) (l2 :: [a6989586621679459227]) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679459227] (TyFun [a6989586621679459227] [a6989586621679459227] -> Type) -> *) (l2 :: [a6989586621679459227]) = DeleteFirstsBySym2 l1 l2 | |
data DeleteFirstsBySym2 (l :: TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (l :: [a6989586621679459227]) (l :: TyFun [a6989586621679459227] [a6989586621679459227]) #
Instances
| SuppressUnusedWarnings (DeleteFirstsBySym2 :: (TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) -> [a6989586621679459227] -> TyFun [a6989586621679459227] [a6989586621679459227] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteFirstsBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DeleteFirstsBySym3 (t :: TyFun a6989586621679459227 (TyFun a6989586621679459227 Bool -> Type) -> Type) (t :: [a6989586621679459227]) (t :: [a6989586621679459227]) = DeleteFirstsBy t t t #
data IntersectBySym0 (l :: TyFun (TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) (TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (IntersectBySym0 :: TyFun (TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) (TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) (TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) (TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) = IntersectBySym1 l | |
data IntersectBySym1 (l :: TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type)) #
Instances
| SuppressUnusedWarnings (IntersectBySym1 :: (TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) -> TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type) -> *) (l2 :: [a6989586621679459215]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679459215] (TyFun [a6989586621679459215] [a6989586621679459215] -> Type) -> *) (l2 :: [a6989586621679459215]) = IntersectBySym2 l1 l2 | |
data IntersectBySym2 (l :: TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) (l :: [a6989586621679459215]) (l :: TyFun [a6989586621679459215] [a6989586621679459215]) #
Instances
| SuppressUnusedWarnings (IntersectBySym2 :: (TyFun a6989586621679459215 (TyFun a6989586621679459215 Bool -> Type) -> Type) -> [a6989586621679459215] -> TyFun [a6989586621679459215] [a6989586621679459215] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
data SortBySym0 (l :: TyFun (TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) (TyFun [a6989586621679459226] [a6989586621679459226] -> Type)) #
Instances
| SuppressUnusedWarnings (SortBySym0 :: TyFun (TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) (TyFun [a6989586621679459226] [a6989586621679459226] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SortBySym0 :: TyFun (TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) (TyFun [a6989586621679459226] [a6989586621679459226] -> Type) -> *) (l :: TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data SortBySym1 (l :: TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679459226] [a6989586621679459226]) #
Instances
| SuppressUnusedWarnings (SortBySym1 :: (TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) -> TyFun [a6989586621679459226] [a6989586621679459226] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SortBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type SortBySym2 (t :: TyFun a6989586621679459226 (TyFun a6989586621679459226 Ordering -> Type) -> Type) (t :: [a6989586621679459226]) = SortBy t t #
data InsertBySym0 (l :: TyFun (TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (InsertBySym0 :: TyFun (TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) = InsertBySym1 l | |
data InsertBySym1 (l :: TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (l :: TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type)) #
Instances
| SuppressUnusedWarnings (InsertBySym1 :: (TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) -> TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertBySym1 l1 :: TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type) -> *) (l2 :: a6989586621679459225) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym1 l1 :: TyFun a6989586621679459225 (TyFun [a6989586621679459225] [a6989586621679459225] -> Type) -> *) (l2 :: a6989586621679459225) = InsertBySym2 l1 l2 | |
data InsertBySym2 (l :: TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (l :: a6989586621679459225) (l :: TyFun [a6989586621679459225] [a6989586621679459225]) #
Instances
| SuppressUnusedWarnings (InsertBySym2 :: (TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) -> a6989586621679459225 -> TyFun [a6989586621679459225] [a6989586621679459225] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type InsertBySym3 (t :: TyFun a6989586621679459225 (TyFun a6989586621679459225 Ordering -> Type) -> Type) (t :: a6989586621679459225) (t :: [a6989586621679459225]) = InsertBy t t t #
data MaximumBySym0 (l :: TyFun (TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) (TyFun [a6989586621679459224] a6989586621679459224 -> Type)) #
Instances
| SuppressUnusedWarnings (MaximumBySym0 :: TyFun (TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) (TyFun [a6989586621679459224] a6989586621679459224 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MaximumBySym0 :: TyFun (TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) (TyFun [a6989586621679459224] a6989586621679459224 -> Type) -> *) (l :: TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data MaximumBySym1 (l :: TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679459224] a6989586621679459224) #
Instances
| SuppressUnusedWarnings (MaximumBySym1 :: (TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) -> TyFun [a6989586621679459224] a6989586621679459224 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MaximumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type MaximumBySym2 (t :: TyFun a6989586621679459224 (TyFun a6989586621679459224 Ordering -> Type) -> Type) (t :: [a6989586621679459224]) = MaximumBy t t #
data MinimumBySym0 (l :: TyFun (TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) (TyFun [a6989586621679459223] a6989586621679459223 -> Type)) #
Instances
| SuppressUnusedWarnings (MinimumBySym0 :: TyFun (TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) (TyFun [a6989586621679459223] a6989586621679459223 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MinimumBySym0 :: TyFun (TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) (TyFun [a6989586621679459223] a6989586621679459223 -> Type) -> *) (l :: TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data MinimumBySym1 (l :: TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679459223] a6989586621679459223) #
Instances
| SuppressUnusedWarnings (MinimumBySym1 :: (TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) -> TyFun [a6989586621679459223] a6989586621679459223 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MinimumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type MinimumBySym2 (t :: TyFun a6989586621679459223 (TyFun a6989586621679459223 Ordering -> Type) -> Type) (t :: [a6989586621679459223]) = MinimumBy t t #
data LengthSym0 (l :: TyFun [a6989586621679459194] Nat) #
Instances
| SuppressUnusedWarnings (LengthSym0 :: TyFun [a6989586621679459194] Nat -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (LengthSym0 :: TyFun [a] Nat -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type LengthSym1 (t :: [a6989586621679459194]) = Length t #
data SumSym0 (l :: TyFun [a6989586621679459196] a6989586621679459196) #
Instances
| SuppressUnusedWarnings (SumSym0 :: TyFun [a6989586621679459196] a6989586621679459196 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SumSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
data ProductSym0 (l :: TyFun [a6989586621679459195] a6989586621679459195) #
Instances
| SuppressUnusedWarnings (ProductSym0 :: TyFun [a6989586621679459195] a6989586621679459195 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ProductSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ProductSym1 (t :: [a6989586621679459195]) = Product t #
data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679459193 [a6989586621679459193] -> Type)) #
Instances
| SuppressUnusedWarnings (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679459193 [a6989586621679459193] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679459193 [a6989586621679459193] -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List | |
data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679459193 [a6989586621679459193]) #
Instances
| SuppressUnusedWarnings (ReplicateSym1 :: Nat -> TyFun a6989586621679459193 [a6989586621679459193] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.List | |
type ReplicateSym2 (t :: Nat) (t :: a6989586621679459193) = Replicate t t #
data TransposeSym0 (l :: TyFun [[a6989586621679459192]] [[a6989586621679459192]]) #
Instances
| SuppressUnusedWarnings (TransposeSym0 :: TyFun [[a6989586621679459192]] [[a6989586621679459192]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TransposeSym0 :: TyFun [[a]] [[a]] -> *) (l :: [[a]]) # | |
Defined in Data.Singletons.Prelude.List | |
type TransposeSym1 (t :: [[a6989586621679459192]]) = Transpose t #
data TakeSym0 (l :: TyFun Nat (TyFun [a6989586621679459209] [a6989586621679459209] -> Type)) #
Instances
| SuppressUnusedWarnings (TakeSym0 :: TyFun Nat (TyFun [a6989586621679459209] [a6989586621679459209] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TakeSym0 :: TyFun Nat (TyFun [a6989586621679459209] [a6989586621679459209] -> Type) -> *) (l :: Nat) # | |
data TakeSym1 (l :: Nat) (l :: TyFun [a6989586621679459209] [a6989586621679459209]) #
Instances
| SuppressUnusedWarnings (TakeSym1 :: Nat -> TyFun [a6989586621679459209] [a6989586621679459209] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
data DropSym0 (l :: TyFun Nat (TyFun [a6989586621679459208] [a6989586621679459208] -> Type)) #
Instances
| SuppressUnusedWarnings (DropSym0 :: TyFun Nat (TyFun [a6989586621679459208] [a6989586621679459208] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropSym0 :: TyFun Nat (TyFun [a6989586621679459208] [a6989586621679459208] -> Type) -> *) (l :: Nat) # | |
data DropSym1 (l :: Nat) (l :: TyFun [a6989586621679459208] [a6989586621679459208]) #
Instances
| SuppressUnusedWarnings (DropSym1 :: Nat -> TyFun [a6989586621679459208] [a6989586621679459208] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679459207] ([a6989586621679459207], [a6989586621679459207]) -> Type)) #
Instances
| SuppressUnusedWarnings (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679459207] ([a6989586621679459207], [a6989586621679459207]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679459207] ([a6989586621679459207], [a6989586621679459207]) -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List | |
data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679459207] ([a6989586621679459207], [a6989586621679459207])) #
Instances
| SuppressUnusedWarnings (SplitAtSym1 :: Nat -> TyFun [a6989586621679459207] ([a6989586621679459207], [a6989586621679459207]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type SplitAtSym2 (t :: Nat) (t :: [a6989586621679459207]) = SplitAt t t #
data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679459214 Bool -> Type) (TyFun [a6989586621679459214] [a6989586621679459214] -> Type)) #
Instances
| SuppressUnusedWarnings (TakeWhileSym0 :: TyFun (TyFun a6989586621679459214 Bool -> Type) (TyFun [a6989586621679459214] [a6989586621679459214] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679459214 Bool -> Type) (TyFun [a6989586621679459214] [a6989586621679459214] -> Type) -> *) (l :: TyFun a6989586621679459214 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data TakeWhileSym1 (l :: TyFun a6989586621679459214 Bool -> Type) (l :: TyFun [a6989586621679459214] [a6989586621679459214]) #
Instances
| SuppressUnusedWarnings (TakeWhileSym1 :: (TyFun a6989586621679459214 Bool -> Type) -> TyFun [a6989586621679459214] [a6989586621679459214] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TakeWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type TakeWhileSym2 (t :: TyFun a6989586621679459214 Bool -> Type) (t :: [a6989586621679459214]) = TakeWhile t t #
data DropWhileSym0 (l :: TyFun (TyFun a6989586621679459213 Bool -> Type) (TyFun [a6989586621679459213] [a6989586621679459213] -> Type)) #
Instances
| SuppressUnusedWarnings (DropWhileSym0 :: TyFun (TyFun a6989586621679459213 Bool -> Type) (TyFun [a6989586621679459213] [a6989586621679459213] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679459213 Bool -> Type) (TyFun [a6989586621679459213] [a6989586621679459213] -> Type) -> *) (l :: TyFun a6989586621679459213 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data DropWhileSym1 (l :: TyFun a6989586621679459213 Bool -> Type) (l :: TyFun [a6989586621679459213] [a6989586621679459213]) #
Instances
| SuppressUnusedWarnings (DropWhileSym1 :: (TyFun a6989586621679459213 Bool -> Type) -> TyFun [a6989586621679459213] [a6989586621679459213] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DropWhileSym2 (t :: TyFun a6989586621679459213 Bool -> Type) (t :: [a6989586621679459213]) = DropWhile t t #
data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679459212 Bool -> Type) (TyFun [a6989586621679459212] [a6989586621679459212] -> Type)) #
Instances
| SuppressUnusedWarnings (DropWhileEndSym0 :: TyFun (TyFun a6989586621679459212 Bool -> Type) (TyFun [a6989586621679459212] [a6989586621679459212] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropWhileEndSym0 :: TyFun (TyFun a6989586621679459212 Bool -> Type) (TyFun [a6989586621679459212] [a6989586621679459212] -> Type) -> *) (l :: TyFun a6989586621679459212 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data DropWhileEndSym1 (l :: TyFun a6989586621679459212 Bool -> Type) (l :: TyFun [a6989586621679459212] [a6989586621679459212]) #
Instances
| SuppressUnusedWarnings (DropWhileEndSym1 :: (TyFun a6989586621679459212 Bool -> Type) -> TyFun [a6989586621679459212] [a6989586621679459212] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropWhileEndSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DropWhileEndSym2 (t :: TyFun a6989586621679459212 Bool -> Type) (t :: [a6989586621679459212]) = DropWhileEnd t t #
data SpanSym0 (l :: TyFun (TyFun a6989586621679459211 Bool -> Type) (TyFun [a6989586621679459211] ([a6989586621679459211], [a6989586621679459211]) -> Type)) #
Instances
| SuppressUnusedWarnings (SpanSym0 :: TyFun (TyFun a6989586621679459211 Bool -> Type) (TyFun [a6989586621679459211] ([a6989586621679459211], [a6989586621679459211]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SpanSym0 :: TyFun (TyFun a6989586621679459211 Bool -> Type) (TyFun [a6989586621679459211] ([a6989586621679459211], [a6989586621679459211]) -> Type) -> *) (l :: TyFun a6989586621679459211 Bool -> Type) # | |
data SpanSym1 (l :: TyFun a6989586621679459211 Bool -> Type) (l :: TyFun [a6989586621679459211] ([a6989586621679459211], [a6989586621679459211])) #
Instances
| SuppressUnusedWarnings (SpanSym1 :: (TyFun a6989586621679459211 Bool -> Type) -> TyFun [a6989586621679459211] ([a6989586621679459211], [a6989586621679459211]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SpanSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
type SpanSym2 (t :: TyFun a6989586621679459211 Bool -> Type) (t :: [a6989586621679459211]) = Span t t #
data BreakSym0 (l :: TyFun (TyFun a6989586621679459210 Bool -> Type) (TyFun [a6989586621679459210] ([a6989586621679459210], [a6989586621679459210]) -> Type)) #
Instances
| SuppressUnusedWarnings (BreakSym0 :: TyFun (TyFun a6989586621679459210 Bool -> Type) (TyFun [a6989586621679459210] ([a6989586621679459210], [a6989586621679459210]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (BreakSym0 :: TyFun (TyFun a6989586621679459210 Bool -> Type) (TyFun [a6989586621679459210] ([a6989586621679459210], [a6989586621679459210]) -> Type) -> *) (l :: TyFun a6989586621679459210 Bool -> Type) # | |
data BreakSym1 (l :: TyFun a6989586621679459210 Bool -> Type) (l :: TyFun [a6989586621679459210] ([a6989586621679459210], [a6989586621679459210])) #
Instances
| SuppressUnusedWarnings (BreakSym1 :: (TyFun a6989586621679459210 Bool -> Type) -> TyFun [a6989586621679459210] ([a6989586621679459210], [a6989586621679459210]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (BreakSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
type BreakSym2 (t :: TyFun a6989586621679459210 Bool -> Type) (t :: [a6989586621679459210]) = Break t t #
data StripPrefixSym0 (l :: TyFun [a6989586621679951006] (TyFun [a6989586621679951006] (Maybe [a6989586621679951006]) -> Type)) #
Instances
| SuppressUnusedWarnings (StripPrefixSym0 :: TyFun [a6989586621679951006] (TyFun [a6989586621679951006] (Maybe [a6989586621679951006]) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (StripPrefixSym0 :: TyFun [a6989586621679951006] (TyFun [a6989586621679951006] (Maybe [a6989586621679951006]) -> Type) -> *) (l :: [a6989586621679951006]) # | |
Defined in Data.Promotion.Prelude.List type Apply (StripPrefixSym0 :: TyFun [a6989586621679951006] (TyFun [a6989586621679951006] (Maybe [a6989586621679951006]) -> Type) -> *) (l :: [a6989586621679951006]) = StripPrefixSym1 l | |
data StripPrefixSym1 (l :: [a6989586621679951006]) (l :: TyFun [a6989586621679951006] (Maybe [a6989586621679951006])) #
Instances
| SuppressUnusedWarnings (StripPrefixSym1 :: [a6989586621679951006] -> TyFun [a6989586621679951006] (Maybe [a6989586621679951006]) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (StripPrefixSym1 l1 :: TyFun [a] (Maybe [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Promotion.Prelude.List | |
type StripPrefixSym2 (t :: [a6989586621679951006]) (t :: [a6989586621679951006]) = StripPrefix t t #
data MaximumSym0 (l :: TyFun [a6989586621679459205] a6989586621679459205) #
Instances
| SuppressUnusedWarnings (MaximumSym0 :: TyFun [a6989586621679459205] a6989586621679459205 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MaximumSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type MaximumSym1 (t :: [a6989586621679459205]) = Maximum t #
data MinimumSym0 (l :: TyFun [a6989586621679459204] a6989586621679459204) #
Instances
| SuppressUnusedWarnings (MinimumSym0 :: TyFun [a6989586621679459204] a6989586621679459204 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MinimumSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type MinimumSym1 (t :: [a6989586621679459204]) = Minimum t #
data GroupSym0 (l :: TyFun [a6989586621679459206] [[a6989586621679459206]]) #
Instances
| SuppressUnusedWarnings (GroupSym0 :: TyFun [a6989586621679459206] [[a6989586621679459206]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GroupSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
data GroupBySym0 (l :: TyFun (TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) (TyFun [a6989586621679459201] [[a6989586621679459201]] -> Type)) #
Instances
| SuppressUnusedWarnings (GroupBySym0 :: TyFun (TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) (TyFun [a6989586621679459201] [[a6989586621679459201]] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) (TyFun [a6989586621679459201] [[a6989586621679459201]] -> Type) -> *) (l :: TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data GroupBySym1 (l :: TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459201] [[a6989586621679459201]]) #
Instances
| SuppressUnusedWarnings (GroupBySym1 :: (TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) -> TyFun [a6989586621679459201] [[a6989586621679459201]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GroupBySym1 l1 :: TyFun [a] [[a]] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type GroupBySym2 (t :: TyFun a6989586621679459201 (TyFun a6989586621679459201 Bool -> Type) -> Type) (t :: [a6989586621679459201]) = GroupBy t t #
data LookupSym0 (l :: TyFun a6989586621679459199 (TyFun [(a6989586621679459199, b6989586621679459200)] (Maybe b6989586621679459200) -> Type)) #
Instances
| SuppressUnusedWarnings (LookupSym0 :: TyFun a6989586621679459199 (TyFun [(a6989586621679459199, b6989586621679459200)] (Maybe b6989586621679459200) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (LookupSym0 :: TyFun a6989586621679459199 (TyFun [(a6989586621679459199, b6989586621679459200)] (Maybe b6989586621679459200) -> Type) -> *) (l :: a6989586621679459199) # | |
Defined in Data.Singletons.Prelude.List | |
data LookupSym1 (l :: a6989586621679459199) (l :: TyFun [(a6989586621679459199, b6989586621679459200)] (Maybe b6989586621679459200)) #
Instances
| SuppressUnusedWarnings (LookupSym1 :: a6989586621679459199 -> TyFun [(a6989586621679459199, b6989586621679459200)] (Maybe b6989586621679459200) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (LookupSym1 l1 :: TyFun [(a, b)] (Maybe b) -> *) (l2 :: [(a, b)]) # | |
Defined in Data.Singletons.Prelude.List | |
type LookupSym2 (t :: a6989586621679459199) (t :: [(a6989586621679459199, b6989586621679459200)]) = Lookup t t #
data FindSym0 (l :: TyFun (TyFun a6989586621679459221 Bool -> Type) (TyFun [a6989586621679459221] (Maybe a6989586621679459221) -> Type)) #
Instances
| SuppressUnusedWarnings (FindSym0 :: TyFun (TyFun a6989586621679459221 Bool -> Type) (TyFun [a6989586621679459221] (Maybe a6989586621679459221) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindSym0 :: TyFun (TyFun a6989586621679459221 Bool -> Type) (TyFun [a6989586621679459221] (Maybe a6989586621679459221) -> Type) -> *) (l :: TyFun a6989586621679459221 Bool -> Type) # | |
data FindSym1 (l :: TyFun a6989586621679459221 Bool -> Type) (l :: TyFun [a6989586621679459221] (Maybe a6989586621679459221)) #
Instances
| SuppressUnusedWarnings (FindSym1 :: (TyFun a6989586621679459221 Bool -> Type) -> TyFun [a6989586621679459221] (Maybe a6989586621679459221) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindSym1 l1 :: TyFun [a] (Maybe a) -> *) (l2 :: [a]) # | |
type FindSym2 (t :: TyFun a6989586621679459221 Bool -> Type) (t :: [a6989586621679459221]) = Find t t #
data FilterSym0 (l :: TyFun (TyFun a6989586621679459222 Bool -> Type) (TyFun [a6989586621679459222] [a6989586621679459222] -> Type)) #
Instances
| SuppressUnusedWarnings (FilterSym0 :: TyFun (TyFun a6989586621679459222 Bool -> Type) (TyFun [a6989586621679459222] [a6989586621679459222] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FilterSym0 :: TyFun (TyFun a6989586621679459222 Bool -> Type) (TyFun [a6989586621679459222] [a6989586621679459222] -> Type) -> *) (l :: TyFun a6989586621679459222 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data FilterSym1 (l :: TyFun a6989586621679459222 Bool -> Type) (l :: TyFun [a6989586621679459222] [a6989586621679459222]) #
Instances
| SuppressUnusedWarnings (FilterSym1 :: (TyFun a6989586621679459222 Bool -> Type) -> TyFun [a6989586621679459222] [a6989586621679459222] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FilterSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type FilterSym2 (t :: TyFun a6989586621679459222 Bool -> Type) (t :: [a6989586621679459222]) = Filter t t #
data PartitionSym0 (l :: TyFun (TyFun a6989586621679459198 Bool -> Type) (TyFun [a6989586621679459198] ([a6989586621679459198], [a6989586621679459198]) -> Type)) #
Instances
| SuppressUnusedWarnings (PartitionSym0 :: TyFun (TyFun a6989586621679459198 Bool -> Type) (TyFun [a6989586621679459198] ([a6989586621679459198], [a6989586621679459198]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679459198 Bool -> Type) (TyFun [a6989586621679459198] ([a6989586621679459198], [a6989586621679459198]) -> Type) -> *) (l :: TyFun a6989586621679459198 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data PartitionSym1 (l :: TyFun a6989586621679459198 Bool -> Type) (l :: TyFun [a6989586621679459198] ([a6989586621679459198], [a6989586621679459198])) #
Instances
| SuppressUnusedWarnings (PartitionSym1 :: (TyFun a6989586621679459198 Bool -> Type) -> TyFun [a6989586621679459198] ([a6989586621679459198], [a6989586621679459198]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (PartitionSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type PartitionSym2 (t :: TyFun a6989586621679459198 Bool -> Type) (t :: [a6989586621679459198]) = Partition t t #
data (!!@#@$) (l :: TyFun [a6989586621679459191] (TyFun Nat a6989586621679459191 -> Type)) #
Instances
| SuppressUnusedWarnings ((!!@#@$) :: TyFun [a6989586621679459191] (TyFun Nat a6989586621679459191 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply ((!!@#@$) :: TyFun [a6989586621679459191] (TyFun Nat a6989586621679459191 -> Type) -> *) (l :: [a6989586621679459191]) # | |
data (l :: [a6989586621679459191]) !!@#@$$ (l :: TyFun Nat a6989586621679459191) #
type (!!@#@$$$) (t :: [a6989586621679459191]) (t :: Nat) = (!!) t t #
data ElemIndexSym0 (l :: TyFun a6989586621679459220 (TyFun [a6989586621679459220] (Maybe Nat) -> Type)) #
Instances
| SuppressUnusedWarnings (ElemIndexSym0 :: TyFun a6989586621679459220 (TyFun [a6989586621679459220] (Maybe Nat) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemIndexSym0 :: TyFun a6989586621679459220 (TyFun [a6989586621679459220] (Maybe Nat) -> Type) -> *) (l :: a6989586621679459220) # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndexSym0 :: TyFun a6989586621679459220 (TyFun [a6989586621679459220] (Maybe Nat) -> Type) -> *) (l :: a6989586621679459220) = ElemIndexSym1 l | |
data ElemIndexSym1 (l :: a6989586621679459220) (l :: TyFun [a6989586621679459220] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings (ElemIndexSym1 :: a6989586621679459220 -> TyFun [a6989586621679459220] (Maybe Nat) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ElemIndexSym2 (t :: a6989586621679459220) (t :: [a6989586621679459220]) = ElemIndex t t #
data ElemIndicesSym0 (l :: TyFun a6989586621679459219 (TyFun [a6989586621679459219] [Nat] -> Type)) #
Instances
| SuppressUnusedWarnings (ElemIndicesSym0 :: TyFun a6989586621679459219 (TyFun [a6989586621679459219] [Nat] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemIndicesSym0 :: TyFun a6989586621679459219 (TyFun [a6989586621679459219] [Nat] -> Type) -> *) (l :: a6989586621679459219) # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndicesSym0 :: TyFun a6989586621679459219 (TyFun [a6989586621679459219] [Nat] -> Type) -> *) (l :: a6989586621679459219) = ElemIndicesSym1 l | |
data ElemIndicesSym1 (l :: a6989586621679459219) (l :: TyFun [a6989586621679459219] [Nat]) #
Instances
| SuppressUnusedWarnings (ElemIndicesSym1 :: a6989586621679459219 -> TyFun [a6989586621679459219] [Nat] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ElemIndicesSym2 (t :: a6989586621679459219) (t :: [a6989586621679459219]) = ElemIndices t t #
data FindIndexSym0 (l :: TyFun (TyFun a6989586621679459218 Bool -> Type) (TyFun [a6989586621679459218] (Maybe Nat) -> Type)) #
Instances
| SuppressUnusedWarnings (FindIndexSym0 :: TyFun (TyFun a6989586621679459218 Bool -> Type) (TyFun [a6989586621679459218] (Maybe Nat) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindIndexSym0 :: TyFun (TyFun a6989586621679459218 Bool -> Type) (TyFun [a6989586621679459218] (Maybe Nat) -> Type) -> *) (l :: TyFun a6989586621679459218 Bool -> Type) # | |
data FindIndexSym1 (l :: TyFun a6989586621679459218 Bool -> Type) (l :: TyFun [a6989586621679459218] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings (FindIndexSym1 :: (TyFun a6989586621679459218 Bool -> Type) -> TyFun [a6989586621679459218] (Maybe Nat) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type FindIndexSym2 (t :: TyFun a6989586621679459218 Bool -> Type) (t :: [a6989586621679459218]) = FindIndex t t #
data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679459217 Bool -> Type) (TyFun [a6989586621679459217] [Nat] -> Type)) #
Instances
| SuppressUnusedWarnings (FindIndicesSym0 :: TyFun (TyFun a6989586621679459217 Bool -> Type) (TyFun [a6989586621679459217] [Nat] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindIndicesSym0 :: TyFun (TyFun a6989586621679459217 Bool -> Type) (TyFun [a6989586621679459217] [Nat] -> Type) -> *) (l :: TyFun a6989586621679459217 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data FindIndicesSym1 (l :: TyFun a6989586621679459217 Bool -> Type) (l :: TyFun [a6989586621679459217] [Nat]) #
Instances
| SuppressUnusedWarnings (FindIndicesSym1 :: (TyFun a6989586621679459217 Bool -> Type) -> TyFun [a6989586621679459217] [Nat] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type FindIndicesSym2 (t :: TyFun a6989586621679459217 Bool -> Type) (t :: [a6989586621679459217]) = FindIndices t t #
data Zip4Sym0 (l :: TyFun [a6989586621679951002] (TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip4Sym0 :: TyFun [a6989586621679951002] (TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip4Sym0 :: TyFun [a6989586621679951002] (TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679951002]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym0 :: TyFun [a6989586621679951002] (TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679951002]) = (Zip4Sym1 l :: TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type) -> *) | |
data Zip4Sym1 (l :: [a6989586621679951002]) (l :: TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip4Sym1 :: [a6989586621679951002] -> TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type) -> *) (l2 :: [b6989586621679951003]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679951003] (TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> Type) -> *) (l2 :: [b6989586621679951003]) = (Zip4Sym2 l1 l2 :: TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> *) | |
data Zip4Sym2 (l :: [a6989586621679951002]) (l :: [b6989586621679951003]) (l :: TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type)) #
Instances
| SuppressUnusedWarnings (Zip4Sym2 :: [a6989586621679951002] -> [b6989586621679951003] -> TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> *) (l3 :: [c6989586621679951004]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679951004] (TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> Type) -> *) (l3 :: [c6989586621679951004]) = (Zip4Sym3 l1 l2 l3 :: TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> *) | |
data Zip4Sym3 (l :: [a6989586621679951002]) (l :: [b6989586621679951003]) (l :: [c6989586621679951004]) (l :: TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)]) #
Instances
| SuppressUnusedWarnings (Zip4Sym3 :: [a6989586621679951002] -> [b6989586621679951003] -> [c6989586621679951004] -> TyFun [d6989586621679951005] [(a6989586621679951002, b6989586621679951003, c6989586621679951004, d6989586621679951005)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip4Sym3 l1 l2 l3 :: TyFun [d] [(a, b, c, d)] -> *) (l4 :: [d]) # | |
type Zip4Sym4 (t :: [a6989586621679951002]) (t :: [b6989586621679951003]) (t :: [c6989586621679951004]) (t :: [d6989586621679951005]) = Zip4 t t t t #
data Zip5Sym0 (l :: TyFun [a6989586621679950997] (TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip5Sym0 :: TyFun [a6989586621679950997] (TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip5Sym0 :: TyFun [a6989586621679950997] (TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950997]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym0 :: TyFun [a6989586621679950997] (TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950997]) = (Zip5Sym1 l :: TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type) -> *) | |
data Zip5Sym1 (l :: [a6989586621679950997]) (l :: TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip5Sym1 :: [a6989586621679950997] -> TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950998]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679950998] (TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950998]) = (Zip5Sym2 l1 l2 :: TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> *) | |
data Zip5Sym2 (l :: [a6989586621679950997]) (l :: [b6989586621679950998]) (l :: TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip5Sym2 :: [a6989586621679950997] -> [b6989586621679950998] -> TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> *) (l3 :: [c6989586621679950999]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679950999] (TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> Type) -> *) (l3 :: [c6989586621679950999]) = (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> *) | |
data Zip5Sym3 (l :: [a6989586621679950997]) (l :: [b6989586621679950998]) (l :: [c6989586621679950999]) (l :: TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type)) #
Instances
| SuppressUnusedWarnings (Zip5Sym3 :: [a6989586621679950997] -> [b6989586621679950998] -> [c6989586621679950999] -> TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> *) (l4 :: [d6989586621679951000]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679951000] (TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> Type) -> *) (l4 :: [d6989586621679951000]) = (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> *) | |
data Zip5Sym4 (l :: [a6989586621679950997]) (l :: [b6989586621679950998]) (l :: [c6989586621679950999]) (l :: [d6989586621679951000]) (l :: TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)]) #
Instances
| SuppressUnusedWarnings (Zip5Sym4 :: [a6989586621679950997] -> [b6989586621679950998] -> [c6989586621679950999] -> [d6989586621679951000] -> TyFun [e6989586621679951001] [(a6989586621679950997, b6989586621679950998, c6989586621679950999, d6989586621679951000, e6989586621679951001)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e] [(a, b, c, d, e)] -> *) (l5 :: [e]) # | |
type Zip5Sym5 (t :: [a6989586621679950997]) (t :: [b6989586621679950998]) (t :: [c6989586621679950999]) (t :: [d6989586621679951000]) (t :: [e6989586621679951001]) = Zip5 t t t t t #
data Zip6Sym0 (l :: TyFun [a6989586621679950991] (TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip6Sym0 :: TyFun [a6989586621679950991] (TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip6Sym0 :: TyFun [a6989586621679950991] (TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950991]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym0 :: TyFun [a6989586621679950991] (TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950991]) = (Zip6Sym1 l :: TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type) -> *) | |
data Zip6Sym1 (l :: [a6989586621679950991]) (l :: TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip6Sym1 :: [a6989586621679950991] -> TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950992]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679950992] (TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950992]) = (Zip6Sym2 l1 l2 :: TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> *) | |
data Zip6Sym2 (l :: [a6989586621679950991]) (l :: [b6989586621679950992]) (l :: TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip6Sym2 :: [a6989586621679950991] -> [b6989586621679950992] -> TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950993]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679950993] (TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950993]) = (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> *) | |
data Zip6Sym3 (l :: [a6989586621679950991]) (l :: [b6989586621679950992]) (l :: [c6989586621679950993]) (l :: TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip6Sym3 :: [a6989586621679950991] -> [b6989586621679950992] -> [c6989586621679950993] -> TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> *) (l4 :: [d6989586621679950994]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679950994] (TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> Type) -> *) (l4 :: [d6989586621679950994]) = (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> *) | |
data Zip6Sym4 (l :: [a6989586621679950991]) (l :: [b6989586621679950992]) (l :: [c6989586621679950993]) (l :: [d6989586621679950994]) (l :: TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type)) #
Instances
| SuppressUnusedWarnings (Zip6Sym4 :: [a6989586621679950991] -> [b6989586621679950992] -> [c6989586621679950993] -> [d6989586621679950994] -> TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> *) (l5 :: [e6989586621679950995]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950995] (TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> Type) -> *) (l5 :: [e6989586621679950995]) = (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> *) | |
data Zip6Sym5 (l :: [a6989586621679950991]) (l :: [b6989586621679950992]) (l :: [c6989586621679950993]) (l :: [d6989586621679950994]) (l :: [e6989586621679950995]) (l :: TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)]) #
Instances
| SuppressUnusedWarnings (Zip6Sym5 :: [a6989586621679950991] -> [b6989586621679950992] -> [c6989586621679950993] -> [d6989586621679950994] -> [e6989586621679950995] -> TyFun [f6989586621679950996] [(a6989586621679950991, b6989586621679950992, c6989586621679950993, d6989586621679950994, e6989586621679950995, f6989586621679950996)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f] [(a, b, c, d, e, f)] -> *) (l6 :: [f]) # | |
type Zip6Sym6 (t :: [a6989586621679950991]) (t :: [b6989586621679950992]) (t :: [c6989586621679950993]) (t :: [d6989586621679950994]) (t :: [e6989586621679950995]) (t :: [f6989586621679950996]) = Zip6 t t t t t t #
data Zip7Sym0 (l :: TyFun [a6989586621679950984] (TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip7Sym0 :: TyFun [a6989586621679950984] (TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip7Sym0 :: TyFun [a6989586621679950984] (TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950984]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym0 :: TyFun [a6989586621679950984] (TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950984]) = (Zip7Sym1 l :: TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) | |
data Zip7Sym1 (l :: [a6989586621679950984]) (l :: TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip7Sym1 :: [a6989586621679950984] -> TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950985]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679950985] (TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950985]) = (Zip7Sym2 l1 l2 :: TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> *) | |
data Zip7Sym2 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip7Sym2 :: [a6989586621679950984] -> [b6989586621679950985] -> TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950986]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679950986] (TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950986]) = (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> *) | |
data Zip7Sym3 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: [c6989586621679950986]) (l :: TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip7Sym3 :: [a6989586621679950984] -> [b6989586621679950985] -> [c6989586621679950986] -> TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679950987]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679950987] (TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679950987]) = (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> *) | |
data Zip7Sym4 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: [c6989586621679950986]) (l :: [d6989586621679950987]) (l :: TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip7Sym4 :: [a6989586621679950984] -> [b6989586621679950985] -> [c6989586621679950986] -> [d6989586621679950987] -> TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> *) (l5 :: [e6989586621679950988]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950988] (TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> Type) -> *) (l5 :: [e6989586621679950988]) = (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> *) | |
data Zip7Sym5 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: [c6989586621679950986]) (l :: [d6989586621679950987]) (l :: [e6989586621679950988]) (l :: TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type)) #
Instances
| SuppressUnusedWarnings (Zip7Sym5 :: [a6989586621679950984] -> [b6989586621679950985] -> [c6989586621679950986] -> [d6989586621679950987] -> [e6989586621679950988] -> TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> *) (l6 :: [f6989586621679950989]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950989] (TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> Type) -> *) (l6 :: [f6989586621679950989]) = (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> *) | |
data Zip7Sym6 (l :: [a6989586621679950984]) (l :: [b6989586621679950985]) (l :: [c6989586621679950986]) (l :: [d6989586621679950987]) (l :: [e6989586621679950988]) (l :: [f6989586621679950989]) (l :: TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)]) #
Instances
| SuppressUnusedWarnings (Zip7Sym6 :: [a6989586621679950984] -> [b6989586621679950985] -> [c6989586621679950986] -> [d6989586621679950987] -> [e6989586621679950988] -> [f6989586621679950989] -> TyFun [g6989586621679950990] [(a6989586621679950984, b6989586621679950985, c6989586621679950986, d6989586621679950987, e6989586621679950988, f6989586621679950989, g6989586621679950990)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g] [(a, b, c, d, e, f, g)] -> *) (l7 :: [g]) # | |
type Zip7Sym7 (t :: [a6989586621679950984]) (t :: [b6989586621679950985]) (t :: [c6989586621679950986]) (t :: [d6989586621679950987]) (t :: [e6989586621679950988]) (t :: [f6989586621679950989]) (t :: [g6989586621679950990]) = Zip7 t t t t t t t #
data ZipWith4Sym0 (l :: TyFun (TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950979] (TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith4Sym0 :: TyFun (TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950979] (TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950979] (TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950979] (TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) = ZipWith4Sym1 l | |
data ZipWith4Sym1 (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679950979] (TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith4Sym1 :: (TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950979] (TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith4Sym1 l1 :: TyFun [a6989586621679950979] (TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950979]) # | |
Defined in Data.Promotion.Prelude.List | |
data ZipWith4Sym2 (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950979]) (l :: TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith4Sym2 :: (TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950979] -> TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> *) (l3 :: [b6989586621679950980]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679950980] (TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> Type) -> *) (l3 :: [b6989586621679950980]) = ZipWith4Sym3 l1 l2 l3 | |
data ZipWith4Sym3 (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950979]) (l :: [b6989586621679950980]) (l :: TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith4Sym3 :: (TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950979] -> [b6989586621679950980] -> TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> *) (l4 :: [c6989586621679950981]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679950981] (TyFun [d6989586621679950982] [e6989586621679950983] -> Type) -> *) (l4 :: [c6989586621679950981]) = ZipWith4Sym4 l1 l2 l3 l4 | |
data ZipWith4Sym4 (l :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950979]) (l :: [b6989586621679950980]) (l :: [c6989586621679950981]) (l :: TyFun [d6989586621679950982] [e6989586621679950983]) #
Instances
| SuppressUnusedWarnings (ZipWith4Sym4 :: (TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950979] -> [b6989586621679950980] -> [c6989586621679950981] -> TyFun [d6989586621679950982] [e6989586621679950983] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith4Sym4 l1 l2 l3 l4 :: TyFun [d] [e] -> *) (l5 :: [d]) # | |
Defined in Data.Promotion.Prelude.List | |
type ZipWith4Sym5 (t :: TyFun a6989586621679950979 (TyFun b6989586621679950980 (TyFun c6989586621679950981 (TyFun d6989586621679950982 e6989586621679950983 -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679950979]) (t :: [b6989586621679950980]) (t :: [c6989586621679950981]) (t :: [d6989586621679950982]) = ZipWith4 t t t t t #
data ZipWith5Sym0 (l :: TyFun (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950973] (TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith5Sym0 :: TyFun (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950973] (TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950973] (TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950973] (TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith5Sym1 l | |
data ZipWith5Sym1 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679950973] (TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith5Sym1 :: (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950973] (TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith5Sym1 l1 :: TyFun [a6989586621679950973] (TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950973]) # | |
Defined in Data.Promotion.Prelude.List | |
data ZipWith5Sym2 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950973]) (l :: TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith5Sym2 :: (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950973] -> TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith5Sym2 l1 l2 :: TyFun [b6989586621679950974] (TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950974]) # | |
Defined in Data.Promotion.Prelude.List | |
data ZipWith5Sym3 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950973]) (l :: [b6989586621679950974]) (l :: TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith5Sym3 :: (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950973] -> [b6989586621679950974] -> TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> *) (l4 :: [c6989586621679950975]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679950975] (TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> Type) -> *) (l4 :: [c6989586621679950975]) = ZipWith5Sym4 l1 l2 l3 l4 | |
data ZipWith5Sym4 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950973]) (l :: [b6989586621679950974]) (l :: [c6989586621679950975]) (l :: TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith5Sym4 :: (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950973] -> [b6989586621679950974] -> [c6989586621679950975] -> TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> *) (l5 :: [d6989586621679950976]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950976] (TyFun [e6989586621679950977] [f6989586621679950978] -> Type) -> *) (l5 :: [d6989586621679950976]) = ZipWith5Sym5 l1 l2 l3 l4 l5 | |
data ZipWith5Sym5 (l :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950973]) (l :: [b6989586621679950974]) (l :: [c6989586621679950975]) (l :: [d6989586621679950976]) (l :: TyFun [e6989586621679950977] [f6989586621679950978]) #
Instances
| SuppressUnusedWarnings (ZipWith5Sym5 :: (TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950973] -> [b6989586621679950974] -> [c6989586621679950975] -> [d6989586621679950976] -> TyFun [e6989586621679950977] [f6989586621679950978] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith5Sym5 l1 l2 l3 l4 l5 :: TyFun [e] [f] -> *) (l6 :: [e]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym5 l1 l2 l3 l4 l5 :: TyFun [e] [f] -> *) (l6 :: [e]) = ZipWith5 l1 l2 l3 l4 l5 l6 | |
type ZipWith5Sym6 (t :: TyFun a6989586621679950973 (TyFun b6989586621679950974 (TyFun c6989586621679950975 (TyFun d6989586621679950976 (TyFun e6989586621679950977 f6989586621679950978 -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679950973]) (t :: [b6989586621679950974]) (t :: [c6989586621679950975]) (t :: [d6989586621679950976]) (t :: [e6989586621679950977]) = ZipWith5 t t t t t t #
data ZipWith6Sym0 (l :: TyFun (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith6Sym0 :: TyFun (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith6Sym1 l | |
data ZipWith6Sym1 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith6Sym1 :: (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950966]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679950966] (TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950966]) = ZipWith6Sym2 l1 l2 | |
data ZipWith6Sym2 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith6Sym2 :: (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950966] -> TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950967]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679950967] (TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950967]) = ZipWith6Sym3 l1 l2 l3 | |
data ZipWith6Sym3 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: [b6989586621679950967]) (l :: TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith6Sym3 :: (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950966] -> [b6989586621679950967] -> TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith6Sym3 l1 l2 l3 :: TyFun [c6989586621679950968] (TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679950968]) # | |
Defined in Data.Promotion.Prelude.List | |
data ZipWith6Sym4 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: [b6989586621679950967]) (l :: [c6989586621679950968]) (l :: TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith6Sym4 :: (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950966] -> [b6989586621679950967] -> [c6989586621679950968] -> TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> *) (l5 :: [d6989586621679950969]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950969] (TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> Type) -> *) (l5 :: [d6989586621679950969]) = ZipWith6Sym5 l1 l2 l3 l4 l5 | |
data ZipWith6Sym5 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: [b6989586621679950967]) (l :: [c6989586621679950968]) (l :: [d6989586621679950969]) (l :: TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith6Sym5 :: (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950966] -> [b6989586621679950967] -> [c6989586621679950968] -> [d6989586621679950969] -> TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> *) (l6 :: [e6989586621679950970]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950970] (TyFun [f6989586621679950971] [g6989586621679950972] -> Type) -> *) (l6 :: [e6989586621679950970]) = ZipWith6Sym6 l1 l2 l3 l4 l5 l6 | |
data ZipWith6Sym6 (l :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950966]) (l :: [b6989586621679950967]) (l :: [c6989586621679950968]) (l :: [d6989586621679950969]) (l :: [e6989586621679950970]) (l :: TyFun [f6989586621679950971] [g6989586621679950972]) #
Instances
| SuppressUnusedWarnings (ZipWith6Sym6 :: (TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950966] -> [b6989586621679950967] -> [c6989586621679950968] -> [d6989586621679950969] -> [e6989586621679950970] -> TyFun [f6989586621679950971] [g6989586621679950972] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith6Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f] [g] -> *) (l7 :: [f]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f] [g] -> *) (l7 :: [f]) = ZipWith6 l1 l2 l3 l4 l5 l6 l7 | |
type ZipWith6Sym7 (t :: TyFun a6989586621679950966 (TyFun b6989586621679950967 (TyFun c6989586621679950968 (TyFun d6989586621679950969 (TyFun e6989586621679950970 (TyFun f6989586621679950971 g6989586621679950972 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679950966]) (t :: [b6989586621679950967]) (t :: [c6989586621679950968]) (t :: [d6989586621679950969]) (t :: [e6989586621679950970]) (t :: [f6989586621679950971]) = ZipWith6 t t t t t t t #
data ZipWith7Sym0 (l :: TyFun (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith7Sym0 :: TyFun (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith7Sym1 l | |
data ZipWith7Sym1 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith7Sym1 :: (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950958]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679950958] (TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950958]) = ZipWith7Sym2 l1 l2 | |
data ZipWith7Sym2 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith7Sym2 :: (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950958] -> TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950959]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679950959] (TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950959]) = ZipWith7Sym3 l1 l2 l3 | |
data ZipWith7Sym3 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith7Sym3 :: (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950958] -> [b6989586621679950959] -> TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679950960]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679950960] (TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679950960]) = ZipWith7Sym4 l1 l2 l3 l4 | |
data ZipWith7Sym4 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: [c6989586621679950960]) (l :: TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith7Sym4 :: (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950958] -> [b6989586621679950959] -> [c6989586621679950960] -> TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith7Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950961] (TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> Type) -> *) (l5 :: [d6989586621679950961]) # | |
Defined in Data.Promotion.Prelude.List | |
data ZipWith7Sym5 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: [c6989586621679950960]) (l :: [d6989586621679950961]) (l :: TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith7Sym5 :: (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950958] -> [b6989586621679950959] -> [c6989586621679950960] -> [d6989586621679950961] -> TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> *) (l6 :: [e6989586621679950962]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950962] (TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> Type) -> *) (l6 :: [e6989586621679950962]) = ZipWith7Sym6 l1 l2 l3 l4 l5 l6 | |
data ZipWith7Sym6 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: [c6989586621679950960]) (l :: [d6989586621679950961]) (l :: [e6989586621679950962]) (l :: TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith7Sym6 :: (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950958] -> [b6989586621679950959] -> [c6989586621679950960] -> [d6989586621679950961] -> [e6989586621679950962] -> TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> *) (l7 :: [f6989586621679950963]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679950963] (TyFun [g6989586621679950964] [h6989586621679950965] -> Type) -> *) (l7 :: [f6989586621679950963]) = ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 | |
data ZipWith7Sym7 (l :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (l :: [a6989586621679950958]) (l :: [b6989586621679950959]) (l :: [c6989586621679950960]) (l :: [d6989586621679950961]) (l :: [e6989586621679950962]) (l :: [f6989586621679950963]) (l :: TyFun [g6989586621679950964] [h6989586621679950965]) #
Instances
| SuppressUnusedWarnings (ZipWith7Sym7 :: (TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950958] -> [b6989586621679950959] -> [c6989586621679950960] -> [d6989586621679950961] -> [e6989586621679950962] -> [f6989586621679950963] -> TyFun [g6989586621679950964] [h6989586621679950965] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 :: TyFun [g] [h] -> *) (l8 :: [g]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 :: TyFun [g] [h] -> *) (l8 :: [g]) = ZipWith7 l1 l2 l3 l4 l5 l6 l7 l8 | |
type ZipWith7Sym8 (t :: TyFun a6989586621679950958 (TyFun b6989586621679950959 (TyFun c6989586621679950960 (TyFun d6989586621679950961 (TyFun e6989586621679950962 (TyFun f6989586621679950963 (TyFun g6989586621679950964 h6989586621679950965 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (t :: [a6989586621679950958]) (t :: [b6989586621679950959]) (t :: [c6989586621679950960]) (t :: [d6989586621679950961]) (t :: [e6989586621679950962]) (t :: [f6989586621679950963]) (t :: [g6989586621679950964]) = ZipWith7 t t t t t t t t #
data UnlinesSym0 (l :: TyFun [Symbol] Symbol) #
Instances
| SuppressUnusedWarnings UnlinesSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply UnlinesSym0 (l :: [Symbol]) # | |
Defined in Data.Singletons.Prelude.List | |
type UnlinesSym1 (t :: [Symbol]) = Unlines t #
data UnwordsSym0 (l :: TyFun [Symbol] Symbol) #
Instances
| SuppressUnusedWarnings UnwordsSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply UnwordsSym0 (l :: [Symbol]) # | |
Defined in Data.Singletons.Prelude.List | |
type UnwordsSym1 (t :: [Symbol]) = Unwords t #
data NubSym0 (l :: TyFun [a6989586621679459190] [a6989586621679459190]) #
Instances
| SuppressUnusedWarnings (NubSym0 :: TyFun [a6989586621679459190] [a6989586621679459190] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NubSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
data NubBySym0 (l :: TyFun (TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) (TyFun [a6989586621679459189] [a6989586621679459189] -> Type)) #
Instances
| SuppressUnusedWarnings (NubBySym0 :: TyFun (TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) (TyFun [a6989586621679459189] [a6989586621679459189] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NubBySym0 :: TyFun (TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) (TyFun [a6989586621679459189] [a6989586621679459189] -> Type) -> *) (l :: TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data NubBySym1 (l :: TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459189] [a6989586621679459189]) #
Instances
| SuppressUnusedWarnings (NubBySym1 :: (TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) -> TyFun [a6989586621679459189] [a6989586621679459189] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NubBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
type NubBySym2 (t :: TyFun a6989586621679459189 (TyFun a6989586621679459189 Bool -> Type) -> Type) (t :: [a6989586621679459189]) = NubBy t t #
data UnionSym0 (l :: TyFun [a6989586621679459186] (TyFun [a6989586621679459186] [a6989586621679459186] -> Type)) #
Instances
| SuppressUnusedWarnings (UnionSym0 :: TyFun [a6989586621679459186] (TyFun [a6989586621679459186] [a6989586621679459186] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionSym0 :: TyFun [a6989586621679459186] (TyFun [a6989586621679459186] [a6989586621679459186] -> Type) -> *) (l :: [a6989586621679459186]) # | |
data UnionSym1 (l :: [a6989586621679459186]) (l :: TyFun [a6989586621679459186] [a6989586621679459186]) #
Instances
| SuppressUnusedWarnings (UnionSym1 :: [a6989586621679459186] -> TyFun [a6989586621679459186] [a6989586621679459186] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
data UnionBySym0 (l :: TyFun (TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (UnionBySym0 :: TyFun (TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type) -> Type) -> *) (l :: TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) = UnionBySym1 l | |
data UnionBySym1 (l :: TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (l :: TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type)) #
Instances
| SuppressUnusedWarnings (UnionBySym1 :: (TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) -> TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionBySym1 l1 :: TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type) -> *) (l2 :: [a6989586621679459187]) # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym1 l1 :: TyFun [a6989586621679459187] (TyFun [a6989586621679459187] [a6989586621679459187] -> Type) -> *) (l2 :: [a6989586621679459187]) = UnionBySym2 l1 l2 | |
data UnionBySym2 (l :: TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (l :: [a6989586621679459187]) (l :: TyFun [a6989586621679459187] [a6989586621679459187]) #
Instances
| SuppressUnusedWarnings (UnionBySym2 :: (TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) -> [a6989586621679459187] -> TyFun [a6989586621679459187] [a6989586621679459187] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type UnionBySym3 (t :: TyFun a6989586621679459187 (TyFun a6989586621679459187 Bool -> Type) -> Type) (t :: [a6989586621679459187]) (t :: [a6989586621679459187]) = UnionBy t t t #
data GenericLengthSym0 (l :: TyFun [a6989586621679459185] i6989586621679459184) #
Instances
| SuppressUnusedWarnings (GenericLengthSym0 :: TyFun [a6989586621679459185] i6989586621679459184 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericLengthSym0 :: TyFun [a] k2 -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type GenericLengthSym1 (t :: [a6989586621679459185]) = GenericLength t #
data GenericTakeSym0 (l :: TyFun i6989586621679950956 (TyFun [a6989586621679950957] [a6989586621679950957] -> Type)) #
Instances
| SuppressUnusedWarnings (GenericTakeSym0 :: TyFun i6989586621679950956 (TyFun [a6989586621679950957] [a6989586621679950957] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericTakeSym0 :: TyFun i6989586621679950956 (TyFun [a6989586621679950957] [a6989586621679950957] -> Type) -> *) (l :: i6989586621679950956) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericTakeSym0 :: TyFun i6989586621679950956 (TyFun [a6989586621679950957] [a6989586621679950957] -> Type) -> *) (l :: i6989586621679950956) = (GenericTakeSym1 l :: TyFun [a6989586621679950957] [a6989586621679950957] -> *) | |
data GenericTakeSym1 (l :: i6989586621679950956) (l :: TyFun [a6989586621679950957] [a6989586621679950957]) #
Instances
| SuppressUnusedWarnings (GenericTakeSym1 :: i6989586621679950956 -> TyFun [a6989586621679950957] [a6989586621679950957] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericTakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Promotion.Prelude.List | |
type GenericTakeSym2 (t :: i6989586621679950956) (t :: [a6989586621679950957]) = GenericTake t t #
data GenericDropSym0 (l :: TyFun i6989586621679950954 (TyFun [a6989586621679950955] [a6989586621679950955] -> Type)) #
Instances
| SuppressUnusedWarnings (GenericDropSym0 :: TyFun i6989586621679950954 (TyFun [a6989586621679950955] [a6989586621679950955] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericDropSym0 :: TyFun i6989586621679950954 (TyFun [a6989586621679950955] [a6989586621679950955] -> Type) -> *) (l :: i6989586621679950954) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericDropSym0 :: TyFun i6989586621679950954 (TyFun [a6989586621679950955] [a6989586621679950955] -> Type) -> *) (l :: i6989586621679950954) = (GenericDropSym1 l :: TyFun [a6989586621679950955] [a6989586621679950955] -> *) | |
data GenericDropSym1 (l :: i6989586621679950954) (l :: TyFun [a6989586621679950955] [a6989586621679950955]) #
Instances
| SuppressUnusedWarnings (GenericDropSym1 :: i6989586621679950954 -> TyFun [a6989586621679950955] [a6989586621679950955] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericDropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Promotion.Prelude.List | |
type GenericDropSym2 (t :: i6989586621679950954) (t :: [a6989586621679950955]) = GenericDrop t t #
data GenericSplitAtSym0 (l :: TyFun i6989586621679950952 (TyFun [a6989586621679950953] ([a6989586621679950953], [a6989586621679950953]) -> Type)) #
Instances
| SuppressUnusedWarnings (GenericSplitAtSym0 :: TyFun i6989586621679950952 (TyFun [a6989586621679950953] ([a6989586621679950953], [a6989586621679950953]) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericSplitAtSym0 :: TyFun i6989586621679950952 (TyFun [a6989586621679950953] ([a6989586621679950953], [a6989586621679950953]) -> Type) -> *) (l :: i6989586621679950952) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericSplitAtSym0 :: TyFun i6989586621679950952 (TyFun [a6989586621679950953] ([a6989586621679950953], [a6989586621679950953]) -> Type) -> *) (l :: i6989586621679950952) = (GenericSplitAtSym1 l :: TyFun [a6989586621679950953] ([a6989586621679950953], [a6989586621679950953]) -> *) | |
data GenericSplitAtSym1 (l :: i6989586621679950952) (l :: TyFun [a6989586621679950953] ([a6989586621679950953], [a6989586621679950953])) #
Instances
| SuppressUnusedWarnings (GenericSplitAtSym1 :: i6989586621679950952 -> TyFun [a6989586621679950953] ([a6989586621679950953], [a6989586621679950953]) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericSplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Promotion.Prelude.List | |
type GenericSplitAtSym2 (t :: i6989586621679950952) (t :: [a6989586621679950953]) = GenericSplitAt t t #
data GenericIndexSym0 (l :: TyFun [a6989586621679950951] (TyFun i6989586621679950950 a6989586621679950951 -> Type)) #
Instances
| SuppressUnusedWarnings (GenericIndexSym0 :: TyFun [a6989586621679950951] (TyFun i6989586621679950950 a6989586621679950951 -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericIndexSym0 :: TyFun [a6989586621679950951] (TyFun i6989586621679950950 a6989586621679950951 -> Type) -> *) (l :: [a6989586621679950951]) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericIndexSym0 :: TyFun [a6989586621679950951] (TyFun i6989586621679950950 a6989586621679950951 -> Type) -> *) (l :: [a6989586621679950951]) = (GenericIndexSym1 l :: TyFun i6989586621679950950 a6989586621679950951 -> *) | |
data GenericIndexSym1 (l :: [a6989586621679950951]) (l :: TyFun i6989586621679950950 a6989586621679950951) #
Instances
| SuppressUnusedWarnings (GenericIndexSym1 :: [a6989586621679950951] -> TyFun i6989586621679950950 a6989586621679950951 -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericIndexSym1 l1 :: TyFun i a -> *) (l2 :: i) # | |
Defined in Data.Promotion.Prelude.List | |
type GenericIndexSym2 (t :: [a6989586621679950951]) (t :: i6989586621679950950) = GenericIndex t t #
data GenericReplicateSym0 (l :: TyFun i6989586621679950948 (TyFun a6989586621679950949 [a6989586621679950949] -> Type)) #
Instances
| SuppressUnusedWarnings (GenericReplicateSym0 :: TyFun i6989586621679950948 (TyFun a6989586621679950949 [a6989586621679950949] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericReplicateSym0 :: TyFun i6989586621679950948 (TyFun a6989586621679950949 [a6989586621679950949] -> Type) -> *) (l :: i6989586621679950948) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericReplicateSym0 :: TyFun i6989586621679950948 (TyFun a6989586621679950949 [a6989586621679950949] -> Type) -> *) (l :: i6989586621679950948) = (GenericReplicateSym1 l :: TyFun a6989586621679950949 [a6989586621679950949] -> *) | |
data GenericReplicateSym1 (l :: i6989586621679950948) (l :: TyFun a6989586621679950949 [a6989586621679950949]) #
Instances
| SuppressUnusedWarnings (GenericReplicateSym1 :: i6989586621679950948 -> TyFun a6989586621679950949 [a6989586621679950949] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) # | |
Defined in Data.Promotion.Prelude.List | |
type GenericReplicateSym2 (t :: i6989586621679950948) (t :: a6989586621679950949) = GenericReplicate t t #