| Copyright | (C) 2014 Jan Stolarek |
|---|---|
| License | BSD-style (see LICENSE) |
| Maintainer | Jan Stolarek (jan.stolarek@p.lodz.pl) |
| Stability | experimental |
| Portability | non-portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Data.Promotion.Prelude.List
Contents
Description
Defines promoted functions and datatypes relating to List,
including a promoted version of all the definitions in Data.List.
Because many of these definitions are produced by Template Haskell,
it is not possible to create proper Haddock documentation. Please look
up the corresponding operation in Data.List. Also, please excuse
the apparent repeated variable names. This is due to an interaction
between Template Haskell and Haddock.
- type family (a :: [a]) :++ (a :: [a]) :: [a] where ...
- type family Head (a :: [a]) :: a where ...
- type family Last (a :: [a]) :: a where ...
- type family Tail (a :: [a]) :: [a] where ...
- type family Init (a :: [a]) :: [a] where ...
- type family Null (a :: [a]) :: Bool where ...
- type family Length (a :: [a]) :: Nat where ...
- type family Map (a :: TyFun a b -> Type) (a :: [a]) :: [b] where ...
- type family Reverse (a :: [a]) :: [a] where ...
- type family Intersperse (a :: a) (a :: [a]) :: [a] where ...
- type family Intercalate (a :: [a]) (a :: [[a]]) :: [a] where ...
- type family Transpose (a :: [[a]]) :: [[a]] where ...
- type family Subsequences (a :: [a]) :: [[a]] where ...
- type family Permutations (a :: [a]) :: [[a]] where ...
- type family Foldl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
- type family Foldl' (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
- type family Foldl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
- type family Foldl1' (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
- type family Foldr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
- type family Foldr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
- type family Concat (a :: [[a]]) :: [a] where ...
- type family ConcatMap (a :: TyFun a [b] -> Type) (a :: [a]) :: [b] where ...
- type family And (a :: [Bool]) :: Bool where ...
- type family Or (a :: [Bool]) :: Bool where ...
- type family Any_ (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ...
- type family All (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ...
- type family Sum (a :: [a]) :: a where ...
- type family Product (a :: [a]) :: a where ...
- type family Maximum (a :: [a]) :: a where ...
- type family Minimum (a :: [a]) :: a where ...
- any_ :: forall a. (a -> Bool) -> [a] -> Bool
- type family Scanl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ...
- type family Scanl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ...
- type family Scanr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ...
- type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ...
- type family MapAccumL (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ...
- type family MapAccumR (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ...
- type family Replicate (a :: Nat) (a :: a) :: [a] where ...
- type family Unfoldr (a :: TyFun b (Maybe (a, b)) -> Type) (a :: b) :: [a] where ...
- type family Take (a :: Nat) (a :: [a]) :: [a] where ...
- type family Drop (a :: Nat) (a :: [a]) :: [a] where ...
- type family SplitAt (a :: Nat) (a :: [a]) :: ([a], [a]) where ...
- type family TakeWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- type family DropWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- type family DropWhileEnd (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- type family Span (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
- type family Break (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
- type family StripPrefix (a :: [a]) (a :: [a]) :: Maybe [a] where ...
- type family Group (a :: [a]) :: [[a]] where ...
- type family Inits (a :: [a]) :: [[a]] where ...
- type family Tails (a :: [a]) :: [[a]] where ...
- type family IsPrefixOf (a :: [a]) (a :: [a]) :: Bool where ...
- type family IsSuffixOf (a :: [a]) (a :: [a]) :: Bool where ...
- type family IsInfixOf (a :: [a]) (a :: [a]) :: Bool where ...
- type family Elem (a :: a) (a :: [a]) :: Bool where ...
- type family NotElem (a :: a) (a :: [a]) :: Bool where ...
- type family Lookup (a :: a) (a :: [(a, b)]) :: Maybe b where ...
- type family Find (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe a where ...
- type family Filter (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- type family Partition (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
- type family (a :: [a]) :!! (a :: Nat) :: a where ...
- type family ElemIndex (a :: a) (a :: [a]) :: Maybe Nat where ...
- type family ElemIndices (a :: a) (a :: [a]) :: [Nat] where ...
- type family FindIndex (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe Nat where ...
- type family FindIndices (a :: TyFun a Bool -> Type) (a :: [a]) :: [Nat] where ...
- type family Zip (a :: [a]) (a :: [b]) :: [(a, b)] where ...
- type family Zip3 (a :: [a]) (a :: [b]) (a :: [c]) :: [(a, b, c)] where ...
- type family Zip4 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [(a, b, c, d)] where ...
- type family Zip5 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [(a, b, c, d, e)] where ...
- type family Zip6 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [(a, b, c, d, e, f)] where ...
- type family Zip7 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [(a, b, c, d, e, f, g)] where ...
- type family ZipWith (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: [a]) (a :: [b]) :: [c] where ...
- type family ZipWith3 (a :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) :: [d] where ...
- type family ZipWith4 (a :: TyFun a (TyFun b (TyFun c (TyFun d e -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [e] where ...
- type family ZipWith5 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e f -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [f] where ...
- type family ZipWith6 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f g -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [g] where ...
- type family ZipWith7 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f (TyFun g h -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [h] where ...
- type family Unzip (a :: [(a, b)]) :: ([a], [b]) where ...
- type family Unzip3 (a :: [(a, b, c)]) :: ([a], [b], [c]) where ...
- type family Unzip4 (a :: [(a, b, c, d)]) :: ([a], [b], [c], [d]) where ...
- type family Unzip5 (a :: [(a, b, c, d, e)]) :: ([a], [b], [c], [d], [e]) where ...
- type family Unzip6 (a :: [(a, b, c, d, e, f)]) :: ([a], [b], [c], [d], [e], [f]) where ...
- type family Unzip7 (a :: [(a, b, c, d, e, f, g)]) :: ([a], [b], [c], [d], [e], [f], [g]) where ...
- type family Nub (a :: [a]) :: [a] where ...
- type family Delete (a :: a) (a :: [a]) :: [a] where ...
- type family (a :: [a]) :\\ (a :: [a]) :: [a] where ...
- type family Union (a :: [a]) (a :: [a]) :: [a] where ...
- type family Intersect (a :: [a]) (a :: [a]) :: [a] where ...
- type family Sort (a :: [a]) :: [a] where ...
- type family Insert (a :: a) (a :: [a]) :: [a] where ...
- type family NubBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [a] where ...
- type family DeleteBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
- type family DeleteFirstsBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- type family UnionBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- type family GroupBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [[a]] where ...
- type family IntersectBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- type family SortBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: [a] where ...
- type family InsertBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
- type family MaximumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
- type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
- type family GenericLength (a :: [a]) :: i where ...
- type family GenericTake (a :: i) (a :: [a]) :: [a] where ...
- type family GenericDrop (a :: i) (a :: [a]) :: [a] where ...
- type family GenericSplitAt (a :: i) (a :: [a]) :: ([a], [a]) where ...
- type family GenericIndex (a :: [a]) (a :: i) :: a where ...
- type family GenericReplicate (a :: i) (a :: a) :: [a] where ...
- type NilSym0 = '[]
- data (:$) l
- data l :$$ l
- type (:$$$) t t = (:) t t
- type (:++$$$) t t = (:++) t t
- data l :++$$ l
- data (:++$) l
- data HeadSym0 l
- type HeadSym1 t = Head t
- data LastSym0 l
- type LastSym1 t = Last t
- data TailSym0 l
- type TailSym1 t = Tail t
- data InitSym0 l
- type InitSym1 t = Init t
- data NullSym0 l
- type NullSym1 t = Null t
- data MapSym0 l
- data MapSym1 l l
- type MapSym2 t t = Map t t
- data ReverseSym0 l
- type ReverseSym1 t = Reverse t
- data IntersperseSym0 l
- data IntersperseSym1 l l
- type IntersperseSym2 t t = Intersperse t t
- data IntercalateSym0 l
- data IntercalateSym1 l l
- type IntercalateSym2 t t = Intercalate t t
- data SubsequencesSym0 l
- type SubsequencesSym1 t = Subsequences t
- data PermutationsSym0 l
- type PermutationsSym1 t = Permutations t
- data FoldlSym0 l
- data FoldlSym1 l l
- data FoldlSym2 l l l
- type FoldlSym3 t t t = Foldl t t t
- data Foldl'Sym0 l
- data Foldl'Sym1 l l
- data Foldl'Sym2 l l l
- type Foldl'Sym3 t t t = Foldl' t t t
- data Foldl1Sym0 l
- data Foldl1Sym1 l l
- type Foldl1Sym2 t t = Foldl1 t t
- data Foldl1'Sym0 l
- data Foldl1'Sym1 l l
- type Foldl1'Sym2 t t = Foldl1' t t
- data FoldrSym0 l
- data FoldrSym1 l l
- data FoldrSym2 l l l
- type FoldrSym3 t t t = Foldr t t t
- data Foldr1Sym0 l
- data Foldr1Sym1 l l
- type Foldr1Sym2 t t = Foldr1 t t
- data ConcatSym0 l
- type ConcatSym1 t = Concat t
- data ConcatMapSym0 l
- data ConcatMapSym1 l l
- type ConcatMapSym2 t t = ConcatMap t t
- data AndSym0 l
- type AndSym1 t = And t
- data OrSym0 l
- type OrSym1 t = Or t
- data Any_Sym0 l
- data Any_Sym1 l l
- type Any_Sym2 t t = Any_ t t
- data AllSym0 l
- data AllSym1 l l
- type AllSym2 t t = All t t
- data ScanlSym0 l
- data ScanlSym1 l l
- data ScanlSym2 l l l
- type ScanlSym3 t t t = Scanl t t t
- data Scanl1Sym0 l
- data Scanl1Sym1 l l
- type Scanl1Sym2 t t = Scanl1 t t
- data ScanrSym0 l
- data ScanrSym1 l l
- data ScanrSym2 l l l
- type ScanrSym3 t t t = Scanr t t t
- data Scanr1Sym0 l
- data Scanr1Sym1 l l
- type Scanr1Sym2 t t = Scanr1 t t
- data MapAccumLSym0 l
- data MapAccumLSym1 l l
- data MapAccumLSym2 l l l
- type MapAccumLSym3 t t t = MapAccumL t t t
- data MapAccumRSym0 l
- data MapAccumRSym1 l l
- data MapAccumRSym2 l l l
- type MapAccumRSym3 t t t = MapAccumR t t t
- data UnfoldrSym0 l
- data UnfoldrSym1 l l
- type UnfoldrSym2 t t = Unfoldr t t
- data InitsSym0 l
- type InitsSym1 t = Inits t
- data TailsSym0 l
- type TailsSym1 t = Tails t
- data IsPrefixOfSym0 l
- data IsPrefixOfSym1 l l
- type IsPrefixOfSym2 t t = IsPrefixOf t t
- data IsSuffixOfSym0 l
- data IsSuffixOfSym1 l l
- type IsSuffixOfSym2 t t = IsSuffixOf t t
- data IsInfixOfSym0 l
- data IsInfixOfSym1 l l
- type IsInfixOfSym2 t t = IsInfixOf t t
- data ElemSym0 l
- data ElemSym1 l l
- type ElemSym2 t t = Elem t t
- data NotElemSym0 l
- data NotElemSym1 l l
- type NotElemSym2 t t = NotElem t t
- data ZipSym0 l
- data ZipSym1 l l
- type ZipSym2 t t = Zip t t
- data Zip3Sym0 l
- data Zip3Sym1 l l
- data Zip3Sym2 l l l
- type Zip3Sym3 t t t = Zip3 t t t
- data ZipWithSym0 l
- data ZipWithSym1 l l
- data ZipWithSym2 l l l
- type ZipWithSym3 t t t = ZipWith t t t
- data ZipWith3Sym0 l
- data ZipWith3Sym1 l l
- data ZipWith3Sym2 l l l
- data ZipWith3Sym3 l l l l
- type ZipWith3Sym4 t t t t = ZipWith3 t t t t
- data UnzipSym0 l
- type UnzipSym1 t = Unzip t
- data Unzip3Sym0 l
- type Unzip3Sym1 t = Unzip3 t
- data Unzip4Sym0 l
- type Unzip4Sym1 t = Unzip4 t
- data Unzip5Sym0 l
- type Unzip5Sym1 t = Unzip5 t
- data Unzip6Sym0 l
- type Unzip6Sym1 t = Unzip6 t
- data Unzip7Sym0 l
- type Unzip7Sym1 t = Unzip7 t
- data DeleteSym0 l
- data DeleteSym1 l l
- type DeleteSym2 t t = Delete t t
- data (:\\$) l
- data l :\\$$ l
- type (:\\$$$) t t = (:\\) t t
- data IntersectSym0 l
- data IntersectSym1 l l
- type IntersectSym2 t t = Intersect t t
- data InsertSym0 l
- data InsertSym1 l l
- type InsertSym2 t t = Insert t t
- data SortSym0 l
- type SortSym1 t = Sort t
- data DeleteBySym0 l
- data DeleteBySym1 l l
- data DeleteBySym2 l l l
- type DeleteBySym3 t t t = DeleteBy t t t
- data DeleteFirstsBySym0 l
- data DeleteFirstsBySym1 l l
- data DeleteFirstsBySym2 l l l
- type DeleteFirstsBySym3 t t t = DeleteFirstsBy t t t
- data IntersectBySym0 l
- data IntersectBySym1 l l
- data IntersectBySym2 l l l
- data SortBySym0 l
- data SortBySym1 l l
- type SortBySym2 t t = SortBy t t
- data InsertBySym0 l
- data InsertBySym1 l l
- data InsertBySym2 l l l
- type InsertBySym3 t t t = InsertBy t t t
- data MaximumBySym0 l
- data MaximumBySym1 l l
- type MaximumBySym2 t t = MaximumBy t t
- data MinimumBySym0 l
- data MinimumBySym1 l l
- type MinimumBySym2 t t = MinimumBy t t
- data LengthSym0 l
- type LengthSym1 t = Length t
- data SumSym0 l
- type SumSym1 t = Sum t
- data ProductSym0 l
- type ProductSym1 t = Product t
- data ReplicateSym0 l
- data ReplicateSym1 l l
- type ReplicateSym2 t t = Replicate t t
- data TransposeSym0 l
- type TransposeSym1 t = Transpose t
- data TakeSym0 l
- data TakeSym1 l l
- type TakeSym2 t t = Take t t
- data DropSym0 l
- data DropSym1 l l
- type DropSym2 t t = Drop t t
- data SplitAtSym0 l
- data SplitAtSym1 l l
- type SplitAtSym2 t t = SplitAt t t
- data TakeWhileSym0 l
- data TakeWhileSym1 l l
- type TakeWhileSym2 t t = TakeWhile t t
- data DropWhileSym0 l
- data DropWhileSym1 l l
- type DropWhileSym2 t t = DropWhile t t
- data DropWhileEndSym0 l
- data DropWhileEndSym1 l l
- type DropWhileEndSym2 t t = DropWhileEnd t t
- data SpanSym0 l
- data SpanSym1 l l
- type SpanSym2 t t = Span t t
- data BreakSym0 l
- data BreakSym1 l l
- type BreakSym2 t t = Break t t
- data StripPrefixSym0 l
- data StripPrefixSym1 l l
- type StripPrefixSym2 t t = StripPrefix t t
- data MaximumSym0 l
- type MaximumSym1 t = Maximum t
- data MinimumSym0 l
- type MinimumSym1 t = Minimum t
- data GroupSym0 l
- type GroupSym1 t = Group t
- data GroupBySym0 l
- data GroupBySym1 l l
- type GroupBySym2 t t = GroupBy t t
- data LookupSym0 l
- data LookupSym1 l l
- type LookupSym2 t t = Lookup t t
- data FindSym0 l
- data FindSym1 l l
- type FindSym2 t t = Find t t
- data FilterSym0 l
- data FilterSym1 l l
- type FilterSym2 t t = Filter t t
- data PartitionSym0 l
- data PartitionSym1 l l
- type PartitionSym2 t t = Partition t t
- data (:!!$) l
- data l :!!$$ l
- type (:!!$$$) t t = (:!!) t t
- data ElemIndexSym0 l
- data ElemIndexSym1 l l
- type ElemIndexSym2 t t = ElemIndex t t
- data ElemIndicesSym0 l
- data ElemIndicesSym1 l l
- type ElemIndicesSym2 t t = ElemIndices t t
- data FindIndexSym0 l
- data FindIndexSym1 l l
- type FindIndexSym2 t t = FindIndex t t
- data FindIndicesSym0 l
- data FindIndicesSym1 l l
- type FindIndicesSym2 t t = FindIndices t t
- data Zip4Sym0 l
- data Zip4Sym1 l l
- data Zip4Sym2 l l l
- data Zip4Sym3 l l l l
- type Zip4Sym4 t t t t = Zip4 t t t t
- data Zip5Sym0 l
- data Zip5Sym1 l l
- data Zip5Sym2 l l l
- data Zip5Sym3 l l l l
- data Zip5Sym4 l l l l l
- type Zip5Sym5 t t t t t = Zip5 t t t t t
- data Zip6Sym0 l
- data Zip6Sym1 l l
- data Zip6Sym2 l l l
- data Zip6Sym3 l l l l
- data Zip6Sym4 l l l l l
- data Zip6Sym5 l l l l l l
- type Zip6Sym6 t t t t t t = Zip6 t t t t t t
- data Zip7Sym0 l
- data Zip7Sym1 l l
- data Zip7Sym2 l l l
- data Zip7Sym3 l l l l
- data Zip7Sym4 l l l l l
- data Zip7Sym5 l l l l l l
- data Zip7Sym6 l l l l l l l
- type Zip7Sym7 t t t t t t t = Zip7 t t t t t t t
- data ZipWith4Sym0 l
- data ZipWith4Sym1 l l
- data ZipWith4Sym2 l l l
- data ZipWith4Sym3 l l l l
- data ZipWith4Sym4 l l l l l
- type ZipWith4Sym5 t t t t t = ZipWith4 t t t t t
- data ZipWith5Sym0 l
- data ZipWith5Sym1 l l
- data ZipWith5Sym2 l l l
- data ZipWith5Sym3 l l l l
- data ZipWith5Sym4 l l l l l
- data ZipWith5Sym5 l l l l l l
- type ZipWith5Sym6 t t t t t t = ZipWith5 t t t t t t
- data ZipWith6Sym0 l
- data ZipWith6Sym1 l l
- data ZipWith6Sym2 l l l
- data ZipWith6Sym3 l l l l
- data ZipWith6Sym4 l l l l l
- data ZipWith6Sym5 l l l l l l
- data ZipWith6Sym6 l l l l l l l
- type ZipWith6Sym7 t t t t t t t = ZipWith6 t t t t t t t
- data ZipWith7Sym0 l
- data ZipWith7Sym1 l l
- data ZipWith7Sym2 l l l
- data ZipWith7Sym3 l l l l
- data ZipWith7Sym4 l l l l l
- data ZipWith7Sym5 l l l l l l
- data ZipWith7Sym6 l l l l l l l
- data ZipWith7Sym7 l l l l l l l l
- type ZipWith7Sym8 t t t t t t t t = ZipWith7 t t t t t t t t
- data NubSym0 l
- type NubSym1 t = Nub t
- data NubBySym0 l
- data NubBySym1 l l
- type NubBySym2 t t = NubBy t t
- data UnionSym0 l
- data UnionSym1 l l
- type UnionSym2 t t = Union t t
- data UnionBySym0 l
- data UnionBySym1 l l
- data UnionBySym2 l l l
- type UnionBySym3 t t t = UnionBy t t t
- data GenericLengthSym0 l
- type GenericLengthSym1 t = GenericLength t
- data GenericTakeSym0 l
- data GenericTakeSym1 l l
- type GenericTakeSym2 t t = GenericTake t t
- data GenericDropSym0 l
- data GenericDropSym1 l l
- type GenericDropSym2 t t = GenericDrop t t
- data GenericSplitAtSym0 l
- data GenericSplitAtSym1 l l
- type GenericSplitAtSym2 t t = GenericSplitAt t t
- data GenericIndexSym0 l
- data GenericIndexSym1 l l
- type GenericIndexSym2 t t = GenericIndex t t
- data GenericReplicateSym0 l
- data GenericReplicateSym1 l l
- type GenericReplicateSym2 t t = GenericReplicate t t
Basic functions
type family Length (a :: [a]) :: Nat where ... #
Equations
| Length '[] = FromInteger 0 | |
| Length ((:) _z_6989586621679797881 xs) = Apply (Apply (:+$) (FromInteger 1)) (Apply LengthSym0 xs) |
List transformations
type family Intersperse (a :: a) (a :: [a]) :: [a] where ... #
Equations
| Intersperse _z_6989586621679800910 '[] = '[] | |
| Intersperse sep ((:) x xs) = Apply (Apply (:$) x) (Apply (Apply PrependToAllSym0 sep) xs) |
type family Intercalate (a :: [a]) (a :: [[a]]) :: [a] where ... #
Equations
| Intercalate xs xss = Apply ConcatSym0 (Apply (Apply IntersperseSym0 xs) xss) |
type family Subsequences (a :: [a]) :: [[a]] where ... #
Equations
| Subsequences xs = Apply (Apply (:$) '[]) (Apply NonEmptySubsequencesSym0 xs) |
type family Permutations (a :: [a]) :: [[a]] where ... #
Reducing lists (folds)
type family Foldr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| Foldr1 _z_6989586621679800134 '[x] = x | |
| Foldr1 f ((:) x ((:) wild_6989586621679796862 wild_6989586621679796864)) = Apply (Apply f x) (Apply (Apply Foldr1Sym0 f) (Let6989586621679800142XsSym4 f x wild_6989586621679796862 wild_6989586621679796864)) | |
| Foldr1 _z_6989586621679800161 '[] = Apply ErrorSym0 "Data.Singletons.List.foldr1: empty list" |
Special folds
type family Sum (a :: [a]) :: a where ... #
Equations
| Sum l = Apply (Apply (Let6989586621679797914Sum'Sym1 l) l) (FromInteger 0) |
type family Product (a :: [a]) :: a where ... #
Equations
| Product l = Apply (Apply (Let6989586621679797890ProdSym1 l) l) (FromInteger 1) |
Building lists
Scans
type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ... #
Equations
| Scanr1 _z_6989586621679799939 '[] = '[] | |
| Scanr1 _z_6989586621679799942 '[x] = Apply (Apply (:$) x) '[] | |
| Scanr1 f ((:) x ((:) wild_6989586621679796870 wild_6989586621679796872)) = Case_6989586621679799988 f x wild_6989586621679796870 wild_6989586621679796872 (Let6989586621679799969Scrutinee_6989586621679796868Sym4 f x wild_6989586621679796870 wild_6989586621679796872) |
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_6989586621679797874 n x (Let6989586621679797866Scrutinee_6989586621679796954Sym2 n x) |
Unfolding
type family Unfoldr (a :: TyFun b (Maybe (a, b)) -> Type) (a :: b) :: [a] where ... #
Equations
| Unfoldr f b = Case_6989586621679799581 f b (Let6989586621679799573Scrutinee_6989586621679796874Sym2 f b) |
Sublists
Extracting sublists
type family DropWhileEnd (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ... #
type family Span (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ... #
Equations
| Span _z_6989586621679798208 '[] = Apply (Apply Tuple2Sym0 (Let6989586621679798211XsSym1 _z_6989586621679798208)) (Let6989586621679798211XsSym1 _z_6989586621679798208) | |
| Span p ((:) x xs') = Case_6989586621679798244 p x xs' (Let6989586621679798231Scrutinee_6989586621679796934Sym3 p x xs') |
type family Break (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ... #
Equations
| Break _z_6989586621679798103 '[] = Apply (Apply Tuple2Sym0 (Let6989586621679798106XsSym1 _z_6989586621679798103)) (Let6989586621679798106XsSym1 _z_6989586621679798103) | |
| Break p ((:) x xs') = Case_6989586621679798139 p x xs' (Let6989586621679798126Scrutinee_6989586621679796936Sym3 p x xs') |
type family StripPrefix (a :: [a]) (a :: [a]) :: Maybe [a] where ... #
Equations
| StripPrefix '[] ys = Apply JustSym0 ys | |
| StripPrefix arg_6989586621680051629 arg_6989586621680051631 = Case_6989586621680052262 arg_6989586621680051629 arg_6989586621680051631 (Apply (Apply Tuple2Sym0 arg_6989586621680051629) arg_6989586621680051631) |
type family Group (a :: [a]) :: [[a]] where ... #
Equations
| Group xs = Apply (Apply GroupBySym0 (:==$)) xs |
Predicates
type family IsPrefixOf (a :: [a]) (a :: [a]) :: Bool where ... #
Equations
| IsPrefixOf '[] '[] = TrueSym0 | |
| IsPrefixOf '[] ((:) _z_6989586621679799513 _z_6989586621679799516) = TrueSym0 | |
| IsPrefixOf ((:) _z_6989586621679799519 _z_6989586621679799522) '[] = 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_6989586621679798018 key x y xys (Let6989586621679797999Scrutinee_6989586621679796950Sym4 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_6989586621679798494 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FilterSym0 p)) a_6989586621679798494 |
Indexing lists
type family ElemIndices (a :: a) (a :: [a]) :: [Nat] where ... #
Equations
| ElemIndices x a_6989586621679799396 = Apply (Apply FindIndicesSym0 (Apply (:==$) x)) a_6989586621679799396 |
type family FindIndex (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe Nat where ... #
Equations
| FindIndex p a_6989586621679799409 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FindIndicesSym0 p)) a_6989586621679799409 |
Zipping and unzipping lists
type family Zip3 (a :: [a]) (a :: [b]) (a :: [c]) :: [(a, b, c)] where ... #
Equations
| Zip3 ((:) a as) ((:) b bs) ((:) c cs) = Apply (Apply (:$) (Apply (Apply (Apply Tuple3Sym0 a) b) c)) (Apply (Apply (Apply Zip3Sym0 as) bs) cs) | |
| Zip3 '[] '[] '[] = '[] | |
| Zip3 '[] '[] ((:) _z_6989586621679799245 _z_6989586621679799248) = '[] | |
| Zip3 '[] ((:) _z_6989586621679799251 _z_6989586621679799254) '[] = '[] | |
| Zip3 '[] ((:) _z_6989586621679799257 _z_6989586621679799260) ((:) _z_6989586621679799263 _z_6989586621679799266) = '[] | |
| Zip3 ((:) _z_6989586621679799269 _z_6989586621679799272) '[] '[] = '[] | |
| Zip3 ((:) _z_6989586621679799275 _z_6989586621679799278) '[] ((:) _z_6989586621679799281 _z_6989586621679799284) = '[] | |
| Zip3 ((:) _z_6989586621679799287 _z_6989586621679799290) ((:) _z_6989586621679799293 _z_6989586621679799296) '[] = '[] |
type family Zip4 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [(a, b, c, d)] where ... #
Equations
| Zip4 a_6989586621680052216 a_6989586621680052218 a_6989586621680052220 a_6989586621680052222 = Apply (Apply (Apply (Apply (Apply ZipWith4Sym0 Tuple4Sym0) a_6989586621680052216) a_6989586621680052218) a_6989586621680052220) a_6989586621680052222 |
type family Zip5 (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [(a, b, c, d, e)] where ... #
Equations
| Zip5 a_6989586621680052171 a_6989586621680052173 a_6989586621680052175 a_6989586621680052177 a_6989586621680052179 = Apply (Apply (Apply (Apply (Apply (Apply ZipWith5Sym0 Tuple5Sym0) a_6989586621680052171) a_6989586621680052173) a_6989586621680052175) a_6989586621680052177) a_6989586621680052179 |
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_6989586621680052114 a_6989586621680052116 a_6989586621680052118 a_6989586621680052120 a_6989586621680052122 a_6989586621680052124 = Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith6Sym0 Tuple6Sym0) a_6989586621680052114) a_6989586621680052116) a_6989586621680052118) a_6989586621680052120) a_6989586621680052122) a_6989586621680052124 |
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_6989586621680052044 a_6989586621680052046 a_6989586621680052048 a_6989586621680052050 a_6989586621680052052 a_6989586621680052054 a_6989586621680052056 = Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 Tuple7Sym0) a_6989586621680052044) a_6989586621680052046) a_6989586621680052048) a_6989586621680052050) a_6989586621680052052) a_6989586621680052054) a_6989586621680052056 |
type family ZipWith (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: [a]) (a :: [b]) :: [c] where ... #
Equations
| ZipWith f ((:) x xs) ((:) y ys) = Apply (Apply (:$) (Apply (Apply f x) y)) (Apply (Apply (Apply ZipWithSym0 f) xs) ys) | |
| ZipWith _z_6989586621679799203 '[] '[] = '[] | |
| ZipWith _z_6989586621679799206 ((:) _z_6989586621679799209 _z_6989586621679799212) '[] = '[] | |
| ZipWith _z_6989586621679799215 '[] ((:) _z_6989586621679799218 _z_6989586621679799221) = '[] |
type family ZipWith3 (a :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) :: [d] where ... #
Equations
| ZipWith3 z ((:) a as) ((:) b bs) ((:) c cs) = Apply (Apply (:$) (Apply (Apply (Apply z a) b) c)) (Apply (Apply (Apply (Apply ZipWith3Sym0 z) as) bs) cs) | |
| ZipWith3 _z_6989586621679799108 '[] '[] '[] = '[] | |
| ZipWith3 _z_6989586621679799111 '[] '[] ((:) _z_6989586621679799114 _z_6989586621679799117) = '[] | |
| ZipWith3 _z_6989586621679799120 '[] ((:) _z_6989586621679799123 _z_6989586621679799126) '[] = '[] | |
| ZipWith3 _z_6989586621679799129 '[] ((:) _z_6989586621679799132 _z_6989586621679799135) ((:) _z_6989586621679799138 _z_6989586621679799141) = '[] | |
| ZipWith3 _z_6989586621679799144 ((:) _z_6989586621679799147 _z_6989586621679799150) '[] '[] = '[] | |
| ZipWith3 _z_6989586621679799153 ((:) _z_6989586621679799156 _z_6989586621679799159) '[] ((:) _z_6989586621679799162 _z_6989586621679799165) = '[] | |
| ZipWith3 _z_6989586621679799168 ((:) _z_6989586621679799171 _z_6989586621679799174) ((:) _z_6989586621679799177 _z_6989586621679799180) '[] = '[] |
type family ZipWith4 (a :: TyFun a (TyFun b (TyFun c (TyFun d e -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) :: [e] where ... #
Equations
| ZipWith4 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) = Apply (Apply (:$) (Apply (Apply (Apply (Apply z a) b) c) d)) (Apply (Apply (Apply (Apply (Apply ZipWith4Sym0 z) as) bs) cs) ds) | |
| ZipWith4 _z_6989586621680052029 _z_6989586621680052032 _z_6989586621680052035 _z_6989586621680052038 _z_6989586621680052041 = '[] |
type family ZipWith5 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e f -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) :: [f] where ... #
Equations
| ZipWith5 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) = Apply (Apply (:$) (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e)) (Apply (Apply (Apply (Apply (Apply (Apply ZipWith5Sym0 z) as) bs) cs) ds) es) | |
| ZipWith5 _z_6989586621680051972 _z_6989586621680051975 _z_6989586621680051978 _z_6989586621680051981 _z_6989586621680051984 _z_6989586621680051987 = '[] |
type family ZipWith6 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f g -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) :: [g] where ... #
Equations
| ZipWith6 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) ((:) f fs) = Apply (Apply (:$) (Apply (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e) f)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith6Sym0 z) as) bs) cs) ds) es) fs) | |
| ZipWith6 _z_6989586621680051901 _z_6989586621680051904 _z_6989586621680051907 _z_6989586621680051910 _z_6989586621680051913 _z_6989586621680051916 _z_6989586621680051919 = '[] |
type family ZipWith7 (a :: TyFun a (TyFun b (TyFun c (TyFun d (TyFun e (TyFun f (TyFun g h -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) (a :: [d]) (a :: [e]) (a :: [f]) (a :: [g]) :: [h] where ... #
Equations
| ZipWith7 z ((:) a as) ((:) b bs) ((:) c cs) ((:) d ds) ((:) e es) ((:) f fs) ((:) g gs) = Apply (Apply (:$) (Apply (Apply (Apply (Apply (Apply (Apply (Apply z a) b) c) d) e) f) g)) (Apply (Apply (Apply (Apply (Apply (Apply (Apply (Apply ZipWith7Sym0 z) as) bs) cs) ds) es) fs) gs) | |
| ZipWith7 _z_6989586621680051815 _z_6989586621680051818 _z_6989586621680051821 _z_6989586621680051824 _z_6989586621680051827 _z_6989586621680051830 _z_6989586621680051833 _z_6989586621680051836 = '[] |
type family Unzip7 (a :: [(a, b, c, d, e, f, g)]) :: ([a], [b], [c], [d], [e], [f], [g]) where ... #
Special lists
"Set" operations
Ordered lists
type family Sort (a :: [a]) :: [a] where ... #
Equations
| Sort a_6989586621679798730 = Apply (Apply SortBySym0 CompareSym0) a_6989586621679798730 |
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_6989586621679798799 a_6989586621679798801 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) a_6989586621679798799) a_6989586621679798801 |
type family UnionBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ... #
type family IntersectBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ... #
Equations
| IntersectBy _z_6989586621679798513 '[] '[] = '[] | |
| IntersectBy _z_6989586621679798516 '[] ((:) _z_6989586621679798519 _z_6989586621679798522) = '[] | |
| IntersectBy _z_6989586621679798525 ((:) _z_6989586621679798528 _z_6989586621679798531) '[] = '[] | |
| IntersectBy eq ((:) wild_6989586621679796920 wild_6989586621679796922) ((:) wild_6989586621679796924 wild_6989586621679796926) = Apply (Apply FilterSym0 (Apply (Apply (Apply (Apply (Apply Lambda_6989586621679798590Sym0 eq) wild_6989586621679796920) wild_6989586621679796922) wild_6989586621679796924) wild_6989586621679796926)) (Let6989586621679798539XsSym5 eq wild_6989586621679796920 wild_6989586621679796922 wild_6989586621679796924 wild_6989586621679796926) |
User-supplied comparison (replacing an Ord context)
type family InsertBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ... #
type family MaximumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| MaximumBy _z_6989586621679800188 '[] = Apply ErrorSym0 "Data.Singletons.List.maximumBy: empty list" | |
| MaximumBy cmp ((:) wild_6989586621679796906 wild_6989586621679796908) = Apply (Apply Foldl1Sym0 (Let6989586621679800207MaxBySym3 cmp wild_6989586621679796906 wild_6989586621679796908)) (Let6989586621679800194XsSym3 cmp wild_6989586621679796906 wild_6989586621679796908) |
type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| MinimumBy _z_6989586621679800275 '[] = Apply ErrorSym0 "Data.Singletons.List.minimumBy: empty list" | |
| MinimumBy cmp ((:) wild_6989586621679796912 wild_6989586621679796914) = Apply (Apply Foldl1Sym0 (Let6989586621679800294MinBySym3 cmp wild_6989586621679796912 wild_6989586621679796914)) (Let6989586621679800281XsSym3 cmp wild_6989586621679796912 wild_6989586621679796914) |
The "generic" operations
type family GenericLength (a :: [a]) :: i where ... #
Equations
| GenericLength '[] = FromInteger 0 | |
| GenericLength ((:) _z_6989586621679797728 xs) = Apply (Apply (:+$) (FromInteger 1)) (Apply GenericLengthSym0 xs) |
type family GenericTake (a :: i) (a :: [a]) :: [a] where ... #
Equations
| GenericTake a_6989586621680051725 a_6989586621680051727 = Apply (Apply TakeSym0 a_6989586621680051725) a_6989586621680051727 |
type family GenericDrop (a :: i) (a :: [a]) :: [a] where ... #
Equations
| GenericDrop a_6989586621680051710 a_6989586621680051712 = Apply (Apply DropSym0 a_6989586621680051710) a_6989586621680051712 |
type family GenericSplitAt (a :: i) (a :: [a]) :: ([a], [a]) where ... #
Equations
| GenericSplitAt a_6989586621680051695 a_6989586621680051697 = Apply (Apply SplitAtSym0 a_6989586621680051695) a_6989586621680051697 |
type family GenericIndex (a :: [a]) (a :: i) :: a where ... #
Equations
| GenericIndex a_6989586621680051680 a_6989586621680051682 = Apply (Apply (:!!$) a_6989586621680051680) a_6989586621680051682 |
type family GenericReplicate (a :: i) (a :: a) :: [a] where ... #
Equations
| GenericReplicate a_6989586621680051665 a_6989586621680051667 = Apply (Apply ReplicateSym0 a_6989586621680051665) a_6989586621680051667 |
Defunctionalization symbols
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679550103 b6989586621679550104 -> Type) (TyFun [a6989586621679550103] [b6989586621679550104] -> Type) -> *) (MapSym0 a6989586621679550103 b6989586621679550104) # | |
| type Apply (TyFun a6989586621679550103 b6989586621679550104 -> Type) (TyFun [a6989586621679550103] [b6989586621679550104] -> Type) (MapSym0 a6989586621679550103 b6989586621679550104) l0 # | |
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679550103 b6989586621679550104 -> Type) -> TyFun [a6989586621679550103] [b6989586621679550104] -> *) (MapSym1 a6989586621679550103 b6989586621679550104) # | |
| type Apply [a6989586621679550103] [b6989586621679550104] (MapSym1 a6989586621679550103 b6989586621679550104 l0) l1 # | |
data ReverseSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796410] [a6989586621679796410] -> *) (ReverseSym0 a6989586621679796410) # | |
| type Apply [a6989586621679796410] [a6989586621679796410] (ReverseSym0 a6989586621679796410) l0 # | |
type ReverseSym1 t = Reverse t #
data IntersperseSym0 l #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679796409 (TyFun [a6989586621679796409] [a6989586621679796409] -> Type) -> *) (IntersperseSym0 a6989586621679796409) # | |
| type Apply a6989586621679796409 (TyFun [a6989586621679796409] [a6989586621679796409] -> Type) (IntersperseSym0 a6989586621679796409) l0 # | |
data IntersperseSym1 l l #
Instances
| SuppressUnusedWarnings (a6989586621679796409 -> TyFun [a6989586621679796409] [a6989586621679796409] -> *) (IntersperseSym1 a6989586621679796409) # | |
| type Apply [a6989586621679796409] [a6989586621679796409] (IntersperseSym1 a6989586621679796409 l0) l1 # | |
type IntersperseSym2 t t = Intersperse t t #
data IntercalateSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796408] (TyFun [[a6989586621679796408]] [a6989586621679796408] -> Type) -> *) (IntercalateSym0 a6989586621679796408) # | |
| type Apply [a6989586621679796408] (TyFun [[a6989586621679796408]] [a6989586621679796408] -> Type) (IntercalateSym0 a6989586621679796408) l0 # | |
data IntercalateSym1 l l #
Instances
| SuppressUnusedWarnings ([a6989586621679796408] -> TyFun [[a6989586621679796408]] [a6989586621679796408] -> *) (IntercalateSym1 a6989586621679796408) # | |
| type Apply [[a6989586621679796408]] [a6989586621679796408] (IntercalateSym1 a6989586621679796408 l0) l1 # | |
type IntercalateSym2 t t = Intercalate t t #
data SubsequencesSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796407] [[a6989586621679796407]] -> *) (SubsequencesSym0 a6989586621679796407) # | |
| type Apply [a6989586621679796407] [[a6989586621679796407]] (SubsequencesSym0 a6989586621679796407) l0 # | |
type SubsequencesSym1 t = Subsequences t #
data PermutationsSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796404] [[a6989586621679796404]] -> *) (PermutationsSym0 a6989586621679796404) # | |
| type Apply [a6989586621679796404] [[a6989586621679796404]] (PermutationsSym0 a6989586621679796404) l0 # | |
type PermutationsSym1 t = Permutations t #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679509136 (TyFun a6989586621679509135 b6989586621679509136 -> Type) -> Type) (TyFun b6989586621679509136 (TyFun [a6989586621679509135] b6989586621679509136 -> Type) -> Type) -> *) (FoldlSym0 a6989586621679509135 b6989586621679509136) # | |
| type Apply (TyFun b6989586621679509136 (TyFun a6989586621679509135 b6989586621679509136 -> Type) -> Type) (TyFun b6989586621679509136 (TyFun [a6989586621679509135] b6989586621679509136 -> Type) -> Type) (FoldlSym0 a6989586621679509135 b6989586621679509136) l0 # | |
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679509136 (TyFun a6989586621679509135 b6989586621679509136 -> Type) -> Type) -> TyFun b6989586621679509136 (TyFun [a6989586621679509135] b6989586621679509136 -> Type) -> *) (FoldlSym1 a6989586621679509135 b6989586621679509136) # | |
| type Apply b6989586621679509136 (TyFun [a6989586621679509135] b6989586621679509136 -> Type) (FoldlSym1 a6989586621679509135 b6989586621679509136 l0) l1 # | |
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679509136 (TyFun a6989586621679509135 b6989586621679509136 -> Type) -> Type) -> b6989586621679509136 -> TyFun [a6989586621679509135] b6989586621679509136 -> *) (FoldlSym2 a6989586621679509135 b6989586621679509136) # | |
| type Apply [a6989586621679509135] b6989586621679509136 (FoldlSym2 a6989586621679509135 b6989586621679509136 l1 l0) l2 # | |
data Foldl'Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679796403 (TyFun a6989586621679796402 b6989586621679796403 -> Type) -> Type) (TyFun b6989586621679796403 (TyFun [a6989586621679796402] b6989586621679796403 -> Type) -> Type) -> *) (Foldl'Sym0 a6989586621679796402 b6989586621679796403) # | |
| type Apply (TyFun b6989586621679796403 (TyFun a6989586621679796402 b6989586621679796403 -> Type) -> Type) (TyFun b6989586621679796403 (TyFun [a6989586621679796402] b6989586621679796403 -> Type) -> Type) (Foldl'Sym0 a6989586621679796402 b6989586621679796403) l0 # | |
data Foldl'Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679796403 (TyFun a6989586621679796402 b6989586621679796403 -> Type) -> Type) -> TyFun b6989586621679796403 (TyFun [a6989586621679796402] b6989586621679796403 -> Type) -> *) (Foldl'Sym1 a6989586621679796402 b6989586621679796403) # | |
| type Apply b6989586621679796403 (TyFun [a6989586621679796402] b6989586621679796403 -> Type) (Foldl'Sym1 a6989586621679796402 b6989586621679796403 l0) l1 # | |
data Foldl'Sym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679796403 (TyFun a6989586621679796402 b6989586621679796403 -> Type) -> Type) -> b6989586621679796403 -> TyFun [a6989586621679796402] b6989586621679796403 -> *) (Foldl'Sym2 a6989586621679796402 b6989586621679796403) # | |
| type Apply [a6989586621679796402] b6989586621679796403 (Foldl'Sym2 a6989586621679796402 b6989586621679796403 l1 l0) l2 # | |
type Foldl'Sym3 t t t = Foldl' t t t #
data Foldl1Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796401 (TyFun a6989586621679796401 a6989586621679796401 -> Type) -> Type) (TyFun [a6989586621679796401] a6989586621679796401 -> Type) -> *) (Foldl1Sym0 a6989586621679796401) # | |
| type Apply (TyFun a6989586621679796401 (TyFun a6989586621679796401 a6989586621679796401 -> Type) -> Type) (TyFun [a6989586621679796401] a6989586621679796401 -> Type) (Foldl1Sym0 a6989586621679796401) l0 # | |
data Foldl1Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796401 (TyFun a6989586621679796401 a6989586621679796401 -> Type) -> Type) -> TyFun [a6989586621679796401] a6989586621679796401 -> *) (Foldl1Sym1 a6989586621679796401) # | |
| type Apply [a6989586621679796401] a6989586621679796401 (Foldl1Sym1 a6989586621679796401 l0) l1 # | |
type Foldl1Sym2 t t = Foldl1 t t #
data Foldl1'Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796400 (TyFun a6989586621679796400 a6989586621679796400 -> Type) -> Type) (TyFun [a6989586621679796400] a6989586621679796400 -> Type) -> *) (Foldl1'Sym0 a6989586621679796400) # | |
| type Apply (TyFun a6989586621679796400 (TyFun a6989586621679796400 a6989586621679796400 -> Type) -> Type) (TyFun [a6989586621679796400] a6989586621679796400 -> Type) (Foldl1'Sym0 a6989586621679796400) l0 # | |
data Foldl1'Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796400 (TyFun a6989586621679796400 a6989586621679796400 -> Type) -> Type) -> TyFun [a6989586621679796400] a6989586621679796400 -> *) (Foldl1'Sym1 a6989586621679796400) # | |
| type Apply [a6989586621679796400] a6989586621679796400 (Foldl1'Sym1 a6989586621679796400 l0) l1 # | |
type Foldl1'Sym2 t t = Foldl1' t t #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679550105 (TyFun b6989586621679550106 b6989586621679550106 -> Type) -> Type) (TyFun b6989586621679550106 (TyFun [a6989586621679550105] b6989586621679550106 -> Type) -> Type) -> *) (FoldrSym0 a6989586621679550105 b6989586621679550106) # | |
| type Apply (TyFun a6989586621679550105 (TyFun b6989586621679550106 b6989586621679550106 -> Type) -> Type) (TyFun b6989586621679550106 (TyFun [a6989586621679550105] b6989586621679550106 -> Type) -> Type) (FoldrSym0 a6989586621679550105 b6989586621679550106) l0 # | |
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679550105 (TyFun b6989586621679550106 b6989586621679550106 -> Type) -> Type) -> TyFun b6989586621679550106 (TyFun [a6989586621679550105] b6989586621679550106 -> Type) -> *) (FoldrSym1 a6989586621679550105 b6989586621679550106) # | |
| type Apply b6989586621679550106 (TyFun [a6989586621679550105] b6989586621679550106 -> Type) (FoldrSym1 a6989586621679550105 b6989586621679550106 l0) l1 # | |
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679550105 (TyFun b6989586621679550106 b6989586621679550106 -> Type) -> Type) -> b6989586621679550106 -> TyFun [a6989586621679550105] b6989586621679550106 -> *) (FoldrSym2 a6989586621679550105 b6989586621679550106) # | |
| type Apply [a6989586621679550105] b6989586621679550106 (FoldrSym2 a6989586621679550105 b6989586621679550106 l1 l0) l2 # | |
data Foldr1Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796399 (TyFun a6989586621679796399 a6989586621679796399 -> Type) -> Type) (TyFun [a6989586621679796399] a6989586621679796399 -> Type) -> *) (Foldr1Sym0 a6989586621679796399) # | |
| type Apply (TyFun a6989586621679796399 (TyFun a6989586621679796399 a6989586621679796399 -> Type) -> Type) (TyFun [a6989586621679796399] a6989586621679796399 -> Type) (Foldr1Sym0 a6989586621679796399) l0 # | |
data Foldr1Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796399 (TyFun a6989586621679796399 a6989586621679796399 -> Type) -> Type) -> TyFun [a6989586621679796399] a6989586621679796399 -> *) (Foldr1Sym1 a6989586621679796399) # | |
| type Apply [a6989586621679796399] a6989586621679796399 (Foldr1Sym1 a6989586621679796399 l0) l1 # | |
type Foldr1Sym2 t t = Foldr1 t t #
data ConcatSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [[a6989586621679796398]] [a6989586621679796398] -> *) (ConcatSym0 a6989586621679796398) # | |
| type Apply [[a6989586621679796398]] [a6989586621679796398] (ConcatSym0 a6989586621679796398) l0 # | |
type ConcatSym1 t = Concat t #
data ConcatMapSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796396 [b6989586621679796397] -> Type) (TyFun [a6989586621679796396] [b6989586621679796397] -> Type) -> *) (ConcatMapSym0 a6989586621679796396 b6989586621679796397) # | |
| type Apply (TyFun a6989586621679796396 [b6989586621679796397] -> Type) (TyFun [a6989586621679796396] [b6989586621679796397] -> Type) (ConcatMapSym0 a6989586621679796396 b6989586621679796397) l0 # | |
data ConcatMapSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796396 [b6989586621679796397] -> Type) -> TyFun [a6989586621679796396] [b6989586621679796397] -> *) (ConcatMapSym1 a6989586621679796396 b6989586621679796397) # | |
| type Apply [a6989586621679796396] [b6989586621679796397] (ConcatMapSym1 a6989586621679796396 b6989586621679796397 l0) l1 # | |
type ConcatMapSym2 t t = ConcatMap t t #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679796393 (TyFun a6989586621679796394 b6989586621679796393 -> Type) -> Type) (TyFun b6989586621679796393 (TyFun [a6989586621679796394] [b6989586621679796393] -> Type) -> Type) -> *) (ScanlSym0 a6989586621679796394 b6989586621679796393) # | |
| type Apply (TyFun b6989586621679796393 (TyFun a6989586621679796394 b6989586621679796393 -> Type) -> Type) (TyFun b6989586621679796393 (TyFun [a6989586621679796394] [b6989586621679796393] -> Type) -> Type) (ScanlSym0 a6989586621679796394 b6989586621679796393) l0 # | |
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679796393 (TyFun a6989586621679796394 b6989586621679796393 -> Type) -> Type) -> TyFun b6989586621679796393 (TyFun [a6989586621679796394] [b6989586621679796393] -> Type) -> *) (ScanlSym1 a6989586621679796394 b6989586621679796393) # | |
| type Apply b6989586621679796393 (TyFun [a6989586621679796394] [b6989586621679796393] -> Type) (ScanlSym1 a6989586621679796394 b6989586621679796393 l0) l1 # | |
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679796393 (TyFun a6989586621679796394 b6989586621679796393 -> Type) -> Type) -> b6989586621679796393 -> TyFun [a6989586621679796394] [b6989586621679796393] -> *) (ScanlSym2 a6989586621679796394 b6989586621679796393) # | |
| type Apply [a6989586621679796394] [b6989586621679796393] (ScanlSym2 a6989586621679796394 b6989586621679796393 l1 l0) l2 # | |
data Scanl1Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796392 (TyFun a6989586621679796392 a6989586621679796392 -> Type) -> Type) (TyFun [a6989586621679796392] [a6989586621679796392] -> Type) -> *) (Scanl1Sym0 a6989586621679796392) # | |
| type Apply (TyFun a6989586621679796392 (TyFun a6989586621679796392 a6989586621679796392 -> Type) -> Type) (TyFun [a6989586621679796392] [a6989586621679796392] -> Type) (Scanl1Sym0 a6989586621679796392) l0 # | |
data Scanl1Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796392 (TyFun a6989586621679796392 a6989586621679796392 -> Type) -> Type) -> TyFun [a6989586621679796392] [a6989586621679796392] -> *) (Scanl1Sym1 a6989586621679796392) # | |
| type Apply [a6989586621679796392] [a6989586621679796392] (Scanl1Sym1 a6989586621679796392 l0) l1 # | |
type Scanl1Sym2 t t = Scanl1 t t #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796390 (TyFun b6989586621679796391 b6989586621679796391 -> Type) -> Type) (TyFun b6989586621679796391 (TyFun [a6989586621679796390] [b6989586621679796391] -> Type) -> Type) -> *) (ScanrSym0 a6989586621679796390 b6989586621679796391) # | |
| type Apply (TyFun a6989586621679796390 (TyFun b6989586621679796391 b6989586621679796391 -> Type) -> Type) (TyFun b6989586621679796391 (TyFun [a6989586621679796390] [b6989586621679796391] -> Type) -> Type) (ScanrSym0 a6989586621679796390 b6989586621679796391) l0 # | |
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796390 (TyFun b6989586621679796391 b6989586621679796391 -> Type) -> Type) -> TyFun b6989586621679796391 (TyFun [a6989586621679796390] [b6989586621679796391] -> Type) -> *) (ScanrSym1 a6989586621679796390 b6989586621679796391) # | |
| type Apply b6989586621679796391 (TyFun [a6989586621679796390] [b6989586621679796391] -> Type) (ScanrSym1 a6989586621679796390 b6989586621679796391 l0) l1 # | |
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796390 (TyFun b6989586621679796391 b6989586621679796391 -> Type) -> Type) -> b6989586621679796391 -> TyFun [a6989586621679796390] [b6989586621679796391] -> *) (ScanrSym2 a6989586621679796390 b6989586621679796391) # | |
| type Apply [a6989586621679796390] [b6989586621679796391] (ScanrSym2 a6989586621679796390 b6989586621679796391 l1 l0) l2 # | |
data Scanr1Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796389 (TyFun a6989586621679796389 a6989586621679796389 -> Type) -> Type) (TyFun [a6989586621679796389] [a6989586621679796389] -> Type) -> *) (Scanr1Sym0 a6989586621679796389) # | |
| type Apply (TyFun a6989586621679796389 (TyFun a6989586621679796389 a6989586621679796389 -> Type) -> Type) (TyFun [a6989586621679796389] [a6989586621679796389] -> Type) (Scanr1Sym0 a6989586621679796389) l0 # | |
data Scanr1Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796389 (TyFun a6989586621679796389 a6989586621679796389 -> Type) -> Type) -> TyFun [a6989586621679796389] [a6989586621679796389] -> *) (Scanr1Sym1 a6989586621679796389) # | |
| type Apply [a6989586621679796389] [a6989586621679796389] (Scanr1Sym1 a6989586621679796389 l0) l1 # | |
type Scanr1Sym2 t t = Scanr1 t t #
data MapAccumLSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun acc6989586621679796386 (TyFun x6989586621679796387 (acc6989586621679796386, y6989586621679796388) -> Type) -> Type) (TyFun acc6989586621679796386 (TyFun [x6989586621679796387] (acc6989586621679796386, [y6989586621679796388]) -> Type) -> Type) -> *) (MapAccumLSym0 x6989586621679796387 acc6989586621679796386 y6989586621679796388) # | |
| type Apply (TyFun acc6989586621679796386 (TyFun x6989586621679796387 (acc6989586621679796386, y6989586621679796388) -> Type) -> Type) (TyFun acc6989586621679796386 (TyFun [x6989586621679796387] (acc6989586621679796386, [y6989586621679796388]) -> Type) -> Type) (MapAccumLSym0 x6989586621679796387 acc6989586621679796386 y6989586621679796388) l0 # | |
data MapAccumLSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679796386 (TyFun x6989586621679796387 (acc6989586621679796386, y6989586621679796388) -> Type) -> Type) -> TyFun acc6989586621679796386 (TyFun [x6989586621679796387] (acc6989586621679796386, [y6989586621679796388]) -> Type) -> *) (MapAccumLSym1 x6989586621679796387 acc6989586621679796386 y6989586621679796388) # | |
| type Apply acc6989586621679796386 (TyFun [x6989586621679796387] (acc6989586621679796386, [y6989586621679796388]) -> Type) (MapAccumLSym1 x6989586621679796387 acc6989586621679796386 y6989586621679796388 l0) l1 # | |
data MapAccumLSym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679796386 (TyFun x6989586621679796387 (acc6989586621679796386, y6989586621679796388) -> Type) -> Type) -> acc6989586621679796386 -> TyFun [x6989586621679796387] (acc6989586621679796386, [y6989586621679796388]) -> *) (MapAccumLSym2 x6989586621679796387 acc6989586621679796386 y6989586621679796388) # | |
| type Apply [x6989586621679796387] (acc6989586621679796386, [y6989586621679796388]) (MapAccumLSym2 x6989586621679796387 acc6989586621679796386 y6989586621679796388 l1 l0) l2 # | |
type MapAccumLSym3 t t t = MapAccumL t t t #
data MapAccumRSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun acc6989586621679796383 (TyFun x6989586621679796384 (acc6989586621679796383, y6989586621679796385) -> Type) -> Type) (TyFun acc6989586621679796383 (TyFun [x6989586621679796384] (acc6989586621679796383, [y6989586621679796385]) -> Type) -> Type) -> *) (MapAccumRSym0 x6989586621679796384 acc6989586621679796383 y6989586621679796385) # | |
| type Apply (TyFun acc6989586621679796383 (TyFun x6989586621679796384 (acc6989586621679796383, y6989586621679796385) -> Type) -> Type) (TyFun acc6989586621679796383 (TyFun [x6989586621679796384] (acc6989586621679796383, [y6989586621679796385]) -> Type) -> Type) (MapAccumRSym0 x6989586621679796384 acc6989586621679796383 y6989586621679796385) l0 # | |
data MapAccumRSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679796383 (TyFun x6989586621679796384 (acc6989586621679796383, y6989586621679796385) -> Type) -> Type) -> TyFun acc6989586621679796383 (TyFun [x6989586621679796384] (acc6989586621679796383, [y6989586621679796385]) -> Type) -> *) (MapAccumRSym1 x6989586621679796384 acc6989586621679796383 y6989586621679796385) # | |
| type Apply acc6989586621679796383 (TyFun [x6989586621679796384] (acc6989586621679796383, [y6989586621679796385]) -> Type) (MapAccumRSym1 x6989586621679796384 acc6989586621679796383 y6989586621679796385 l0) l1 # | |
data MapAccumRSym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679796383 (TyFun x6989586621679796384 (acc6989586621679796383, y6989586621679796385) -> Type) -> Type) -> acc6989586621679796383 -> TyFun [x6989586621679796384] (acc6989586621679796383, [y6989586621679796385]) -> *) (MapAccumRSym2 x6989586621679796384 acc6989586621679796383 y6989586621679796385) # | |
| type Apply [x6989586621679796384] (acc6989586621679796383, [y6989586621679796385]) (MapAccumRSym2 x6989586621679796384 acc6989586621679796383 y6989586621679796385 l1 l0) l2 # | |
type MapAccumRSym3 t t t = MapAccumR t t t #
data UnfoldrSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679796381 (Maybe (a6989586621679796382, b6989586621679796381)) -> Type) (TyFun b6989586621679796381 [a6989586621679796382] -> Type) -> *) (UnfoldrSym0 b6989586621679796381 a6989586621679796382) # | |
| type Apply (TyFun b6989586621679796381 (Maybe (a6989586621679796382, b6989586621679796381)) -> Type) (TyFun b6989586621679796381 [a6989586621679796382] -> Type) (UnfoldrSym0 b6989586621679796381 a6989586621679796382) l0 # | |
data UnfoldrSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679796381 (Maybe (a6989586621679796382, b6989586621679796381)) -> Type) -> TyFun b6989586621679796381 [a6989586621679796382] -> *) (UnfoldrSym1 a6989586621679796382 b6989586621679796381) # | |
| type Apply b6989586621679796381 [a6989586621679796382] (UnfoldrSym1 a6989586621679796382 b6989586621679796381 l0) l1 # | |
type UnfoldrSym2 t t = Unfoldr t t #
data IsPrefixOfSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796378] (TyFun [a6989586621679796378] Bool -> Type) -> *) (IsPrefixOfSym0 a6989586621679796378) # | |
| type Apply [a6989586621679796378] (TyFun [a6989586621679796378] Bool -> Type) (IsPrefixOfSym0 a6989586621679796378) l0 # | |
data IsPrefixOfSym1 l l #
Instances
| SuppressUnusedWarnings ([a6989586621679796378] -> TyFun [a6989586621679796378] Bool -> *) (IsPrefixOfSym1 a6989586621679796378) # | |
| type Apply [a6989586621679796378] Bool (IsPrefixOfSym1 a6989586621679796378 l0) l1 # | |
type IsPrefixOfSym2 t t = IsPrefixOf t t #
data IsSuffixOfSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796377] (TyFun [a6989586621679796377] Bool -> Type) -> *) (IsSuffixOfSym0 a6989586621679796377) # | |
| type Apply [a6989586621679796377] (TyFun [a6989586621679796377] Bool -> Type) (IsSuffixOfSym0 a6989586621679796377) l0 # | |
data IsSuffixOfSym1 l l #
Instances
| SuppressUnusedWarnings ([a6989586621679796377] -> TyFun [a6989586621679796377] Bool -> *) (IsSuffixOfSym1 a6989586621679796377) # | |
| type Apply [a6989586621679796377] Bool (IsSuffixOfSym1 a6989586621679796377 l0) l1 # | |
type IsSuffixOfSym2 t t = IsSuffixOf t t #
data IsInfixOfSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796376] (TyFun [a6989586621679796376] Bool -> Type) -> *) (IsInfixOfSym0 a6989586621679796376) # | |
| type Apply [a6989586621679796376] (TyFun [a6989586621679796376] Bool -> Type) (IsInfixOfSym0 a6989586621679796376) l0 # | |
data IsInfixOfSym1 l l #
Instances
| SuppressUnusedWarnings ([a6989586621679796376] -> TyFun [a6989586621679796376] Bool -> *) (IsInfixOfSym1 a6989586621679796376) # | |
| type Apply [a6989586621679796376] Bool (IsInfixOfSym1 a6989586621679796376 l0) l1 # | |
type IsInfixOfSym2 t t = IsInfixOf t t #
data NotElemSym0 l #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679796374 (TyFun [a6989586621679796374] Bool -> Type) -> *) (NotElemSym0 a6989586621679796374) # | |
| type Apply a6989586621679796374 (TyFun [a6989586621679796374] Bool -> Type) (NotElemSym0 a6989586621679796374) l0 # | |
data NotElemSym1 l l #
Instances
| SuppressUnusedWarnings (a6989586621679796374 -> TyFun [a6989586621679796374] Bool -> *) (NotElemSym1 a6989586621679796374) # | |
| type Apply [a6989586621679796374] Bool (NotElemSym1 a6989586621679796374 l0) l1 # | |
type NotElemSym2 t t = NotElem t t #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796372] (TyFun [b6989586621679796373] [(a6989586621679796372, b6989586621679796373)] -> Type) -> *) (ZipSym0 a6989586621679796372 b6989586621679796373) # | |
| type Apply [a6989586621679796372] (TyFun [b6989586621679796373] [(a6989586621679796372, b6989586621679796373)] -> Type) (ZipSym0 a6989586621679796372 b6989586621679796373) l0 # | |
Instances
| SuppressUnusedWarnings ([a6989586621679796372] -> TyFun [b6989586621679796373] [(a6989586621679796372, b6989586621679796373)] -> *) (ZipSym1 b6989586621679796373 a6989586621679796372) # | |
| type Apply [b6989586621679796373] [(a6989586621679796372, b6989586621679796373)] (ZipSym1 b6989586621679796373 a6989586621679796372 l0) l1 # | |
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796369] (TyFun [b6989586621679796370] (TyFun [c6989586621679796371] [(a6989586621679796369, b6989586621679796370, c6989586621679796371)] -> Type) -> Type) -> *) (Zip3Sym0 a6989586621679796369 b6989586621679796370 c6989586621679796371) # | |
| type Apply [a6989586621679796369] (TyFun [b6989586621679796370] (TyFun [c6989586621679796371] [(a6989586621679796369, b6989586621679796370, c6989586621679796371)] -> Type) -> Type) (Zip3Sym0 a6989586621679796369 b6989586621679796370 c6989586621679796371) l0 # | |
Instances
| SuppressUnusedWarnings ([a6989586621679796369] -> TyFun [b6989586621679796370] (TyFun [c6989586621679796371] [(a6989586621679796369, b6989586621679796370, c6989586621679796371)] -> Type) -> *) (Zip3Sym1 b6989586621679796370 c6989586621679796371 a6989586621679796369) # | |
| type Apply [b6989586621679796370] (TyFun [c6989586621679796371] [(a6989586621679796369, b6989586621679796370, c6989586621679796371)] -> Type) (Zip3Sym1 b6989586621679796370 c6989586621679796371 a6989586621679796369 l0) l1 # | |
Instances
| SuppressUnusedWarnings ([a6989586621679796369] -> [b6989586621679796370] -> TyFun [c6989586621679796371] [(a6989586621679796369, b6989586621679796370, c6989586621679796371)] -> *) (Zip3Sym2 c6989586621679796371 b6989586621679796370 a6989586621679796369) # | |
| type Apply [c6989586621679796371] [(a6989586621679796369, b6989586621679796370, c6989586621679796371)] (Zip3Sym2 c6989586621679796371 b6989586621679796370 a6989586621679796369 l1 l0) l2 # | |
data ZipWithSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796366 (TyFun b6989586621679796367 c6989586621679796368 -> Type) -> Type) (TyFun [a6989586621679796366] (TyFun [b6989586621679796367] [c6989586621679796368] -> Type) -> Type) -> *) (ZipWithSym0 a6989586621679796366 b6989586621679796367 c6989586621679796368) # | |
| type Apply (TyFun a6989586621679796366 (TyFun b6989586621679796367 c6989586621679796368 -> Type) -> Type) (TyFun [a6989586621679796366] (TyFun [b6989586621679796367] [c6989586621679796368] -> Type) -> Type) (ZipWithSym0 a6989586621679796366 b6989586621679796367 c6989586621679796368) l0 # | |
data ZipWithSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796366 (TyFun b6989586621679796367 c6989586621679796368 -> Type) -> Type) -> TyFun [a6989586621679796366] (TyFun [b6989586621679796367] [c6989586621679796368] -> Type) -> *) (ZipWithSym1 a6989586621679796366 b6989586621679796367 c6989586621679796368) # | |
| type Apply [a6989586621679796366] (TyFun [b6989586621679796367] [c6989586621679796368] -> Type) (ZipWithSym1 a6989586621679796366 b6989586621679796367 c6989586621679796368 l0) l1 # | |
data ZipWithSym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796366 (TyFun b6989586621679796367 c6989586621679796368 -> Type) -> Type) -> [a6989586621679796366] -> TyFun [b6989586621679796367] [c6989586621679796368] -> *) (ZipWithSym2 a6989586621679796366 b6989586621679796367 c6989586621679796368) # | |
| type Apply [b6989586621679796367] [c6989586621679796368] (ZipWithSym2 a6989586621679796366 b6989586621679796367 c6989586621679796368 l1 l0) l2 # | |
type ZipWithSym3 t t t = ZipWith t t t #
data ZipWith3Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796362 (TyFun b6989586621679796363 (TyFun c6989586621679796364 d6989586621679796365 -> Type) -> Type) -> Type) (TyFun [a6989586621679796362] (TyFun [b6989586621679796363] (TyFun [c6989586621679796364] [d6989586621679796365] -> Type) -> Type) -> Type) -> *) (ZipWith3Sym0 a6989586621679796362 b6989586621679796363 c6989586621679796364 d6989586621679796365) # | |
| type Apply (TyFun a6989586621679796362 (TyFun b6989586621679796363 (TyFun c6989586621679796364 d6989586621679796365 -> Type) -> Type) -> Type) (TyFun [a6989586621679796362] (TyFun [b6989586621679796363] (TyFun [c6989586621679796364] [d6989586621679796365] -> Type) -> Type) -> Type) (ZipWith3Sym0 a6989586621679796362 b6989586621679796363 c6989586621679796364 d6989586621679796365) l0 # | |
data ZipWith3Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796362 (TyFun b6989586621679796363 (TyFun c6989586621679796364 d6989586621679796365 -> Type) -> Type) -> Type) -> TyFun [a6989586621679796362] (TyFun [b6989586621679796363] (TyFun [c6989586621679796364] [d6989586621679796365] -> Type) -> Type) -> *) (ZipWith3Sym1 a6989586621679796362 b6989586621679796363 c6989586621679796364 d6989586621679796365) # | |
| type Apply [a6989586621679796362] (TyFun [b6989586621679796363] (TyFun [c6989586621679796364] [d6989586621679796365] -> Type) -> Type) (ZipWith3Sym1 a6989586621679796362 b6989586621679796363 c6989586621679796364 d6989586621679796365 l0) l1 # | |
data ZipWith3Sym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796362 (TyFun b6989586621679796363 (TyFun c6989586621679796364 d6989586621679796365 -> Type) -> Type) -> Type) -> [a6989586621679796362] -> TyFun [b6989586621679796363] (TyFun [c6989586621679796364] [d6989586621679796365] -> Type) -> *) (ZipWith3Sym2 a6989586621679796362 b6989586621679796363 c6989586621679796364 d6989586621679796365) # | |
| type Apply [b6989586621679796363] (TyFun [c6989586621679796364] [d6989586621679796365] -> Type) (ZipWith3Sym2 a6989586621679796362 b6989586621679796363 c6989586621679796364 d6989586621679796365 l1 l0) l2 # | |
data ZipWith3Sym3 l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796362 (TyFun b6989586621679796363 (TyFun c6989586621679796364 d6989586621679796365 -> Type) -> Type) -> Type) -> [a6989586621679796362] -> [b6989586621679796363] -> TyFun [c6989586621679796364] [d6989586621679796365] -> *) (ZipWith3Sym3 a6989586621679796362 b6989586621679796363 c6989586621679796364 d6989586621679796365) # | |
| type Apply [c6989586621679796364] [d6989586621679796365] (ZipWith3Sym3 a6989586621679796362 b6989586621679796363 c6989586621679796364 d6989586621679796365 l2 l1 l0) l3 # | |
type ZipWith3Sym4 t t t t = ZipWith3 t t t t #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679796360, b6989586621679796361)] ([a6989586621679796360], [b6989586621679796361]) -> *) (UnzipSym0 a6989586621679796360 b6989586621679796361) # | |
| type Apply [(a6989586621679796360, b6989586621679796361)] ([a6989586621679796360], [b6989586621679796361]) (UnzipSym0 a6989586621679796360 b6989586621679796361) l0 # | |
data Unzip3Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679796357, b6989586621679796358, c6989586621679796359)] ([a6989586621679796357], [b6989586621679796358], [c6989586621679796359]) -> *) (Unzip3Sym0 a6989586621679796357 b6989586621679796358 c6989586621679796359) # | |
| type Apply [(a6989586621679796357, b6989586621679796358, c6989586621679796359)] ([a6989586621679796357], [b6989586621679796358], [c6989586621679796359]) (Unzip3Sym0 a6989586621679796357 b6989586621679796358 c6989586621679796359) l0 # | |
type Unzip3Sym1 t = Unzip3 t #
data Unzip4Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679796353, b6989586621679796354, c6989586621679796355, d6989586621679796356)] ([a6989586621679796353], [b6989586621679796354], [c6989586621679796355], [d6989586621679796356]) -> *) (Unzip4Sym0 a6989586621679796353 b6989586621679796354 c6989586621679796355 d6989586621679796356) # | |
| type Apply [(a6989586621679796353, b6989586621679796354, c6989586621679796355, d6989586621679796356)] ([a6989586621679796353], [b6989586621679796354], [c6989586621679796355], [d6989586621679796356]) (Unzip4Sym0 a6989586621679796353 b6989586621679796354 c6989586621679796355 d6989586621679796356) l0 # | |
type Unzip4Sym1 t = Unzip4 t #
data Unzip5Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679796348, b6989586621679796349, c6989586621679796350, d6989586621679796351, e6989586621679796352)] ([a6989586621679796348], [b6989586621679796349], [c6989586621679796350], [d6989586621679796351], [e6989586621679796352]) -> *) (Unzip5Sym0 a6989586621679796348 b6989586621679796349 c6989586621679796350 d6989586621679796351 e6989586621679796352) # | |
| type Apply [(a6989586621679796348, b6989586621679796349, c6989586621679796350, d6989586621679796351, e6989586621679796352)] ([a6989586621679796348], [b6989586621679796349], [c6989586621679796350], [d6989586621679796351], [e6989586621679796352]) (Unzip5Sym0 a6989586621679796348 b6989586621679796349 c6989586621679796350 d6989586621679796351 e6989586621679796352) l0 # | |
type Unzip5Sym1 t = Unzip5 t #
data Unzip6Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679796342, b6989586621679796343, c6989586621679796344, d6989586621679796345, e6989586621679796346, f6989586621679796347)] ([a6989586621679796342], [b6989586621679796343], [c6989586621679796344], [d6989586621679796345], [e6989586621679796346], [f6989586621679796347]) -> *) (Unzip6Sym0 a6989586621679796342 b6989586621679796343 c6989586621679796344 d6989586621679796345 e6989586621679796346 f6989586621679796347) # | |
| type Apply [(a6989586621679796342, b6989586621679796343, c6989586621679796344, d6989586621679796345, e6989586621679796346, f6989586621679796347)] ([a6989586621679796342], [b6989586621679796343], [c6989586621679796344], [d6989586621679796345], [e6989586621679796346], [f6989586621679796347]) (Unzip6Sym0 a6989586621679796342 b6989586621679796343 c6989586621679796344 d6989586621679796345 e6989586621679796346 f6989586621679796347) l0 # | |
type Unzip6Sym1 t = Unzip6 t #
data Unzip7Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679796335, b6989586621679796336, c6989586621679796337, d6989586621679796338, e6989586621679796339, f6989586621679796340, g6989586621679796341)] ([a6989586621679796335], [b6989586621679796336], [c6989586621679796337], [d6989586621679796338], [e6989586621679796339], [f6989586621679796340], [g6989586621679796341]) -> *) (Unzip7Sym0 a6989586621679796335 b6989586621679796336 c6989586621679796337 d6989586621679796338 e6989586621679796339 f6989586621679796340 g6989586621679796341) # | |
| type Apply [(a6989586621679796335, b6989586621679796336, c6989586621679796337, d6989586621679796338, e6989586621679796339, f6989586621679796340, g6989586621679796341)] ([a6989586621679796335], [b6989586621679796336], [c6989586621679796337], [d6989586621679796338], [e6989586621679796339], [f6989586621679796340], [g6989586621679796341]) (Unzip7Sym0 a6989586621679796335 b6989586621679796336 c6989586621679796337 d6989586621679796338 e6989586621679796339 f6989586621679796340 g6989586621679796341) l0 # | |
type Unzip7Sym1 t = Unzip7 t #
data DeleteSym0 l #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679796334 (TyFun [a6989586621679796334] [a6989586621679796334] -> Type) -> *) (DeleteSym0 a6989586621679796334) # | |
| type Apply a6989586621679796334 (TyFun [a6989586621679796334] [a6989586621679796334] -> Type) (DeleteSym0 a6989586621679796334) l0 # | |
data DeleteSym1 l l #
Instances
| SuppressUnusedWarnings (a6989586621679796334 -> TyFun [a6989586621679796334] [a6989586621679796334] -> *) (DeleteSym1 a6989586621679796334) # | |
| type Apply [a6989586621679796334] [a6989586621679796334] (DeleteSym1 a6989586621679796334 l0) l1 # | |
type DeleteSym2 t t = Delete t t #
data IntersectSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796320] (TyFun [a6989586621679796320] [a6989586621679796320] -> Type) -> *) (IntersectSym0 a6989586621679796320) # | |
| type Apply [a6989586621679796320] (TyFun [a6989586621679796320] [a6989586621679796320] -> Type) (IntersectSym0 a6989586621679796320) l0 # | |
data IntersectSym1 l l #
Instances
| SuppressUnusedWarnings ([a6989586621679796320] -> TyFun [a6989586621679796320] [a6989586621679796320] -> *) (IntersectSym1 a6989586621679796320) # | |
| type Apply [a6989586621679796320] [a6989586621679796320] (IntersectSym1 a6989586621679796320 l0) l1 # | |
type IntersectSym2 t t = Intersect t t #
data InsertSym0 l #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679796307 (TyFun [a6989586621679796307] [a6989586621679796307] -> Type) -> *) (InsertSym0 a6989586621679796307) # | |
| type Apply a6989586621679796307 (TyFun [a6989586621679796307] [a6989586621679796307] -> Type) (InsertSym0 a6989586621679796307) l0 # | |
data InsertSym1 l l #
Instances
| SuppressUnusedWarnings (a6989586621679796307 -> TyFun [a6989586621679796307] [a6989586621679796307] -> *) (InsertSym1 a6989586621679796307) # | |
| type Apply [a6989586621679796307] [a6989586621679796307] (InsertSym1 a6989586621679796307 l0) l1 # | |
type InsertSym2 t t = Insert t t #
data DeleteBySym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796332 (TyFun a6989586621679796332 Bool -> Type) -> Type) (TyFun a6989586621679796332 (TyFun [a6989586621679796332] [a6989586621679796332] -> Type) -> Type) -> *) (DeleteBySym0 a6989586621679796332) # | |
| type Apply (TyFun a6989586621679796332 (TyFun a6989586621679796332 Bool -> Type) -> Type) (TyFun a6989586621679796332 (TyFun [a6989586621679796332] [a6989586621679796332] -> Type) -> Type) (DeleteBySym0 a6989586621679796332) l0 # | |
data DeleteBySym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796332 (TyFun a6989586621679796332 Bool -> Type) -> Type) -> TyFun a6989586621679796332 (TyFun [a6989586621679796332] [a6989586621679796332] -> Type) -> *) (DeleteBySym1 a6989586621679796332) # | |
| type Apply a6989586621679796332 (TyFun [a6989586621679796332] [a6989586621679796332] -> Type) (DeleteBySym1 a6989586621679796332 l0) l1 # | |
data DeleteBySym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796332 (TyFun a6989586621679796332 Bool -> Type) -> Type) -> a6989586621679796332 -> TyFun [a6989586621679796332] [a6989586621679796332] -> *) (DeleteBySym2 a6989586621679796332) # | |
| type Apply [a6989586621679796332] [a6989586621679796332] (DeleteBySym2 a6989586621679796332 l1 l0) l2 # | |
type DeleteBySym3 t t t = DeleteBy t t t #
data DeleteFirstsBySym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796331 (TyFun a6989586621679796331 Bool -> Type) -> Type) (TyFun [a6989586621679796331] (TyFun [a6989586621679796331] [a6989586621679796331] -> Type) -> Type) -> *) (DeleteFirstsBySym0 a6989586621679796331) # | |
| type Apply (TyFun a6989586621679796331 (TyFun a6989586621679796331 Bool -> Type) -> Type) (TyFun [a6989586621679796331] (TyFun [a6989586621679796331] [a6989586621679796331] -> Type) -> Type) (DeleteFirstsBySym0 a6989586621679796331) l0 # | |
data DeleteFirstsBySym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796331 (TyFun a6989586621679796331 Bool -> Type) -> Type) -> TyFun [a6989586621679796331] (TyFun [a6989586621679796331] [a6989586621679796331] -> Type) -> *) (DeleteFirstsBySym1 a6989586621679796331) # | |
| type Apply [a6989586621679796331] (TyFun [a6989586621679796331] [a6989586621679796331] -> Type) (DeleteFirstsBySym1 a6989586621679796331 l0) l1 # | |
data DeleteFirstsBySym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796331 (TyFun a6989586621679796331 Bool -> Type) -> Type) -> [a6989586621679796331] -> TyFun [a6989586621679796331] [a6989586621679796331] -> *) (DeleteFirstsBySym2 a6989586621679796331) # | |
| type Apply [a6989586621679796331] [a6989586621679796331] (DeleteFirstsBySym2 a6989586621679796331 l1 l0) l2 # | |
type DeleteFirstsBySym3 t t t = DeleteFirstsBy t t t #
data IntersectBySym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796319 (TyFun a6989586621679796319 Bool -> Type) -> Type) (TyFun [a6989586621679796319] (TyFun [a6989586621679796319] [a6989586621679796319] -> Type) -> Type) -> *) (IntersectBySym0 a6989586621679796319) # | |
| type Apply (TyFun a6989586621679796319 (TyFun a6989586621679796319 Bool -> Type) -> Type) (TyFun [a6989586621679796319] (TyFun [a6989586621679796319] [a6989586621679796319] -> Type) -> Type) (IntersectBySym0 a6989586621679796319) l0 # | |
data IntersectBySym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796319 (TyFun a6989586621679796319 Bool -> Type) -> Type) -> TyFun [a6989586621679796319] (TyFun [a6989586621679796319] [a6989586621679796319] -> Type) -> *) (IntersectBySym1 a6989586621679796319) # | |
| type Apply [a6989586621679796319] (TyFun [a6989586621679796319] [a6989586621679796319] -> Type) (IntersectBySym1 a6989586621679796319 l0) l1 # | |
data IntersectBySym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796319 (TyFun a6989586621679796319 Bool -> Type) -> Type) -> [a6989586621679796319] -> TyFun [a6989586621679796319] [a6989586621679796319] -> *) (IntersectBySym2 a6989586621679796319) # | |
| type Apply [a6989586621679796319] [a6989586621679796319] (IntersectBySym2 a6989586621679796319 l1 l0) l2 # | |
data SortBySym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796330 (TyFun a6989586621679796330 Ordering -> Type) -> Type) (TyFun [a6989586621679796330] [a6989586621679796330] -> Type) -> *) (SortBySym0 a6989586621679796330) # | |
| type Apply (TyFun a6989586621679796330 (TyFun a6989586621679796330 Ordering -> Type) -> Type) (TyFun [a6989586621679796330] [a6989586621679796330] -> Type) (SortBySym0 a6989586621679796330) l0 # | |
data SortBySym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796330 (TyFun a6989586621679796330 Ordering -> Type) -> Type) -> TyFun [a6989586621679796330] [a6989586621679796330] -> *) (SortBySym1 a6989586621679796330) # | |
| type Apply [a6989586621679796330] [a6989586621679796330] (SortBySym1 a6989586621679796330 l0) l1 # | |
type SortBySym2 t t = SortBy t t #
data InsertBySym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796329 (TyFun a6989586621679796329 Ordering -> Type) -> Type) (TyFun a6989586621679796329 (TyFun [a6989586621679796329] [a6989586621679796329] -> Type) -> Type) -> *) (InsertBySym0 a6989586621679796329) # | |
| type Apply (TyFun a6989586621679796329 (TyFun a6989586621679796329 Ordering -> Type) -> Type) (TyFun a6989586621679796329 (TyFun [a6989586621679796329] [a6989586621679796329] -> Type) -> Type) (InsertBySym0 a6989586621679796329) l0 # | |
data InsertBySym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796329 (TyFun a6989586621679796329 Ordering -> Type) -> Type) -> TyFun a6989586621679796329 (TyFun [a6989586621679796329] [a6989586621679796329] -> Type) -> *) (InsertBySym1 a6989586621679796329) # | |
| type Apply a6989586621679796329 (TyFun [a6989586621679796329] [a6989586621679796329] -> Type) (InsertBySym1 a6989586621679796329 l0) l1 # | |
data InsertBySym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796329 (TyFun a6989586621679796329 Ordering -> Type) -> Type) -> a6989586621679796329 -> TyFun [a6989586621679796329] [a6989586621679796329] -> *) (InsertBySym2 a6989586621679796329) # | |
| type Apply [a6989586621679796329] [a6989586621679796329] (InsertBySym2 a6989586621679796329 l1 l0) l2 # | |
type InsertBySym3 t t t = InsertBy t t t #
data MaximumBySym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796328 (TyFun a6989586621679796328 Ordering -> Type) -> Type) (TyFun [a6989586621679796328] a6989586621679796328 -> Type) -> *) (MaximumBySym0 a6989586621679796328) # | |
| type Apply (TyFun a6989586621679796328 (TyFun a6989586621679796328 Ordering -> Type) -> Type) (TyFun [a6989586621679796328] a6989586621679796328 -> Type) (MaximumBySym0 a6989586621679796328) l0 # | |
data MaximumBySym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796328 (TyFun a6989586621679796328 Ordering -> Type) -> Type) -> TyFun [a6989586621679796328] a6989586621679796328 -> *) (MaximumBySym1 a6989586621679796328) # | |
| type Apply [a6989586621679796328] a6989586621679796328 (MaximumBySym1 a6989586621679796328 l0) l1 # | |
type MaximumBySym2 t t = MaximumBy t t #
data MinimumBySym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796327 (TyFun a6989586621679796327 Ordering -> Type) -> Type) (TyFun [a6989586621679796327] a6989586621679796327 -> Type) -> *) (MinimumBySym0 a6989586621679796327) # | |
| type Apply (TyFun a6989586621679796327 (TyFun a6989586621679796327 Ordering -> Type) -> Type) (TyFun [a6989586621679796327] a6989586621679796327 -> Type) (MinimumBySym0 a6989586621679796327) l0 # | |
data MinimumBySym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796327 (TyFun a6989586621679796327 Ordering -> Type) -> Type) -> TyFun [a6989586621679796327] a6989586621679796327 -> *) (MinimumBySym1 a6989586621679796327) # | |
| type Apply [a6989586621679796327] a6989586621679796327 (MinimumBySym1 a6989586621679796327 l0) l1 # | |
type MinimumBySym2 t t = MinimumBy t t #
data LengthSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796298] Nat -> *) (LengthSym0 a6989586621679796298) # | |
| type Apply [a6989586621679796298] Nat (LengthSym0 a6989586621679796298) l0 # | |
type LengthSym1 t = Length t #
data ProductSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796299] a6989586621679796299 -> *) (ProductSym0 a6989586621679796299) # | |
| type Apply [a6989586621679796299] a6989586621679796299 (ProductSym0 a6989586621679796299) l0 # | |
type ProductSym1 t = Product t #
data ReplicateSym0 l #
Instances
| SuppressUnusedWarnings (TyFun Nat (TyFun a6989586621679796297 [a6989586621679796297] -> Type) -> *) (ReplicateSym0 a6989586621679796297) # | |
| type Apply Nat (TyFun a6989586621679796297 [a6989586621679796297] -> Type) (ReplicateSym0 a6989586621679796297) l0 # | |
data ReplicateSym1 l l #
Instances
| SuppressUnusedWarnings (Nat -> TyFun a6989586621679796297 [a6989586621679796297] -> *) (ReplicateSym1 a6989586621679796297) # | |
| type Apply a6989586621679796297 [a6989586621679796297] (ReplicateSym1 a6989586621679796297 l0) l1 # | |
type ReplicateSym2 t t = Replicate t t #
data TransposeSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [[a6989586621679796296]] [[a6989586621679796296]] -> *) (TransposeSym0 a6989586621679796296) # | |
| type Apply [[a6989586621679796296]] [[a6989586621679796296]] (TransposeSym0 a6989586621679796296) l0 # | |
type TransposeSym1 t = Transpose t #
data SplitAtSym0 l #
Instances
| SuppressUnusedWarnings (TyFun Nat (TyFun [a6989586621679796311] ([a6989586621679796311], [a6989586621679796311]) -> Type) -> *) (SplitAtSym0 a6989586621679796311) # | |
| type Apply Nat (TyFun [a6989586621679796311] ([a6989586621679796311], [a6989586621679796311]) -> Type) (SplitAtSym0 a6989586621679796311) l0 # | |
data SplitAtSym1 l l #
Instances
| SuppressUnusedWarnings (Nat -> TyFun [a6989586621679796311] ([a6989586621679796311], [a6989586621679796311]) -> *) (SplitAtSym1 a6989586621679796311) # | |
| type Apply [a6989586621679796311] ([a6989586621679796311], [a6989586621679796311]) (SplitAtSym1 a6989586621679796311 l0) l1 # | |
type SplitAtSym2 t t = SplitAt t t #
data TakeWhileSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796318 Bool -> Type) (TyFun [a6989586621679796318] [a6989586621679796318] -> Type) -> *) (TakeWhileSym0 a6989586621679796318) # | |
| type Apply (TyFun a6989586621679796318 Bool -> Type) (TyFun [a6989586621679796318] [a6989586621679796318] -> Type) (TakeWhileSym0 a6989586621679796318) l0 # | |
data TakeWhileSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796318 Bool -> Type) -> TyFun [a6989586621679796318] [a6989586621679796318] -> *) (TakeWhileSym1 a6989586621679796318) # | |
| type Apply [a6989586621679796318] [a6989586621679796318] (TakeWhileSym1 a6989586621679796318 l0) l1 # | |
type TakeWhileSym2 t t = TakeWhile t t #
data DropWhileSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796317 Bool -> Type) (TyFun [a6989586621679796317] [a6989586621679796317] -> Type) -> *) (DropWhileSym0 a6989586621679796317) # | |
| type Apply (TyFun a6989586621679796317 Bool -> Type) (TyFun [a6989586621679796317] [a6989586621679796317] -> Type) (DropWhileSym0 a6989586621679796317) l0 # | |
data DropWhileSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796317 Bool -> Type) -> TyFun [a6989586621679796317] [a6989586621679796317] -> *) (DropWhileSym1 a6989586621679796317) # | |
| type Apply [a6989586621679796317] [a6989586621679796317] (DropWhileSym1 a6989586621679796317 l0) l1 # | |
type DropWhileSym2 t t = DropWhile t t #
data DropWhileEndSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796316 Bool -> Type) (TyFun [a6989586621679796316] [a6989586621679796316] -> Type) -> *) (DropWhileEndSym0 a6989586621679796316) # | |
| type Apply (TyFun a6989586621679796316 Bool -> Type) (TyFun [a6989586621679796316] [a6989586621679796316] -> Type) (DropWhileEndSym0 a6989586621679796316) l0 # | |
data DropWhileEndSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796316 Bool -> Type) -> TyFun [a6989586621679796316] [a6989586621679796316] -> *) (DropWhileEndSym1 a6989586621679796316) # | |
| type Apply [a6989586621679796316] [a6989586621679796316] (DropWhileEndSym1 a6989586621679796316 l0) l1 # | |
type DropWhileEndSym2 t t = DropWhileEnd t t #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796315 Bool -> Type) (TyFun [a6989586621679796315] ([a6989586621679796315], [a6989586621679796315]) -> Type) -> *) (SpanSym0 a6989586621679796315) # | |
| type Apply (TyFun a6989586621679796315 Bool -> Type) (TyFun [a6989586621679796315] ([a6989586621679796315], [a6989586621679796315]) -> Type) (SpanSym0 a6989586621679796315) l0 # | |
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796315 Bool -> Type) -> TyFun [a6989586621679796315] ([a6989586621679796315], [a6989586621679796315]) -> *) (SpanSym1 a6989586621679796315) # | |
| type Apply [a6989586621679796315] ([a6989586621679796315], [a6989586621679796315]) (SpanSym1 a6989586621679796315 l0) l1 # | |
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796314 Bool -> Type) (TyFun [a6989586621679796314] ([a6989586621679796314], [a6989586621679796314]) -> Type) -> *) (BreakSym0 a6989586621679796314) # | |
| type Apply (TyFun a6989586621679796314 Bool -> Type) (TyFun [a6989586621679796314] ([a6989586621679796314], [a6989586621679796314]) -> Type) (BreakSym0 a6989586621679796314) l0 # | |
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796314 Bool -> Type) -> TyFun [a6989586621679796314] ([a6989586621679796314], [a6989586621679796314]) -> *) (BreakSym1 a6989586621679796314) # | |
| type Apply [a6989586621679796314] ([a6989586621679796314], [a6989586621679796314]) (BreakSym1 a6989586621679796314 l0) l1 # | |
data StripPrefixSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621680051561] (TyFun [a6989586621680051561] (Maybe [a6989586621680051561]) -> Type) -> *) (StripPrefixSym0 a6989586621680051561) # | |
| type Apply [a6989586621680051561] (TyFun [a6989586621680051561] (Maybe [a6989586621680051561]) -> Type) (StripPrefixSym0 a6989586621680051561) l0 # | |
data StripPrefixSym1 l l #
Instances
| SuppressUnusedWarnings ([a6989586621680051561] -> TyFun [a6989586621680051561] (Maybe [a6989586621680051561]) -> *) (StripPrefixSym1 a6989586621680051561) # | |
| type Apply [a6989586621680051561] (Maybe [a6989586621680051561]) (StripPrefixSym1 a6989586621680051561 l0) l1 # | |
type StripPrefixSym2 t t = StripPrefix t t #
data MaximumSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796309] a6989586621679796309 -> *) (MaximumSym0 a6989586621679796309) # | |
| type Apply [a6989586621679796309] a6989586621679796309 (MaximumSym0 a6989586621679796309) l0 # | |
type MaximumSym1 t = Maximum t #
data MinimumSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796308] a6989586621679796308 -> *) (MinimumSym0 a6989586621679796308) # | |
| type Apply [a6989586621679796308] a6989586621679796308 (MinimumSym0 a6989586621679796308) l0 # | |
type MinimumSym1 t = Minimum t #
data GroupBySym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796305 (TyFun a6989586621679796305 Bool -> Type) -> Type) (TyFun [a6989586621679796305] [[a6989586621679796305]] -> Type) -> *) (GroupBySym0 a6989586621679796305) # | |
| type Apply (TyFun a6989586621679796305 (TyFun a6989586621679796305 Bool -> Type) -> Type) (TyFun [a6989586621679796305] [[a6989586621679796305]] -> Type) (GroupBySym0 a6989586621679796305) l0 # | |
data GroupBySym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796305 (TyFun a6989586621679796305 Bool -> Type) -> Type) -> TyFun [a6989586621679796305] [[a6989586621679796305]] -> *) (GroupBySym1 a6989586621679796305) # | |
| type Apply [a6989586621679796305] [[a6989586621679796305]] (GroupBySym1 a6989586621679796305 l0) l1 # | |
type GroupBySym2 t t = GroupBy t t #
data LookupSym0 l #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679796303 (TyFun [(a6989586621679796303, b6989586621679796304)] (Maybe b6989586621679796304) -> Type) -> *) (LookupSym0 a6989586621679796303 b6989586621679796304) # | |
| type Apply a6989586621679796303 (TyFun [(a6989586621679796303, b6989586621679796304)] (Maybe b6989586621679796304) -> Type) (LookupSym0 a6989586621679796303 b6989586621679796304) l0 # | |
data LookupSym1 l l #
Instances
| SuppressUnusedWarnings (a6989586621679796303 -> TyFun [(a6989586621679796303, b6989586621679796304)] (Maybe b6989586621679796304) -> *) (LookupSym1 b6989586621679796304 a6989586621679796303) # | |
| type Apply [(a6989586621679796303, b6989586621679796304)] (Maybe b6989586621679796304) (LookupSym1 b6989586621679796304 a6989586621679796303 l0) l1 # | |
type LookupSym2 t t = Lookup t t #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796325 Bool -> Type) (TyFun [a6989586621679796325] (Maybe a6989586621679796325) -> Type) -> *) (FindSym0 a6989586621679796325) # | |
| type Apply (TyFun a6989586621679796325 Bool -> Type) (TyFun [a6989586621679796325] (Maybe a6989586621679796325) -> Type) (FindSym0 a6989586621679796325) l0 # | |
data FilterSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796326 Bool -> Type) (TyFun [a6989586621679796326] [a6989586621679796326] -> Type) -> *) (FilterSym0 a6989586621679796326) # | |
| type Apply (TyFun a6989586621679796326 Bool -> Type) (TyFun [a6989586621679796326] [a6989586621679796326] -> Type) (FilterSym0 a6989586621679796326) l0 # | |
data FilterSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796326 Bool -> Type) -> TyFun [a6989586621679796326] [a6989586621679796326] -> *) (FilterSym1 a6989586621679796326) # | |
| type Apply [a6989586621679796326] [a6989586621679796326] (FilterSym1 a6989586621679796326 l0) l1 # | |
type FilterSym2 t t = Filter t t #
data PartitionSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796302 Bool -> Type) (TyFun [a6989586621679796302] ([a6989586621679796302], [a6989586621679796302]) -> Type) -> *) (PartitionSym0 a6989586621679796302) # | |
| type Apply (TyFun a6989586621679796302 Bool -> Type) (TyFun [a6989586621679796302] ([a6989586621679796302], [a6989586621679796302]) -> Type) (PartitionSym0 a6989586621679796302) l0 # | |
data PartitionSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796302 Bool -> Type) -> TyFun [a6989586621679796302] ([a6989586621679796302], [a6989586621679796302]) -> *) (PartitionSym1 a6989586621679796302) # | |
| type Apply [a6989586621679796302] ([a6989586621679796302], [a6989586621679796302]) (PartitionSym1 a6989586621679796302 l0) l1 # | |
type PartitionSym2 t t = Partition t t #
data ElemIndexSym0 l #
data ElemIndexSym1 l l #
Instances
| SuppressUnusedWarnings (a6989586621679796324 -> TyFun [a6989586621679796324] (Maybe Nat) -> *) (ElemIndexSym1 a6989586621679796324) # | |
| type Apply [a6989586621679796324] (Maybe Nat) (ElemIndexSym1 a6989586621679796324 l0) l1 # | |
type ElemIndexSym2 t t = ElemIndex t t #
data ElemIndicesSym0 l #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679796323 (TyFun [a6989586621679796323] [Nat] -> Type) -> *) (ElemIndicesSym0 a6989586621679796323) # | |
| type Apply a6989586621679796323 (TyFun [a6989586621679796323] [Nat] -> Type) (ElemIndicesSym0 a6989586621679796323) l0 # | |
data ElemIndicesSym1 l l #
Instances
| SuppressUnusedWarnings (a6989586621679796323 -> TyFun [a6989586621679796323] [Nat] -> *) (ElemIndicesSym1 a6989586621679796323) # | |
| type Apply [a6989586621679796323] [Nat] (ElemIndicesSym1 a6989586621679796323 l0) l1 # | |
type ElemIndicesSym2 t t = ElemIndices t t #
data FindIndexSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796322 Bool -> Type) (TyFun [a6989586621679796322] (Maybe Nat) -> Type) -> *) (FindIndexSym0 a6989586621679796322) # | |
| type Apply (TyFun a6989586621679796322 Bool -> Type) (TyFun [a6989586621679796322] (Maybe Nat) -> Type) (FindIndexSym0 a6989586621679796322) l0 # | |
data FindIndexSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796322 Bool -> Type) -> TyFun [a6989586621679796322] (Maybe Nat) -> *) (FindIndexSym1 a6989586621679796322) # | |
| type Apply [a6989586621679796322] (Maybe Nat) (FindIndexSym1 a6989586621679796322 l0) l1 # | |
type FindIndexSym2 t t = FindIndex t t #
data FindIndicesSym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796321 Bool -> Type) (TyFun [a6989586621679796321] [Nat] -> Type) -> *) (FindIndicesSym0 a6989586621679796321) # | |
| type Apply (TyFun a6989586621679796321 Bool -> Type) (TyFun [a6989586621679796321] [Nat] -> Type) (FindIndicesSym0 a6989586621679796321) l0 # | |
data FindIndicesSym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796321 Bool -> Type) -> TyFun [a6989586621679796321] [Nat] -> *) (FindIndicesSym1 a6989586621679796321) # | |
| type Apply [a6989586621679796321] [Nat] (FindIndicesSym1 a6989586621679796321 l0) l1 # | |
type FindIndicesSym2 t t = FindIndices t t #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621680051557] (TyFun [b6989586621680051558] (TyFun [c6989586621680051559] (TyFun [d6989586621680051560] [(a6989586621680051557, b6989586621680051558, c6989586621680051559, d6989586621680051560)] -> Type) -> Type) -> Type) -> *) (Zip4Sym0 a6989586621680051557 b6989586621680051558 c6989586621680051559 d6989586621680051560) # | |
| type Apply [a6989586621680051557] (TyFun [b6989586621680051558] (TyFun [c6989586621680051559] (TyFun [d6989586621680051560] [(a6989586621680051557, b6989586621680051558, c6989586621680051559, d6989586621680051560)] -> Type) -> Type) -> Type) (Zip4Sym0 a6989586621680051557 b6989586621680051558 c6989586621680051559 d6989586621680051560) l0 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051557] -> TyFun [b6989586621680051558] (TyFun [c6989586621680051559] (TyFun [d6989586621680051560] [(a6989586621680051557, b6989586621680051558, c6989586621680051559, d6989586621680051560)] -> Type) -> Type) -> *) (Zip4Sym1 b6989586621680051558 c6989586621680051559 d6989586621680051560 a6989586621680051557) # | |
| type Apply [b6989586621680051558] (TyFun [c6989586621680051559] (TyFun [d6989586621680051560] [(a6989586621680051557, b6989586621680051558, c6989586621680051559, d6989586621680051560)] -> Type) -> Type) (Zip4Sym1 b6989586621680051558 c6989586621680051559 d6989586621680051560 a6989586621680051557 l0) l1 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051557] -> [b6989586621680051558] -> TyFun [c6989586621680051559] (TyFun [d6989586621680051560] [(a6989586621680051557, b6989586621680051558, c6989586621680051559, d6989586621680051560)] -> Type) -> *) (Zip4Sym2 c6989586621680051559 d6989586621680051560 b6989586621680051558 a6989586621680051557) # | |
| type Apply [c6989586621680051559] (TyFun [d6989586621680051560] [(a6989586621680051557, b6989586621680051558, c6989586621680051559, d6989586621680051560)] -> Type) (Zip4Sym2 c6989586621680051559 d6989586621680051560 b6989586621680051558 a6989586621680051557 l1 l0) l2 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051557] -> [b6989586621680051558] -> [c6989586621680051559] -> TyFun [d6989586621680051560] [(a6989586621680051557, b6989586621680051558, c6989586621680051559, d6989586621680051560)] -> *) (Zip4Sym3 d6989586621680051560 c6989586621680051559 b6989586621680051558 a6989586621680051557) # | |
| type Apply [d6989586621680051560] [(a6989586621680051557, b6989586621680051558, c6989586621680051559, d6989586621680051560)] (Zip4Sym3 d6989586621680051560 c6989586621680051559 b6989586621680051558 a6989586621680051557 l2 l1 l0) l3 # | |
Instances
| SuppressUnusedWarnings (TyFun [a6989586621680051552] (TyFun [b6989586621680051553] (TyFun [c6989586621680051554] (TyFun [d6989586621680051555] (TyFun [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip5Sym0 a6989586621680051552 b6989586621680051553 c6989586621680051554 d6989586621680051555 e6989586621680051556) # | |
| type Apply [a6989586621680051552] (TyFun [b6989586621680051553] (TyFun [c6989586621680051554] (TyFun [d6989586621680051555] (TyFun [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] -> Type) -> Type) -> Type) -> Type) (Zip5Sym0 a6989586621680051552 b6989586621680051553 c6989586621680051554 d6989586621680051555 e6989586621680051556) l0 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051552] -> TyFun [b6989586621680051553] (TyFun [c6989586621680051554] (TyFun [d6989586621680051555] (TyFun [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] -> Type) -> Type) -> Type) -> *) (Zip5Sym1 b6989586621680051553 c6989586621680051554 d6989586621680051555 e6989586621680051556 a6989586621680051552) # | |
| type Apply [b6989586621680051553] (TyFun [c6989586621680051554] (TyFun [d6989586621680051555] (TyFun [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] -> Type) -> Type) -> Type) (Zip5Sym1 b6989586621680051553 c6989586621680051554 d6989586621680051555 e6989586621680051556 a6989586621680051552 l0) l1 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051552] -> [b6989586621680051553] -> TyFun [c6989586621680051554] (TyFun [d6989586621680051555] (TyFun [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] -> Type) -> Type) -> *) (Zip5Sym2 c6989586621680051554 d6989586621680051555 e6989586621680051556 b6989586621680051553 a6989586621680051552) # | |
| type Apply [c6989586621680051554] (TyFun [d6989586621680051555] (TyFun [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] -> Type) -> Type) (Zip5Sym2 c6989586621680051554 d6989586621680051555 e6989586621680051556 b6989586621680051553 a6989586621680051552 l1 l0) l2 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051552] -> [b6989586621680051553] -> [c6989586621680051554] -> TyFun [d6989586621680051555] (TyFun [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] -> Type) -> *) (Zip5Sym3 d6989586621680051555 e6989586621680051556 c6989586621680051554 b6989586621680051553 a6989586621680051552) # | |
| type Apply [d6989586621680051555] (TyFun [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] -> Type) (Zip5Sym3 d6989586621680051555 e6989586621680051556 c6989586621680051554 b6989586621680051553 a6989586621680051552 l2 l1 l0) l3 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051552] -> [b6989586621680051553] -> [c6989586621680051554] -> [d6989586621680051555] -> TyFun [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] -> *) (Zip5Sym4 e6989586621680051556 d6989586621680051555 c6989586621680051554 b6989586621680051553 a6989586621680051552) # | |
| type Apply [e6989586621680051556] [(a6989586621680051552, b6989586621680051553, c6989586621680051554, d6989586621680051555, e6989586621680051556)] (Zip5Sym4 e6989586621680051556 d6989586621680051555 c6989586621680051554 b6989586621680051553 a6989586621680051552 l3 l2 l1 l0) l4 # | |
Instances
| SuppressUnusedWarnings (TyFun [a6989586621680051546] (TyFun [b6989586621680051547] (TyFun [c6989586621680051548] (TyFun [d6989586621680051549] (TyFun [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip6Sym0 a6989586621680051546 b6989586621680051547 c6989586621680051548 d6989586621680051549 e6989586621680051550 f6989586621680051551) # | |
| type Apply [a6989586621680051546] (TyFun [b6989586621680051547] (TyFun [c6989586621680051548] (TyFun [d6989586621680051549] (TyFun [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) -> Type) -> Type) -> Type) -> Type) (Zip6Sym0 a6989586621680051546 b6989586621680051547 c6989586621680051548 d6989586621680051549 e6989586621680051550 f6989586621680051551) l0 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051546] -> TyFun [b6989586621680051547] (TyFun [c6989586621680051548] (TyFun [d6989586621680051549] (TyFun [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip6Sym1 b6989586621680051547 c6989586621680051548 d6989586621680051549 e6989586621680051550 f6989586621680051551 a6989586621680051546) # | |
| type Apply [b6989586621680051547] (TyFun [c6989586621680051548] (TyFun [d6989586621680051549] (TyFun [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) -> Type) -> Type) -> Type) (Zip6Sym1 b6989586621680051547 c6989586621680051548 d6989586621680051549 e6989586621680051550 f6989586621680051551 a6989586621680051546 l0) l1 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051546] -> [b6989586621680051547] -> TyFun [c6989586621680051548] (TyFun [d6989586621680051549] (TyFun [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) -> Type) -> Type) -> *) (Zip6Sym2 c6989586621680051548 d6989586621680051549 e6989586621680051550 f6989586621680051551 b6989586621680051547 a6989586621680051546) # | |
| type Apply [c6989586621680051548] (TyFun [d6989586621680051549] (TyFun [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) -> Type) -> Type) (Zip6Sym2 c6989586621680051548 d6989586621680051549 e6989586621680051550 f6989586621680051551 b6989586621680051547 a6989586621680051546 l1 l0) l2 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051546] -> [b6989586621680051547] -> [c6989586621680051548] -> TyFun [d6989586621680051549] (TyFun [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) -> Type) -> *) (Zip6Sym3 d6989586621680051549 e6989586621680051550 f6989586621680051551 c6989586621680051548 b6989586621680051547 a6989586621680051546) # | |
| type Apply [d6989586621680051549] (TyFun [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) -> Type) (Zip6Sym3 d6989586621680051549 e6989586621680051550 f6989586621680051551 c6989586621680051548 b6989586621680051547 a6989586621680051546 l2 l1 l0) l3 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051546] -> [b6989586621680051547] -> [c6989586621680051548] -> [d6989586621680051549] -> TyFun [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) -> *) (Zip6Sym4 e6989586621680051550 f6989586621680051551 d6989586621680051549 c6989586621680051548 b6989586621680051547 a6989586621680051546) # | |
| type Apply [e6989586621680051550] (TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> Type) (Zip6Sym4 e6989586621680051550 f6989586621680051551 d6989586621680051549 c6989586621680051548 b6989586621680051547 a6989586621680051546 l3 l2 l1 l0) l4 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051546] -> [b6989586621680051547] -> [c6989586621680051548] -> [d6989586621680051549] -> [e6989586621680051550] -> TyFun [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] -> *) (Zip6Sym5 f6989586621680051551 e6989586621680051550 d6989586621680051549 c6989586621680051548 b6989586621680051547 a6989586621680051546) # | |
| type Apply [f6989586621680051551] [(a6989586621680051546, b6989586621680051547, c6989586621680051548, d6989586621680051549, e6989586621680051550, f6989586621680051551)] (Zip6Sym5 f6989586621680051551 e6989586621680051550 d6989586621680051549 c6989586621680051548 b6989586621680051547 a6989586621680051546 l4 l3 l2 l1 l0) l5 # | |
Instances
| SuppressUnusedWarnings (TyFun [a6989586621680051539] (TyFun [b6989586621680051540] (TyFun [c6989586621680051541] (TyFun [d6989586621680051542] (TyFun [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym0 a6989586621680051539 b6989586621680051540 c6989586621680051541 d6989586621680051542 e6989586621680051543 f6989586621680051544 g6989586621680051545) # | |
| type Apply [a6989586621680051539] (TyFun [b6989586621680051540] (TyFun [c6989586621680051541] (TyFun [d6989586621680051542] (TyFun [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (Zip7Sym0 a6989586621680051539 b6989586621680051540 c6989586621680051541 d6989586621680051542 e6989586621680051543 f6989586621680051544 g6989586621680051545) l0 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051539] -> TyFun [b6989586621680051540] (TyFun [c6989586621680051541] (TyFun [d6989586621680051542] (TyFun [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym1 b6989586621680051540 c6989586621680051541 d6989586621680051542 e6989586621680051543 f6989586621680051544 g6989586621680051545 a6989586621680051539) # | |
| type Apply [b6989586621680051540] (TyFun [c6989586621680051541] (TyFun [d6989586621680051542] (TyFun [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) -> Type) -> Type) -> Type) (Zip7Sym1 b6989586621680051540 c6989586621680051541 d6989586621680051542 e6989586621680051543 f6989586621680051544 g6989586621680051545 a6989586621680051539 l0) l1 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051539] -> [b6989586621680051540] -> TyFun [c6989586621680051541] (TyFun [d6989586621680051542] (TyFun [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym2 c6989586621680051541 d6989586621680051542 e6989586621680051543 f6989586621680051544 g6989586621680051545 b6989586621680051540 a6989586621680051539) # | |
| type Apply [c6989586621680051541] (TyFun [d6989586621680051542] (TyFun [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) -> Type) -> Type) (Zip7Sym2 c6989586621680051541 d6989586621680051542 e6989586621680051543 f6989586621680051544 g6989586621680051545 b6989586621680051540 a6989586621680051539 l1 l0) l2 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051539] -> [b6989586621680051540] -> [c6989586621680051541] -> TyFun [d6989586621680051542] (TyFun [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) -> Type) -> *) (Zip7Sym3 d6989586621680051542 e6989586621680051543 f6989586621680051544 g6989586621680051545 c6989586621680051541 b6989586621680051540 a6989586621680051539) # | |
| type Apply [d6989586621680051542] (TyFun [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) -> Type) (Zip7Sym3 d6989586621680051542 e6989586621680051543 f6989586621680051544 g6989586621680051545 c6989586621680051541 b6989586621680051540 a6989586621680051539 l2 l1 l0) l3 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051539] -> [b6989586621680051540] -> [c6989586621680051541] -> [d6989586621680051542] -> TyFun [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) -> *) (Zip7Sym4 e6989586621680051543 f6989586621680051544 g6989586621680051545 d6989586621680051542 c6989586621680051541 b6989586621680051540 a6989586621680051539) # | |
| type Apply [e6989586621680051543] (TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> Type) (Zip7Sym4 e6989586621680051543 f6989586621680051544 g6989586621680051545 d6989586621680051542 c6989586621680051541 b6989586621680051540 a6989586621680051539 l3 l2 l1 l0) l4 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051539] -> [b6989586621680051540] -> [c6989586621680051541] -> [d6989586621680051542] -> [e6989586621680051543] -> TyFun [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) -> *) (Zip7Sym5 f6989586621680051544 g6989586621680051545 e6989586621680051543 d6989586621680051542 c6989586621680051541 b6989586621680051540 a6989586621680051539) # | |
| type Apply [f6989586621680051544] (TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> Type) (Zip7Sym5 f6989586621680051544 g6989586621680051545 e6989586621680051543 d6989586621680051542 c6989586621680051541 b6989586621680051540 a6989586621680051539 l4 l3 l2 l1 l0) l5 # | |
Instances
| SuppressUnusedWarnings ([a6989586621680051539] -> [b6989586621680051540] -> [c6989586621680051541] -> [d6989586621680051542] -> [e6989586621680051543] -> [f6989586621680051544] -> TyFun [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] -> *) (Zip7Sym6 g6989586621680051545 f6989586621680051544 e6989586621680051543 d6989586621680051542 c6989586621680051541 b6989586621680051540 a6989586621680051539) # | |
| type Apply [g6989586621680051545] [(a6989586621680051539, b6989586621680051540, c6989586621680051541, d6989586621680051542, e6989586621680051543, f6989586621680051544, g6989586621680051545)] (Zip7Sym6 g6989586621680051545 f6989586621680051544 e6989586621680051543 d6989586621680051542 c6989586621680051541 b6989586621680051540 a6989586621680051539 l5 l4 l3 l2 l1 l0) l6 # | |
data ZipWith4Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621680051534 (TyFun b6989586621680051535 (TyFun c6989586621680051536 (TyFun d6989586621680051537 e6989586621680051538 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621680051534] (TyFun [b6989586621680051535] (TyFun [c6989586621680051536] (TyFun [d6989586621680051537] [e6989586621680051538] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith4Sym0 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538) # | |
| type Apply (TyFun a6989586621680051534 (TyFun b6989586621680051535 (TyFun c6989586621680051536 (TyFun d6989586621680051537 e6989586621680051538 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621680051534] (TyFun [b6989586621680051535] (TyFun [c6989586621680051536] (TyFun [d6989586621680051537] [e6989586621680051538] -> Type) -> Type) -> Type) -> Type) (ZipWith4Sym0 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538) l0 # | |
data ZipWith4Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051534 (TyFun b6989586621680051535 (TyFun c6989586621680051536 (TyFun d6989586621680051537 e6989586621680051538 -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621680051534] (TyFun [b6989586621680051535] (TyFun [c6989586621680051536] (TyFun [d6989586621680051537] [e6989586621680051538] -> Type) -> Type) -> Type) -> *) (ZipWith4Sym1 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538) # | |
| type Apply [a6989586621680051534] (TyFun [b6989586621680051535] (TyFun [c6989586621680051536] (TyFun [d6989586621680051537] [e6989586621680051538] -> Type) -> Type) -> Type) (ZipWith4Sym1 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538 l0) l1 # | |
data ZipWith4Sym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051534 (TyFun b6989586621680051535 (TyFun c6989586621680051536 (TyFun d6989586621680051537 e6989586621680051538 -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051534] -> TyFun [b6989586621680051535] (TyFun [c6989586621680051536] (TyFun [d6989586621680051537] [e6989586621680051538] -> Type) -> Type) -> *) (ZipWith4Sym2 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538) # | |
| type Apply [b6989586621680051535] (TyFun [c6989586621680051536] (TyFun [d6989586621680051537] [e6989586621680051538] -> Type) -> Type) (ZipWith4Sym2 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538 l1 l0) l2 # | |
data ZipWith4Sym3 l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051534 (TyFun b6989586621680051535 (TyFun c6989586621680051536 (TyFun d6989586621680051537 e6989586621680051538 -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051534] -> [b6989586621680051535] -> TyFun [c6989586621680051536] (TyFun [d6989586621680051537] [e6989586621680051538] -> Type) -> *) (ZipWith4Sym3 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538) # | |
| type Apply [c6989586621680051536] (TyFun [d6989586621680051537] [e6989586621680051538] -> Type) (ZipWith4Sym3 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538 l2 l1 l0) l3 # | |
data ZipWith4Sym4 l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051534 (TyFun b6989586621680051535 (TyFun c6989586621680051536 (TyFun d6989586621680051537 e6989586621680051538 -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051534] -> [b6989586621680051535] -> [c6989586621680051536] -> TyFun [d6989586621680051537] [e6989586621680051538] -> *) (ZipWith4Sym4 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538) # | |
| type Apply [d6989586621680051537] [e6989586621680051538] (ZipWith4Sym4 a6989586621680051534 b6989586621680051535 c6989586621680051536 d6989586621680051537 e6989586621680051538 l3 l2 l1 l0) l4 # | |
type ZipWith4Sym5 t t t t t = ZipWith4 t t t t t #
data ZipWith5Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621680051528 (TyFun b6989586621680051529 (TyFun c6989586621680051530 (TyFun d6989586621680051531 (TyFun e6989586621680051532 f6989586621680051533 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621680051528] (TyFun [b6989586621680051529] (TyFun [c6989586621680051530] (TyFun [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith5Sym0 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533) # | |
| type Apply (TyFun a6989586621680051528 (TyFun b6989586621680051529 (TyFun c6989586621680051530 (TyFun d6989586621680051531 (TyFun e6989586621680051532 f6989586621680051533 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621680051528] (TyFun [b6989586621680051529] (TyFun [c6989586621680051530] (TyFun [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith5Sym0 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533) l0 # | |
data ZipWith5Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051528 (TyFun b6989586621680051529 (TyFun c6989586621680051530 (TyFun d6989586621680051531 (TyFun e6989586621680051532 f6989586621680051533 -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621680051528] (TyFun [b6989586621680051529] (TyFun [c6989586621680051530] (TyFun [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith5Sym1 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533) # | |
| type Apply [a6989586621680051528] (TyFun [b6989586621680051529] (TyFun [c6989586621680051530] (TyFun [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) -> Type) -> Type) -> Type) (ZipWith5Sym1 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533 l0) l1 # | |
data ZipWith5Sym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051528 (TyFun b6989586621680051529 (TyFun c6989586621680051530 (TyFun d6989586621680051531 (TyFun e6989586621680051532 f6989586621680051533 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051528] -> TyFun [b6989586621680051529] (TyFun [c6989586621680051530] (TyFun [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) -> Type) -> Type) -> *) (ZipWith5Sym2 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533) # | |
| type Apply [b6989586621680051529] (TyFun [c6989586621680051530] (TyFun [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) -> Type) -> Type) (ZipWith5Sym2 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533 l1 l0) l2 # | |
data ZipWith5Sym3 l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051528 (TyFun b6989586621680051529 (TyFun c6989586621680051530 (TyFun d6989586621680051531 (TyFun e6989586621680051532 f6989586621680051533 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051528] -> [b6989586621680051529] -> TyFun [c6989586621680051530] (TyFun [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) -> Type) -> *) (ZipWith5Sym3 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533) # | |
| type Apply [c6989586621680051530] (TyFun [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) -> Type) (ZipWith5Sym3 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533 l2 l1 l0) l3 # | |
data ZipWith5Sym4 l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051528 (TyFun b6989586621680051529 (TyFun c6989586621680051530 (TyFun d6989586621680051531 (TyFun e6989586621680051532 f6989586621680051533 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051528] -> [b6989586621680051529] -> [c6989586621680051530] -> TyFun [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) -> *) (ZipWith5Sym4 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533) # | |
| type Apply [d6989586621680051531] (TyFun [e6989586621680051532] [f6989586621680051533] -> Type) (ZipWith5Sym4 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533 l3 l2 l1 l0) l4 # | |
data ZipWith5Sym5 l l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051528 (TyFun b6989586621680051529 (TyFun c6989586621680051530 (TyFun d6989586621680051531 (TyFun e6989586621680051532 f6989586621680051533 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051528] -> [b6989586621680051529] -> [c6989586621680051530] -> [d6989586621680051531] -> TyFun [e6989586621680051532] [f6989586621680051533] -> *) (ZipWith5Sym5 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533) # | |
| type Apply [e6989586621680051532] [f6989586621680051533] (ZipWith5Sym5 a6989586621680051528 b6989586621680051529 c6989586621680051530 d6989586621680051531 e6989586621680051532 f6989586621680051533 l4 l3 l2 l1 l0) l5 # | |
type ZipWith5Sym6 t t t t t t = ZipWith5 t t t t t t #
data ZipWith6Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621680051521 (TyFun b6989586621680051522 (TyFun c6989586621680051523 (TyFun d6989586621680051524 (TyFun e6989586621680051525 (TyFun f6989586621680051526 g6989586621680051527 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621680051521] (TyFun [b6989586621680051522] (TyFun [c6989586621680051523] (TyFun [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym0 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527) # | |
| type Apply (TyFun a6989586621680051521 (TyFun b6989586621680051522 (TyFun c6989586621680051523 (TyFun d6989586621680051524 (TyFun e6989586621680051525 (TyFun f6989586621680051526 g6989586621680051527 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621680051521] (TyFun [b6989586621680051522] (TyFun [c6989586621680051523] (TyFun [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym0 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527) l0 # | |
data ZipWith6Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051521 (TyFun b6989586621680051522 (TyFun c6989586621680051523 (TyFun d6989586621680051524 (TyFun e6989586621680051525 (TyFun f6989586621680051526 g6989586621680051527 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621680051521] (TyFun [b6989586621680051522] (TyFun [c6989586621680051523] (TyFun [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym1 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527) # | |
| type Apply [a6989586621680051521] (TyFun [b6989586621680051522] (TyFun [c6989586621680051523] (TyFun [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym1 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527 l0) l1 # | |
data ZipWith6Sym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051521 (TyFun b6989586621680051522 (TyFun c6989586621680051523 (TyFun d6989586621680051524 (TyFun e6989586621680051525 (TyFun f6989586621680051526 g6989586621680051527 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051521] -> TyFun [b6989586621680051522] (TyFun [c6989586621680051523] (TyFun [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym2 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527) # | |
| type Apply [b6989586621680051522] (TyFun [c6989586621680051523] (TyFun [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) -> Type) -> Type) (ZipWith6Sym2 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527 l1 l0) l2 # | |
data ZipWith6Sym3 l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051521 (TyFun b6989586621680051522 (TyFun c6989586621680051523 (TyFun d6989586621680051524 (TyFun e6989586621680051525 (TyFun f6989586621680051526 g6989586621680051527 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051521] -> [b6989586621680051522] -> TyFun [c6989586621680051523] (TyFun [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) -> Type) -> *) (ZipWith6Sym3 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527) # | |
| type Apply [c6989586621680051523] (TyFun [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) -> Type) (ZipWith6Sym3 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527 l2 l1 l0) l3 # | |
data ZipWith6Sym4 l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051521 (TyFun b6989586621680051522 (TyFun c6989586621680051523 (TyFun d6989586621680051524 (TyFun e6989586621680051525 (TyFun f6989586621680051526 g6989586621680051527 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051521] -> [b6989586621680051522] -> [c6989586621680051523] -> TyFun [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) -> *) (ZipWith6Sym4 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527) # | |
| type Apply [d6989586621680051524] (TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> Type) (ZipWith6Sym4 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527 l3 l2 l1 l0) l4 # | |
data ZipWith6Sym5 l l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051521 (TyFun b6989586621680051522 (TyFun c6989586621680051523 (TyFun d6989586621680051524 (TyFun e6989586621680051525 (TyFun f6989586621680051526 g6989586621680051527 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051521] -> [b6989586621680051522] -> [c6989586621680051523] -> [d6989586621680051524] -> TyFun [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) -> *) (ZipWith6Sym5 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527) # | |
| type Apply [e6989586621680051525] (TyFun [f6989586621680051526] [g6989586621680051527] -> Type) (ZipWith6Sym5 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527 l4 l3 l2 l1 l0) l5 # | |
data ZipWith6Sym6 l l l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051521 (TyFun b6989586621680051522 (TyFun c6989586621680051523 (TyFun d6989586621680051524 (TyFun e6989586621680051525 (TyFun f6989586621680051526 g6989586621680051527 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051521] -> [b6989586621680051522] -> [c6989586621680051523] -> [d6989586621680051524] -> [e6989586621680051525] -> TyFun [f6989586621680051526] [g6989586621680051527] -> *) (ZipWith6Sym6 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527) # | |
| type Apply [f6989586621680051526] [g6989586621680051527] (ZipWith6Sym6 a6989586621680051521 b6989586621680051522 c6989586621680051523 d6989586621680051524 e6989586621680051525 f6989586621680051526 g6989586621680051527 l5 l4 l3 l2 l1 l0) l6 # | |
type ZipWith6Sym7 t t t t t t t = ZipWith6 t t t t t t t #
data ZipWith7Sym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621680051513 (TyFun b6989586621680051514 (TyFun c6989586621680051515 (TyFun d6989586621680051516 (TyFun e6989586621680051517 (TyFun f6989586621680051518 (TyFun g6989586621680051519 h6989586621680051520 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621680051513] (TyFun [b6989586621680051514] (TyFun [c6989586621680051515] (TyFun [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym0 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520) # | |
| type Apply (TyFun a6989586621680051513 (TyFun b6989586621680051514 (TyFun c6989586621680051515 (TyFun d6989586621680051516 (TyFun e6989586621680051517 (TyFun f6989586621680051518 (TyFun g6989586621680051519 h6989586621680051520 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621680051513] (TyFun [b6989586621680051514] (TyFun [c6989586621680051515] (TyFun [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym0 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520) l0 # | |
data ZipWith7Sym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051513 (TyFun b6989586621680051514 (TyFun c6989586621680051515 (TyFun d6989586621680051516 (TyFun e6989586621680051517 (TyFun f6989586621680051518 (TyFun g6989586621680051519 h6989586621680051520 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621680051513] (TyFun [b6989586621680051514] (TyFun [c6989586621680051515] (TyFun [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym1 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520) # | |
| type Apply [a6989586621680051513] (TyFun [b6989586621680051514] (TyFun [c6989586621680051515] (TyFun [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym1 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520 l0) l1 # | |
data ZipWith7Sym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051513 (TyFun b6989586621680051514 (TyFun c6989586621680051515 (TyFun d6989586621680051516 (TyFun e6989586621680051517 (TyFun f6989586621680051518 (TyFun g6989586621680051519 h6989586621680051520 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051513] -> TyFun [b6989586621680051514] (TyFun [c6989586621680051515] (TyFun [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym2 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520) # | |
| type Apply [b6989586621680051514] (TyFun [c6989586621680051515] (TyFun [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym2 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520 l1 l0) l2 # | |
data ZipWith7Sym3 l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051513 (TyFun b6989586621680051514 (TyFun c6989586621680051515 (TyFun d6989586621680051516 (TyFun e6989586621680051517 (TyFun f6989586621680051518 (TyFun g6989586621680051519 h6989586621680051520 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051513] -> [b6989586621680051514] -> TyFun [c6989586621680051515] (TyFun [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym3 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520) # | |
| type Apply [c6989586621680051515] (TyFun [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) -> Type) (ZipWith7Sym3 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520 l2 l1 l0) l3 # | |
data ZipWith7Sym4 l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051513 (TyFun b6989586621680051514 (TyFun c6989586621680051515 (TyFun d6989586621680051516 (TyFun e6989586621680051517 (TyFun f6989586621680051518 (TyFun g6989586621680051519 h6989586621680051520 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051513] -> [b6989586621680051514] -> [c6989586621680051515] -> TyFun [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) -> *) (ZipWith7Sym4 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520) # | |
| type Apply [d6989586621680051516] (TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> Type) (ZipWith7Sym4 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520 l3 l2 l1 l0) l4 # | |
data ZipWith7Sym5 l l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051513 (TyFun b6989586621680051514 (TyFun c6989586621680051515 (TyFun d6989586621680051516 (TyFun e6989586621680051517 (TyFun f6989586621680051518 (TyFun g6989586621680051519 h6989586621680051520 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051513] -> [b6989586621680051514] -> [c6989586621680051515] -> [d6989586621680051516] -> TyFun [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) -> *) (ZipWith7Sym5 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520) # | |
| type Apply [e6989586621680051517] (TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> Type) (ZipWith7Sym5 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520 l4 l3 l2 l1 l0) l5 # | |
data ZipWith7Sym6 l l l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051513 (TyFun b6989586621680051514 (TyFun c6989586621680051515 (TyFun d6989586621680051516 (TyFun e6989586621680051517 (TyFun f6989586621680051518 (TyFun g6989586621680051519 h6989586621680051520 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051513] -> [b6989586621680051514] -> [c6989586621680051515] -> [d6989586621680051516] -> [e6989586621680051517] -> TyFun [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) -> *) (ZipWith7Sym6 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520) # | |
| type Apply [f6989586621680051518] (TyFun [g6989586621680051519] [h6989586621680051520] -> Type) (ZipWith7Sym6 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520 l5 l4 l3 l2 l1 l0) l6 # | |
data ZipWith7Sym7 l l l l l l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621680051513 (TyFun b6989586621680051514 (TyFun c6989586621680051515 (TyFun d6989586621680051516 (TyFun e6989586621680051517 (TyFun f6989586621680051518 (TyFun g6989586621680051519 h6989586621680051520 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621680051513] -> [b6989586621680051514] -> [c6989586621680051515] -> [d6989586621680051516] -> [e6989586621680051517] -> [f6989586621680051518] -> TyFun [g6989586621680051519] [h6989586621680051520] -> *) (ZipWith7Sym7 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520) # | |
| type Apply [g6989586621680051519] [h6989586621680051520] (ZipWith7Sym7 a6989586621680051513 b6989586621680051514 c6989586621680051515 d6989586621680051516 e6989586621680051517 f6989586621680051518 g6989586621680051519 h6989586621680051520 l6 l5 l4 l3 l2 l1 l0) l7 # | |
type ZipWith7Sym8 t t t t t t t t = ZipWith7 t t t t t t t t #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796293 (TyFun a6989586621679796293 Bool -> Type) -> Type) (TyFun [a6989586621679796293] [a6989586621679796293] -> Type) -> *) (NubBySym0 a6989586621679796293) # | |
| type Apply (TyFun a6989586621679796293 (TyFun a6989586621679796293 Bool -> Type) -> Type) (TyFun [a6989586621679796293] [a6989586621679796293] -> Type) (NubBySym0 a6989586621679796293) l0 # | |
Instances
data UnionBySym0 l #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679796291 (TyFun a6989586621679796291 Bool -> Type) -> Type) (TyFun [a6989586621679796291] (TyFun [a6989586621679796291] [a6989586621679796291] -> Type) -> Type) -> *) (UnionBySym0 a6989586621679796291) # | |
| type Apply (TyFun a6989586621679796291 (TyFun a6989586621679796291 Bool -> Type) -> Type) (TyFun [a6989586621679796291] (TyFun [a6989586621679796291] [a6989586621679796291] -> Type) -> Type) (UnionBySym0 a6989586621679796291) l0 # | |
data UnionBySym1 l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796291 (TyFun a6989586621679796291 Bool -> Type) -> Type) -> TyFun [a6989586621679796291] (TyFun [a6989586621679796291] [a6989586621679796291] -> Type) -> *) (UnionBySym1 a6989586621679796291) # | |
| type Apply [a6989586621679796291] (TyFun [a6989586621679796291] [a6989586621679796291] -> Type) (UnionBySym1 a6989586621679796291 l0) l1 # | |
data UnionBySym2 l l l #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679796291 (TyFun a6989586621679796291 Bool -> Type) -> Type) -> [a6989586621679796291] -> TyFun [a6989586621679796291] [a6989586621679796291] -> *) (UnionBySym2 a6989586621679796291) # | |
| type Apply [a6989586621679796291] [a6989586621679796291] (UnionBySym2 a6989586621679796291 l1 l0) l2 # | |
type UnionBySym3 t t t = UnionBy t t t #
data GenericLengthSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679796289] i6989586621679796288 -> *) (GenericLengthSym0 a6989586621679796289 i6989586621679796288) # | |
| type Apply [a6989586621679796289] k2 (GenericLengthSym0 a6989586621679796289 k2) l0 # | |
type GenericLengthSym1 t = GenericLength t #
data GenericTakeSym0 l #
Instances
| SuppressUnusedWarnings (TyFun i6989586621680051511 (TyFun [a6989586621680051512] [a6989586621680051512] -> Type) -> *) (GenericTakeSym0 i6989586621680051511 a6989586621680051512) # | |
| type Apply i6989586621680051511 (TyFun [a6989586621680051512] [a6989586621680051512] -> Type) (GenericTakeSym0 i6989586621680051511 a6989586621680051512) l0 # | |
data GenericTakeSym1 l l #
Instances
| SuppressUnusedWarnings (i6989586621680051511 -> TyFun [a6989586621680051512] [a6989586621680051512] -> *) (GenericTakeSym1 a6989586621680051512 i6989586621680051511) # | |
| type Apply [a6989586621680051512] [a6989586621680051512] (GenericTakeSym1 a6989586621680051512 i6989586621680051511 l0) l1 # | |
type GenericTakeSym2 t t = GenericTake t t #
data GenericDropSym0 l #
Instances
| SuppressUnusedWarnings (TyFun i6989586621680051509 (TyFun [a6989586621680051510] [a6989586621680051510] -> Type) -> *) (GenericDropSym0 i6989586621680051509 a6989586621680051510) # | |
| type Apply i6989586621680051509 (TyFun [a6989586621680051510] [a6989586621680051510] -> Type) (GenericDropSym0 i6989586621680051509 a6989586621680051510) l0 # | |
data GenericDropSym1 l l #
Instances
| SuppressUnusedWarnings (i6989586621680051509 -> TyFun [a6989586621680051510] [a6989586621680051510] -> *) (GenericDropSym1 a6989586621680051510 i6989586621680051509) # | |
| type Apply [a6989586621680051510] [a6989586621680051510] (GenericDropSym1 a6989586621680051510 i6989586621680051509 l0) l1 # | |
type GenericDropSym2 t t = GenericDrop t t #
data GenericSplitAtSym0 l #
Instances
| SuppressUnusedWarnings (TyFun i6989586621680051507 (TyFun [a6989586621680051508] ([a6989586621680051508], [a6989586621680051508]) -> Type) -> *) (GenericSplitAtSym0 i6989586621680051507 a6989586621680051508) # | |
| type Apply i6989586621680051507 (TyFun [a6989586621680051508] ([a6989586621680051508], [a6989586621680051508]) -> Type) (GenericSplitAtSym0 i6989586621680051507 a6989586621680051508) l0 # | |
data GenericSplitAtSym1 l l #
Instances
| SuppressUnusedWarnings (i6989586621680051507 -> TyFun [a6989586621680051508] ([a6989586621680051508], [a6989586621680051508]) -> *) (GenericSplitAtSym1 a6989586621680051508 i6989586621680051507) # | |
| type Apply [a6989586621680051508] ([a6989586621680051508], [a6989586621680051508]) (GenericSplitAtSym1 a6989586621680051508 i6989586621680051507 l0) l1 # | |
type GenericSplitAtSym2 t t = GenericSplitAt t t #
data GenericIndexSym0 l #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621680051506] (TyFun i6989586621680051505 a6989586621680051506 -> Type) -> *) (GenericIndexSym0 i6989586621680051505 a6989586621680051506) # | |
| type Apply [a6989586621680051506] (TyFun i6989586621680051505 a6989586621680051506 -> Type) (GenericIndexSym0 i6989586621680051505 a6989586621680051506) l0 # | |
data GenericIndexSym1 l l #
Instances
| SuppressUnusedWarnings ([a6989586621680051506] -> TyFun i6989586621680051505 a6989586621680051506 -> *) (GenericIndexSym1 i6989586621680051505 a6989586621680051506) # | |
| type Apply i6989586621680051505 a6989586621680051506 (GenericIndexSym1 i6989586621680051505 a6989586621680051506 l0) l1 # | |
type GenericIndexSym2 t t = GenericIndex t t #
data GenericReplicateSym0 l #
Instances
| SuppressUnusedWarnings (TyFun i6989586621680051503 (TyFun a6989586621680051504 [a6989586621680051504] -> Type) -> *) (GenericReplicateSym0 i6989586621680051503 a6989586621680051504) # | |
| type Apply i6989586621680051503 (TyFun a6989586621680051504 [a6989586621680051504] -> Type) (GenericReplicateSym0 i6989586621680051503 a6989586621680051504) l0 # | |
data GenericReplicateSym1 l l #
Instances
| SuppressUnusedWarnings (i6989586621680051503 -> TyFun a6989586621680051504 [a6989586621680051504] -> *) (GenericReplicateSym1 a6989586621680051504 i6989586621680051503) # | |
| type Apply a6989586621680051504 [a6989586621680051504] (GenericReplicateSym1 a6989586621680051504 i6989586621680051503 l0) l1 # | |
type GenericReplicateSym2 t t = GenericReplicate t t #