| Copyright | (C) 2013-2014 Richard Eisenberg Jan Stolarek |
|---|---|
| License | BSD-style (see LICENSE) |
| Maintainer | Richard Eisenberg (rae@cs.brynmawr.edu) |
| Stability | experimental |
| Portability | non-portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Data.Singletons.Prelude.List
Contents
Description
Defines functions and datatypes relating to the singleton for '[]',
including a singletons version of a few of the definitions in Data.List.
Because many of these definitions are produced by Template Haskell,
it is not possible to create proper Haddock documentation. Please look
up the corresponding operation in Data.List. Also, please excuse
the apparent repeated variable names. This is due to an interaction
between Template Haskell and Haddock.
- data family Sing (a :: k)
- type SList = (Sing :: [a] -> Type)
- type family (a :: [a]) :++ (a :: [a]) :: [a] where ...
- (%:++) :: forall (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply (:++$) t) t :: [a])
- type family Head (a :: [a]) :: a where ...
- sHead :: forall (t :: [a]). Sing t -> Sing (Apply HeadSym0 t :: a)
- type family Last (a :: [a]) :: a where ...
- sLast :: forall (t :: [a]). Sing t -> Sing (Apply LastSym0 t :: a)
- type family Tail (a :: [a]) :: [a] where ...
- sTail :: forall (t :: [a]). Sing t -> Sing (Apply TailSym0 t :: [a])
- type family Init (a :: [a]) :: [a] where ...
- sInit :: forall (t :: [a]). Sing t -> Sing (Apply InitSym0 t :: [a])
- type family Null (a :: [a]) :: Bool where ...
- sNull :: forall (t :: [a]). Sing t -> Sing (Apply NullSym0 t :: Bool)
- type family Length (a :: [a]) :: Nat where ...
- sLength :: forall (t :: [a]). Sing t -> Sing (Apply LengthSym0 t :: Nat)
- type family Map (a :: TyFun a b -> Type) (a :: [a]) :: [b] where ...
- sMap :: forall (t :: TyFun a b -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MapSym0 t) t :: [b])
- type family Reverse (a :: [a]) :: [a] where ...
- sReverse :: forall (t :: [a]). Sing t -> Sing (Apply ReverseSym0 t :: [a])
- type family Intersperse (a :: a) (a :: [a]) :: [a] where ...
- sIntersperse :: forall (t :: a) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply IntersperseSym0 t) t :: [a])
- type family Intercalate (a :: [a]) (a :: [[a]]) :: [a] where ...
- sIntercalate :: forall (t :: [a]) (t :: [[a]]). Sing t -> Sing t -> Sing (Apply (Apply IntercalateSym0 t) t :: [a])
- type family Transpose (a :: [[a]]) :: [[a]] where ...
- sTranspose :: forall (t :: [[a]]). Sing t -> Sing (Apply TransposeSym0 t :: [[a]])
- type family Subsequences (a :: [a]) :: [[a]] where ...
- sSubsequences :: forall (t :: [a]). Sing t -> Sing (Apply SubsequencesSym0 t :: [[a]])
- type family Permutations (a :: [a]) :: [[a]] where ...
- sPermutations :: forall (t :: [a]). Sing t -> Sing (Apply PermutationsSym0 t :: [[a]])
- type family Foldl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
- sFoldl :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldlSym0 t) t) t :: b)
- type family Foldl' (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
- sFoldl' :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply Foldl'Sym0 t) t) t :: b)
- type family Foldl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
- sFoldl1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldl1Sym0 t) t :: a)
- type family Foldl1' (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
- sFoldl1' :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldl1'Sym0 t) t :: a)
- type family Foldr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ...
- sFoldr :: forall (t :: TyFun a (TyFun b b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldrSym0 t) t) t :: b)
- type family Foldr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ...
- sFoldr1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldr1Sym0 t) t :: a)
- type family Concat (a :: [[a]]) :: [a] where ...
- sConcat :: forall (t :: [[a]]). Sing t -> Sing (Apply ConcatSym0 t :: [a])
- type family ConcatMap (a :: TyFun a [b] -> Type) (a :: [a]) :: [b] where ...
- sConcatMap :: forall (t :: TyFun a [b] -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply ConcatMapSym0 t) t :: [b])
- type family And (a :: [Bool]) :: Bool where ...
- sAnd :: forall (t :: [Bool]). Sing t -> Sing (Apply AndSym0 t :: Bool)
- type family Or (a :: [Bool]) :: Bool where ...
- sOr :: forall (t :: [Bool]). Sing t -> Sing (Apply OrSym0 t :: Bool)
- type family Any_ (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ...
- sAny_ :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Any_Sym0 t) t :: Bool)
- type family All (a :: TyFun a Bool -> Type) (a :: [a]) :: Bool where ...
- sAll :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply AllSym0 t) t :: Bool)
- type family Sum (a :: [a]) :: a where ...
- sSum :: forall (t :: [a]). SNum a => Sing t -> Sing (Apply SumSym0 t :: a)
- type family Product (a :: [a]) :: a where ...
- sProduct :: forall (t :: [a]). SNum a => Sing t -> Sing (Apply ProductSym0 t :: a)
- type family Maximum (a :: [a]) :: a where ...
- sMaximum :: forall (t :: [a]). SOrd a => Sing t -> Sing (Apply MaximumSym0 t :: a)
- type family Minimum (a :: [a]) :: a where ...
- sMinimum :: forall (t :: [a]). SOrd a => Sing t -> Sing (Apply MinimumSym0 t :: a)
- any_ :: (a -> Bool) -> [a] -> Bool
- type family Scanl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ...
- sScanl :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ScanlSym0 t) t) t :: [b])
- type family Scanl1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ...
- sScanl1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Scanl1Sym0 t) t :: [a])
- type family Scanr (a :: TyFun a (TyFun b b -> Type) -> Type) (a :: b) (a :: [a]) :: [b] where ...
- sScanr :: forall (t :: TyFun a (TyFun b b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ScanrSym0 t) t) t :: [b])
- type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ...
- sScanr1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Scanr1Sym0 t) t :: [a])
- type family MapAccumL (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ...
- sMapAccumL :: forall (t :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (t :: acc) (t :: [x]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply MapAccumLSym0 t) t) t :: (acc, [y]))
- type family MapAccumR (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ...
- sMapAccumR :: forall (t :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (t :: acc) (t :: [x]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply MapAccumRSym0 t) t) t :: (acc, [y]))
- type family Replicate (a :: Nat) (a :: a) :: [a] where ...
- sReplicate :: forall (t :: Nat) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply ReplicateSym0 t) t :: [a])
- type family Unfoldr (a :: TyFun b (Maybe (a, b)) -> Type) (a :: b) :: [a] where ...
- sUnfoldr :: forall (t :: TyFun b (Maybe (a, b)) -> Type) (t :: b). Sing t -> Sing t -> Sing (Apply (Apply UnfoldrSym0 t) t :: [a])
- type family Take (a :: Nat) (a :: [a]) :: [a] where ...
- sTake :: forall (t :: Nat) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply TakeSym0 t) t :: [a])
- type family Drop (a :: Nat) (a :: [a]) :: [a] where ...
- sDrop :: forall (t :: Nat) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply DropSym0 t) t :: [a])
- type family SplitAt (a :: Nat) (a :: [a]) :: ([a], [a]) where ...
- sSplitAt :: forall (t :: Nat) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SplitAtSym0 t) t :: ([a], [a]))
- type family TakeWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- sTakeWhile :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply TakeWhileSym0 t) t :: [a])
- type family DropWhile (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- sDropWhile :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply DropWhileSym0 t) t :: [a])
- type family DropWhileEnd (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- sDropWhileEnd :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply DropWhileEndSym0 t) t :: [a])
- type family Span (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
- sSpan :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SpanSym0 t) t :: ([a], [a]))
- type family Break (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
- sBreak :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply BreakSym0 t) t :: ([a], [a]))
- type family Group (a :: [a]) :: [[a]] where ...
- sGroup :: forall (t :: [a]). SEq a => Sing t -> Sing (Apply GroupSym0 t :: [[a]])
- type family Inits (a :: [a]) :: [[a]] where ...
- sInits :: forall (t :: [a]). Sing t -> Sing (Apply InitsSym0 t :: [[a]])
- type family Tails (a :: [a]) :: [[a]] where ...
- sTails :: forall (t :: [a]). Sing t -> Sing (Apply TailsSym0 t :: [[a]])
- type family IsPrefixOf (a :: [a]) (a :: [a]) :: Bool where ...
- sIsPrefixOf :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IsPrefixOfSym0 t) t :: Bool)
- type family IsSuffixOf (a :: [a]) (a :: [a]) :: Bool where ...
- sIsSuffixOf :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IsSuffixOfSym0 t) t :: Bool)
- type family IsInfixOf (a :: [a]) (a :: [a]) :: Bool where ...
- sIsInfixOf :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IsInfixOfSym0 t) t :: Bool)
- type family Elem (a :: a) (a :: [a]) :: Bool where ...
- sElem :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply ElemSym0 t) t :: Bool)
- type family NotElem (a :: a) (a :: [a]) :: Bool where ...
- sNotElem :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply NotElemSym0 t) t :: Bool)
- type family Lookup (a :: a) (a :: [(a, b)]) :: Maybe b where ...
- sLookup :: forall (t :: a) (t :: [(a, b)]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply LookupSym0 t) t :: Maybe b)
- type family Find (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe a where ...
- sFind :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FindSym0 t) t :: Maybe a)
- type family Filter (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ...
- sFilter :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FilterSym0 t) t :: [a])
- type family Partition (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ...
- sPartition :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply PartitionSym0 t) t :: ([a], [a]))
- type family (a :: [a]) :!! (a :: Nat) :: a where ...
- (%:!!) :: forall (t :: [a]) (t :: Nat). Sing t -> Sing t -> Sing (Apply (Apply (:!!$) t) t :: a)
- type family ElemIndex (a :: a) (a :: [a]) :: Maybe Nat where ...
- sElemIndex :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply ElemIndexSym0 t) t :: Maybe Nat)
- type family ElemIndices (a :: a) (a :: [a]) :: [Nat] where ...
- sElemIndices :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply ElemIndicesSym0 t) t :: [Nat])
- type family FindIndex (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe Nat where ...
- sFindIndex :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FindIndexSym0 t) t :: Maybe Nat)
- type family FindIndices (a :: TyFun a Bool -> Type) (a :: [a]) :: [Nat] where ...
- sFindIndices :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FindIndicesSym0 t) t :: [Nat])
- type family Zip (a :: [a]) (a :: [b]) :: [(a, b)] where ...
- sZip :: forall (t :: [a]) (t :: [b]). Sing t -> Sing t -> Sing (Apply (Apply ZipSym0 t) t :: [(a, b)])
- type family Zip3 (a :: [a]) (a :: [b]) (a :: [c]) :: [(a, b, c)] where ...
- sZip3 :: forall (t :: [a]) (t :: [b]) (t :: [c]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply Zip3Sym0 t) t) t :: [(a, b, c)])
- type family ZipWith (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: [a]) (a :: [b]) :: [c] where ...
- sZipWith :: forall (t :: TyFun a (TyFun b c -> Type) -> Type) (t :: [a]) (t :: [b]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ZipWithSym0 t) t) t :: [c])
- type family ZipWith3 (a :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) :: [d] where ...
- sZipWith3 :: forall (t :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (t :: [a]) (t :: [b]) (t :: [c]). Sing t -> Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (Apply ZipWith3Sym0 t) t) t) t :: [d])
- type family Unzip (a :: [(a, b)]) :: ([a], [b]) where ...
- sUnzip :: forall (t :: [(a, b)]). Sing t -> Sing (Apply UnzipSym0 t :: ([a], [b]))
- type family Unzip3 (a :: [(a, b, c)]) :: ([a], [b], [c]) where ...
- sUnzip3 :: forall (t :: [(a, b, c)]). Sing t -> Sing (Apply Unzip3Sym0 t :: ([a], [b], [c]))
- type family Unzip4 (a :: [(a, b, c, d)]) :: ([a], [b], [c], [d]) where ...
- sUnzip4 :: forall (t :: [(a, b, c, d)]). Sing t -> Sing (Apply Unzip4Sym0 t :: ([a], [b], [c], [d]))
- type family Unzip5 (a :: [(a, b, c, d, e)]) :: ([a], [b], [c], [d], [e]) where ...
- sUnzip5 :: forall (t :: [(a, b, c, d, e)]). Sing t -> Sing (Apply Unzip5Sym0 t :: ([a], [b], [c], [d], [e]))
- type family Unzip6 (a :: [(a, b, c, d, e, f)]) :: ([a], [b], [c], [d], [e], [f]) where ...
- sUnzip6 :: forall (t :: [(a, b, c, d, e, f)]). Sing t -> Sing (Apply Unzip6Sym0 t :: ([a], [b], [c], [d], [e], [f]))
- type family Unzip7 (a :: [(a, b, c, d, e, f, g)]) :: ([a], [b], [c], [d], [e], [f], [g]) where ...
- sUnzip7 :: forall (t :: [(a, b, c, d, e, f, g)]). Sing t -> Sing (Apply Unzip7Sym0 t :: ([a], [b], [c], [d], [e], [f], [g]))
- type family Nub (a :: [a]) :: [a] where ...
- sNub :: forall (t :: [a]). SEq a => Sing t -> Sing (Apply NubSym0 t :: [a])
- type family Delete (a :: a) (a :: [a]) :: [a] where ...
- sDelete :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply DeleteSym0 t) t :: [a])
- type family (a :: [a]) :\\ (a :: [a]) :: [a] where ...
- (%:\\) :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply (:\\$) t) t :: [a])
- type family Union (a :: [a]) (a :: [a]) :: [a] where ...
- sUnion :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply UnionSym0 t) t :: [a])
- type family Intersect (a :: [a]) (a :: [a]) :: [a] where ...
- sIntersect :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IntersectSym0 t) t :: [a])
- type family Insert (a :: a) (a :: [a]) :: [a] where ...
- sInsert :: forall (t :: a) (t :: [a]). SOrd a => Sing t -> Sing t -> Sing (Apply (Apply InsertSym0 t) t :: [a])
- type family Sort (a :: [a]) :: [a] where ...
- sSort :: forall (t :: [a]). SOrd a => Sing t -> Sing (Apply SortSym0 t :: [a])
- type family NubBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [a] where ...
- sNubBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply NubBySym0 t) t :: [a])
- type family DeleteBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
- sDeleteBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: a) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply DeleteBySym0 t) t) t :: [a])
- type family DeleteFirstsBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- sDeleteFirstsBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply DeleteFirstsBySym0 t) t) t :: [a])
- type family UnionBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- sUnionBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply UnionBySym0 t) t) t :: [a])
- type family IntersectBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- sIntersectBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply IntersectBySym0 t) t) t :: [a])
- type family GroupBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [[a]] where ...
- sGroupBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply GroupBySym0 t) t :: [[a]])
- type family SortBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: [a] where ...
- sSortBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SortBySym0 t) t :: [a])
- type family InsertBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
- sInsertBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: a) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply InsertBySym0 t) t) t :: [a])
- type family MaximumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
- sMaximumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MaximumBySym0 t) t :: a)
- type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
- sMinimumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MinimumBySym0 t) t :: a)
- type family GenericLength (a :: [a]) :: i where ...
- sGenericLength :: forall (t :: [a]). SNum i => Sing t -> Sing (Apply GenericLengthSym0 t :: i)
- type NilSym0 = '[]
- data (:$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type))
- data (l :: a3530822107858468865) :$$ (l :: TyFun [a3530822107858468865] [a3530822107858468865])
- type (:$$$) (t :: a3530822107858468865) (t :: [a3530822107858468865]) = (:) t t
- type (:++$$$) (t :: [a6989586621679292514]) (t :: [a6989586621679292514]) = (:++) t t
- data (l :: [a6989586621679292514]) :++$$ (l :: TyFun [a6989586621679292514] [a6989586621679292514])
- data (:++$) (l :: TyFun [a6989586621679292514] (TyFun [a6989586621679292514] [a6989586621679292514] -> Type))
- data HeadSym0 (l :: TyFun [a6989586621679475663] a6989586621679475663)
- type HeadSym1 (t :: [a6989586621679475663]) = Head t
- data LastSym0 (l :: TyFun [a6989586621679475662] a6989586621679475662)
- type LastSym1 (t :: [a6989586621679475662]) = Last t
- data TailSym0 (l :: TyFun [a6989586621679475661] [a6989586621679475661])
- type TailSym1 (t :: [a6989586621679475661]) = Tail t
- data InitSym0 (l :: TyFun [a6989586621679475660] [a6989586621679475660])
- type InitSym1 (t :: [a6989586621679475660]) = Init t
- data NullSym0 (l :: TyFun [a6989586621679475659] Bool)
- type NullSym1 (t :: [a6989586621679475659]) = Null t
- data LengthSym0 (l :: TyFun [a6989586621679475546] Nat)
- type LengthSym1 (t :: [a6989586621679475546]) = Length t
- data MapSym0 (l :: TyFun (TyFun a6989586621679292515 b6989586621679292516 -> Type) (TyFun [a6989586621679292515] [b6989586621679292516] -> Type))
- data MapSym1 (l :: TyFun a6989586621679292515 b6989586621679292516 -> Type) (l :: TyFun [a6989586621679292515] [b6989586621679292516])
- type MapSym2 (t :: TyFun a6989586621679292515 b6989586621679292516 -> Type) (t :: [a6989586621679292515]) = Map t t
- data ReverseSym0 (l :: TyFun [a6989586621679475658] [a6989586621679475658])
- type ReverseSym1 (t :: [a6989586621679475658]) = Reverse t
- data IntersperseSym0 (l :: TyFun a6989586621679475657 (TyFun [a6989586621679475657] [a6989586621679475657] -> Type))
- data IntersperseSym1 (l :: a6989586621679475657) (l :: TyFun [a6989586621679475657] [a6989586621679475657])
- type IntersperseSym2 (t :: a6989586621679475657) (t :: [a6989586621679475657]) = Intersperse t t
- data IntercalateSym0 (l :: TyFun [a6989586621679475656] (TyFun [[a6989586621679475656]] [a6989586621679475656] -> Type))
- data IntercalateSym1 (l :: [a6989586621679475656]) (l :: TyFun [[a6989586621679475656]] [a6989586621679475656])
- type IntercalateSym2 (t :: [a6989586621679475656]) (t :: [[a6989586621679475656]]) = Intercalate t t
- data TransposeSym0 (l :: TyFun [[a6989586621679475544]] [[a6989586621679475544]])
- type TransposeSym1 (t :: [[a6989586621679475544]]) = Transpose t
- data SubsequencesSym0 (l :: TyFun [a6989586621679475655] [[a6989586621679475655]])
- type SubsequencesSym1 (t :: [a6989586621679475655]) = Subsequences t
- data PermutationsSym0 (l :: TyFun [a6989586621679475652] [[a6989586621679475652]])
- type PermutationsSym1 (t :: [a6989586621679475652]) = Permutations t
- data FoldlSym0 (l :: TyFun (TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> Type))
- data FoldlSym1 (l :: TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (l :: TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type))
- data FoldlSym2 (l :: TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (l :: b6989586621679252328) (l :: TyFun [a6989586621679252327] b6989586621679252328)
- type FoldlSym3 (t :: TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (t :: b6989586621679252328) (t :: [a6989586621679252327]) = Foldl t t t
- data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (TyFun b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type) -> Type))
- data Foldl'Sym1 (l :: TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (l :: TyFun b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type))
- data Foldl'Sym2 (l :: TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (l :: b6989586621679475651) (l :: TyFun [a6989586621679475650] b6989586621679475651)
- type Foldl'Sym3 (t :: TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (t :: b6989586621679475651) (t :: [a6989586621679475650]) = Foldl' t t t
- data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) (TyFun [a6989586621679475649] a6989586621679475649 -> Type))
- data Foldl1Sym1 (l :: TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) (l :: TyFun [a6989586621679475649] a6989586621679475649)
- type Foldl1Sym2 (t :: TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) (t :: [a6989586621679475649]) = Foldl1 t t
- data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) (TyFun [a6989586621679475648] a6989586621679475648 -> Type))
- data Foldl1'Sym1 (l :: TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) (l :: TyFun [a6989586621679475648] a6989586621679475648)
- type Foldl1'Sym2 (t :: TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) (t :: [a6989586621679475648]) = Foldl1' t t
- data FoldrSym0 (l :: TyFun (TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (TyFun b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type) -> Type))
- data FoldrSym1 (l :: TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (l :: TyFun b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type))
- data FoldrSym2 (l :: TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (l :: b6989586621679292518) (l :: TyFun [a6989586621679292517] b6989586621679292518)
- type FoldrSym3 (t :: TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (t :: b6989586621679292518) (t :: [a6989586621679292517]) = Foldr t t t
- data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) (TyFun [a6989586621679475647] a6989586621679475647 -> Type))
- data Foldr1Sym1 (l :: TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) (l :: TyFun [a6989586621679475647] a6989586621679475647)
- type Foldr1Sym2 (t :: TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) (t :: [a6989586621679475647]) = Foldr1 t t
- data ConcatSym0 (l :: TyFun [[a6989586621679475646]] [a6989586621679475646])
- type ConcatSym1 (t :: [[a6989586621679475646]]) = Concat t
- data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679475644 [b6989586621679475645] -> Type) (TyFun [a6989586621679475644] [b6989586621679475645] -> Type))
- data ConcatMapSym1 (l :: TyFun a6989586621679475644 [b6989586621679475645] -> Type) (l :: TyFun [a6989586621679475644] [b6989586621679475645])
- type ConcatMapSym2 (t :: TyFun a6989586621679475644 [b6989586621679475645] -> Type) (t :: [a6989586621679475644]) = ConcatMap t t
- data AndSym0 (l :: TyFun [Bool] Bool)
- type AndSym1 (t :: [Bool]) = And t
- data OrSym0 (l :: TyFun [Bool] Bool)
- type OrSym1 (t :: [Bool]) = Or t
- data Any_Sym0 (l :: TyFun (TyFun a6989586621679465427 Bool -> Type) (TyFun [a6989586621679465427] Bool -> Type))
- data Any_Sym1 (l :: TyFun a6989586621679465427 Bool -> Type) (l :: TyFun [a6989586621679465427] Bool)
- type Any_Sym2 (t :: TyFun a6989586621679465427 Bool -> Type) (t :: [a6989586621679465427]) = Any_ t t
- data AllSym0 (l :: TyFun (TyFun a6989586621679475643 Bool -> Type) (TyFun [a6989586621679475643] Bool -> Type))
- data AllSym1 (l :: TyFun a6989586621679475643 Bool -> Type) (l :: TyFun [a6989586621679475643] Bool)
- type AllSym2 (t :: TyFun a6989586621679475643 Bool -> Type) (t :: [a6989586621679475643]) = All t t
- data SumSym0 (l :: TyFun [a6989586621679475548] a6989586621679475548)
- type SumSym1 (t :: [a6989586621679475548]) = Sum t
- data ProductSym0 (l :: TyFun [a6989586621679475547] a6989586621679475547)
- type ProductSym1 (t :: [a6989586621679475547]) = Product t
- data MaximumSym0 (l :: TyFun [a6989586621679475557] a6989586621679475557)
- type MaximumSym1 (t :: [a6989586621679475557]) = Maximum t
- data MinimumSym0 (l :: TyFun [a6989586621679475556] a6989586621679475556)
- type MinimumSym1 (t :: [a6989586621679475556]) = Minimum t
- data ScanlSym0 (l :: TyFun (TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (TyFun b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type) -> Type))
- data ScanlSym1 (l :: TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (l :: TyFun b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type))
- data ScanlSym2 (l :: TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (l :: b6989586621679475641) (l :: TyFun [a6989586621679475642] [b6989586621679475641])
- type ScanlSym3 (t :: TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (t :: b6989586621679475641) (t :: [a6989586621679475642]) = Scanl t t t
- data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) (TyFun [a6989586621679475640] [a6989586621679475640] -> Type))
- data Scanl1Sym1 (l :: TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) (l :: TyFun [a6989586621679475640] [a6989586621679475640])
- type Scanl1Sym2 (t :: TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) (t :: [a6989586621679475640]) = Scanl1 t t
- data ScanrSym0 (l :: TyFun (TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (TyFun b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type) -> Type))
- data ScanrSym1 (l :: TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (l :: TyFun b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type))
- data ScanrSym2 (l :: TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (l :: b6989586621679475639) (l :: TyFun [a6989586621679475638] [b6989586621679475639])
- type ScanrSym3 (t :: TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (t :: b6989586621679475639) (t :: [a6989586621679475638]) = Scanr t t t
- data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) (TyFun [a6989586621679475637] [a6989586621679475637] -> Type))
- data Scanr1Sym1 (l :: TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) (l :: TyFun [a6989586621679475637] [a6989586621679475637])
- type Scanr1Sym2 (t :: TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) (t :: [a6989586621679475637]) = Scanr1 t t
- data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (TyFun acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type) -> Type))
- data MapAccumLSym1 (l :: TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (l :: TyFun acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type))
- data MapAccumLSym2 (l :: TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (l :: acc6989586621679475634) (l :: TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]))
- type MapAccumLSym3 (t :: TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (t :: acc6989586621679475634) (t :: [x6989586621679475635]) = MapAccumL t t t
- data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (TyFun acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type) -> Type))
- data MapAccumRSym1 (l :: TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (l :: TyFun acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type))
- data MapAccumRSym2 (l :: TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (l :: acc6989586621679475631) (l :: TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]))
- type MapAccumRSym3 (t :: TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (t :: acc6989586621679475631) (t :: [x6989586621679475632]) = MapAccumR t t t
- data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679475545 [a6989586621679475545] -> Type))
- data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679475545 [a6989586621679475545])
- type ReplicateSym2 (t :: Nat) (t :: a6989586621679475545) = Replicate t t
- data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) (TyFun b6989586621679475629 [a6989586621679475630] -> Type))
- data UnfoldrSym1 (l :: TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) (l :: TyFun b6989586621679475629 [a6989586621679475630])
- type UnfoldrSym2 (t :: TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) (t :: b6989586621679475629) = Unfoldr t t
- data TakeSym0 (l :: TyFun Nat (TyFun [a6989586621679475561] [a6989586621679475561] -> Type))
- data TakeSym1 (l :: Nat) (l :: TyFun [a6989586621679475561] [a6989586621679475561])
- type TakeSym2 (t :: Nat) (t :: [a6989586621679475561]) = Take t t
- data DropSym0 (l :: TyFun Nat (TyFun [a6989586621679475560] [a6989586621679475560] -> Type))
- data DropSym1 (l :: Nat) (l :: TyFun [a6989586621679475560] [a6989586621679475560])
- type DropSym2 (t :: Nat) (t :: [a6989586621679475560]) = Drop t t
- data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679475559] ([a6989586621679475559], [a6989586621679475559]) -> Type))
- data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679475559] ([a6989586621679475559], [a6989586621679475559]))
- type SplitAtSym2 (t :: Nat) (t :: [a6989586621679475559]) = SplitAt t t
- data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679475566 Bool -> Type) (TyFun [a6989586621679475566] [a6989586621679475566] -> Type))
- data TakeWhileSym1 (l :: TyFun a6989586621679475566 Bool -> Type) (l :: TyFun [a6989586621679475566] [a6989586621679475566])
- type TakeWhileSym2 (t :: TyFun a6989586621679475566 Bool -> Type) (t :: [a6989586621679475566]) = TakeWhile t t
- data DropWhileSym0 (l :: TyFun (TyFun a6989586621679475565 Bool -> Type) (TyFun [a6989586621679475565] [a6989586621679475565] -> Type))
- data DropWhileSym1 (l :: TyFun a6989586621679475565 Bool -> Type) (l :: TyFun [a6989586621679475565] [a6989586621679475565])
- type DropWhileSym2 (t :: TyFun a6989586621679475565 Bool -> Type) (t :: [a6989586621679475565]) = DropWhile t t
- data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679475564 Bool -> Type) (TyFun [a6989586621679475564] [a6989586621679475564] -> Type))
- data DropWhileEndSym1 (l :: TyFun a6989586621679475564 Bool -> Type) (l :: TyFun [a6989586621679475564] [a6989586621679475564])
- type DropWhileEndSym2 (t :: TyFun a6989586621679475564 Bool -> Type) (t :: [a6989586621679475564]) = DropWhileEnd t t
- data SpanSym0 (l :: TyFun (TyFun a6989586621679475563 Bool -> Type) (TyFun [a6989586621679475563] ([a6989586621679475563], [a6989586621679475563]) -> Type))
- data SpanSym1 (l :: TyFun a6989586621679475563 Bool -> Type) (l :: TyFun [a6989586621679475563] ([a6989586621679475563], [a6989586621679475563]))
- type SpanSym2 (t :: TyFun a6989586621679475563 Bool -> Type) (t :: [a6989586621679475563]) = Span t t
- data BreakSym0 (l :: TyFun (TyFun a6989586621679475562 Bool -> Type) (TyFun [a6989586621679475562] ([a6989586621679475562], [a6989586621679475562]) -> Type))
- data BreakSym1 (l :: TyFun a6989586621679475562 Bool -> Type) (l :: TyFun [a6989586621679475562] ([a6989586621679475562], [a6989586621679475562]))
- type BreakSym2 (t :: TyFun a6989586621679475562 Bool -> Type) (t :: [a6989586621679475562]) = Break t t
- data GroupSym0 (l :: TyFun [a6989586621679475558] [[a6989586621679475558]])
- type GroupSym1 (t :: [a6989586621679475558]) = Group t
- data InitsSym0 (l :: TyFun [a6989586621679475628] [[a6989586621679475628]])
- type InitsSym1 (t :: [a6989586621679475628]) = Inits t
- data TailsSym0 (l :: TyFun [a6989586621679475627] [[a6989586621679475627]])
- type TailsSym1 (t :: [a6989586621679475627]) = Tails t
- data IsPrefixOfSym0 (l :: TyFun [a6989586621679475626] (TyFun [a6989586621679475626] Bool -> Type))
- data IsPrefixOfSym1 (l :: [a6989586621679475626]) (l :: TyFun [a6989586621679475626] Bool)
- type IsPrefixOfSym2 (t :: [a6989586621679475626]) (t :: [a6989586621679475626]) = IsPrefixOf t t
- data IsSuffixOfSym0 (l :: TyFun [a6989586621679475625] (TyFun [a6989586621679475625] Bool -> Type))
- data IsSuffixOfSym1 (l :: [a6989586621679475625]) (l :: TyFun [a6989586621679475625] Bool)
- type IsSuffixOfSym2 (t :: [a6989586621679475625]) (t :: [a6989586621679475625]) = IsSuffixOf t t
- data IsInfixOfSym0 (l :: TyFun [a6989586621679475624] (TyFun [a6989586621679475624] Bool -> Type))
- data IsInfixOfSym1 (l :: [a6989586621679475624]) (l :: TyFun [a6989586621679475624] Bool)
- type IsInfixOfSym2 (t :: [a6989586621679475624]) (t :: [a6989586621679475624]) = IsInfixOf t t
- data ElemSym0 (l :: TyFun a6989586621679475623 (TyFun [a6989586621679475623] Bool -> Type))
- data ElemSym1 (l :: a6989586621679475623) (l :: TyFun [a6989586621679475623] Bool)
- type ElemSym2 (t :: a6989586621679475623) (t :: [a6989586621679475623]) = Elem t t
- data NotElemSym0 (l :: TyFun a6989586621679475622 (TyFun [a6989586621679475622] Bool -> Type))
- data NotElemSym1 (l :: a6989586621679475622) (l :: TyFun [a6989586621679475622] Bool)
- type NotElemSym2 (t :: a6989586621679475622) (t :: [a6989586621679475622]) = NotElem t t
- data LookupSym0 (l :: TyFun a6989586621679475551 (TyFun [(a6989586621679475551, b6989586621679475552)] (Maybe b6989586621679475552) -> Type))
- data LookupSym1 (l :: a6989586621679475551) (l :: TyFun [(a6989586621679475551, b6989586621679475552)] (Maybe b6989586621679475552))
- type LookupSym2 (t :: a6989586621679475551) (t :: [(a6989586621679475551, b6989586621679475552)]) = Lookup t t
- data FindSym0 (l :: TyFun (TyFun a6989586621679475573 Bool -> Type) (TyFun [a6989586621679475573] (Maybe a6989586621679475573) -> Type))
- data FindSym1 (l :: TyFun a6989586621679475573 Bool -> Type) (l :: TyFun [a6989586621679475573] (Maybe a6989586621679475573))
- type FindSym2 (t :: TyFun a6989586621679475573 Bool -> Type) (t :: [a6989586621679475573]) = Find t t
- data FilterSym0 (l :: TyFun (TyFun a6989586621679475574 Bool -> Type) (TyFun [a6989586621679475574] [a6989586621679475574] -> Type))
- data FilterSym1 (l :: TyFun a6989586621679475574 Bool -> Type) (l :: TyFun [a6989586621679475574] [a6989586621679475574])
- type FilterSym2 (t :: TyFun a6989586621679475574 Bool -> Type) (t :: [a6989586621679475574]) = Filter t t
- data PartitionSym0 (l :: TyFun (TyFun a6989586621679475550 Bool -> Type) (TyFun [a6989586621679475550] ([a6989586621679475550], [a6989586621679475550]) -> Type))
- data PartitionSym1 (l :: TyFun a6989586621679475550 Bool -> Type) (l :: TyFun [a6989586621679475550] ([a6989586621679475550], [a6989586621679475550]))
- type PartitionSym2 (t :: TyFun a6989586621679475550 Bool -> Type) (t :: [a6989586621679475550]) = Partition t t
- data (:!!$) (l :: TyFun [a6989586621679475543] (TyFun Nat a6989586621679475543 -> Type))
- data (l :: [a6989586621679475543]) :!!$$ (l :: TyFun Nat a6989586621679475543)
- type (:!!$$$) (t :: [a6989586621679475543]) (t :: Nat) = (:!!) t t
- data ElemIndexSym0 (l :: TyFun a6989586621679475572 (TyFun [a6989586621679475572] (Maybe Nat) -> Type))
- data ElemIndexSym1 (l :: a6989586621679475572) (l :: TyFun [a6989586621679475572] (Maybe Nat))
- type ElemIndexSym2 (t :: a6989586621679475572) (t :: [a6989586621679475572]) = ElemIndex t t
- data ElemIndicesSym0 (l :: TyFun a6989586621679475571 (TyFun [a6989586621679475571] [Nat] -> Type))
- data ElemIndicesSym1 (l :: a6989586621679475571) (l :: TyFun [a6989586621679475571] [Nat])
- type ElemIndicesSym2 (t :: a6989586621679475571) (t :: [a6989586621679475571]) = ElemIndices t t
- data FindIndexSym0 (l :: TyFun (TyFun a6989586621679475570 Bool -> Type) (TyFun [a6989586621679475570] (Maybe Nat) -> Type))
- data FindIndexSym1 (l :: TyFun a6989586621679475570 Bool -> Type) (l :: TyFun [a6989586621679475570] (Maybe Nat))
- type FindIndexSym2 (t :: TyFun a6989586621679475570 Bool -> Type) (t :: [a6989586621679475570]) = FindIndex t t
- data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679475569 Bool -> Type) (TyFun [a6989586621679475569] [Nat] -> Type))
- data FindIndicesSym1 (l :: TyFun a6989586621679475569 Bool -> Type) (l :: TyFun [a6989586621679475569] [Nat])
- type FindIndicesSym2 (t :: TyFun a6989586621679475569 Bool -> Type) (t :: [a6989586621679475569]) = FindIndices t t
- data ZipSym0 (l :: TyFun [a6989586621679475620] (TyFun [b6989586621679475621] [(a6989586621679475620, b6989586621679475621)] -> Type))
- data ZipSym1 (l :: [a6989586621679475620]) (l :: TyFun [b6989586621679475621] [(a6989586621679475620, b6989586621679475621)])
- type ZipSym2 (t :: [a6989586621679475620]) (t :: [b6989586621679475621]) = Zip t t
- data Zip3Sym0 (l :: TyFun [a6989586621679475617] (TyFun [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type) -> Type))
- data Zip3Sym1 (l :: [a6989586621679475617]) (l :: TyFun [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type))
- data Zip3Sym2 (l :: [a6989586621679475617]) (l :: [b6989586621679475618]) (l :: TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)])
- type Zip3Sym3 (t :: [a6989586621679475617]) (t :: [b6989586621679475618]) (t :: [c6989586621679475619]) = Zip3 t t t
- data ZipWithSym0 (l :: TyFun (TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (TyFun [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type) -> Type))
- data ZipWithSym1 (l :: TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (l :: TyFun [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type))
- data ZipWithSym2 (l :: TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (l :: [a6989586621679475614]) (l :: TyFun [b6989586621679475615] [c6989586621679475616])
- type ZipWithSym3 (t :: TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (t :: [a6989586621679475614]) (t :: [b6989586621679475615]) = ZipWith t t t
- data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (TyFun [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type) -> Type))
- data ZipWith3Sym1 (l :: TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type))
- data ZipWith3Sym2 (l :: TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (l :: [a6989586621679475610]) (l :: TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type))
- data ZipWith3Sym3 (l :: TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (l :: [a6989586621679475610]) (l :: [b6989586621679475611]) (l :: TyFun [c6989586621679475612] [d6989586621679475613])
- type ZipWith3Sym4 (t :: TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (t :: [a6989586621679475610]) (t :: [b6989586621679475611]) (t :: [c6989586621679475612]) = ZipWith3 t t t t
- data UnzipSym0 (l :: TyFun [(a6989586621679475608, b6989586621679475609)] ([a6989586621679475608], [b6989586621679475609]))
- type UnzipSym1 (t :: [(a6989586621679475608, b6989586621679475609)]) = Unzip t
- data Unzip3Sym0 (l :: TyFun [(a6989586621679475605, b6989586621679475606, c6989586621679475607)] ([a6989586621679475605], [b6989586621679475606], [c6989586621679475607]))
- type Unzip3Sym1 (t :: [(a6989586621679475605, b6989586621679475606, c6989586621679475607)]) = Unzip3 t
- data Unzip4Sym0 (l :: TyFun [(a6989586621679475601, b6989586621679475602, c6989586621679475603, d6989586621679475604)] ([a6989586621679475601], [b6989586621679475602], [c6989586621679475603], [d6989586621679475604]))
- type Unzip4Sym1 (t :: [(a6989586621679475601, b6989586621679475602, c6989586621679475603, d6989586621679475604)]) = Unzip4 t
- data Unzip5Sym0 (l :: TyFun [(a6989586621679475596, b6989586621679475597, c6989586621679475598, d6989586621679475599, e6989586621679475600)] ([a6989586621679475596], [b6989586621679475597], [c6989586621679475598], [d6989586621679475599], [e6989586621679475600]))
- type Unzip5Sym1 (t :: [(a6989586621679475596, b6989586621679475597, c6989586621679475598, d6989586621679475599, e6989586621679475600)]) = Unzip5 t
- data Unzip6Sym0 (l :: TyFun [(a6989586621679475590, b6989586621679475591, c6989586621679475592, d6989586621679475593, e6989586621679475594, f6989586621679475595)] ([a6989586621679475590], [b6989586621679475591], [c6989586621679475592], [d6989586621679475593], [e6989586621679475594], [f6989586621679475595]))
- type Unzip6Sym1 (t :: [(a6989586621679475590, b6989586621679475591, c6989586621679475592, d6989586621679475593, e6989586621679475594, f6989586621679475595)]) = Unzip6 t
- data Unzip7Sym0 (l :: TyFun [(a6989586621679475583, b6989586621679475584, c6989586621679475585, d6989586621679475586, e6989586621679475587, f6989586621679475588, g6989586621679475589)] ([a6989586621679475583], [b6989586621679475584], [c6989586621679475585], [d6989586621679475586], [e6989586621679475587], [f6989586621679475588], [g6989586621679475589]))
- type Unzip7Sym1 (t :: [(a6989586621679475583, b6989586621679475584, c6989586621679475585, d6989586621679475586, e6989586621679475587, f6989586621679475588, g6989586621679475589)]) = Unzip7 t
- data NubSym0 (l :: TyFun [a6989586621679475542] [a6989586621679475542])
- type NubSym1 (t :: [a6989586621679475542]) = Nub t
- data DeleteSym0 (l :: TyFun a6989586621679475582 (TyFun [a6989586621679475582] [a6989586621679475582] -> Type))
- data DeleteSym1 (l :: a6989586621679475582) (l :: TyFun [a6989586621679475582] [a6989586621679475582])
- type DeleteSym2 (t :: a6989586621679475582) (t :: [a6989586621679475582]) = Delete t t
- data (:\\$) (l :: TyFun [a6989586621679475581] (TyFun [a6989586621679475581] [a6989586621679475581] -> Type))
- data (l :: [a6989586621679475581]) :\\$$ (l :: TyFun [a6989586621679475581] [a6989586621679475581])
- type (:\\$$$) (t :: [a6989586621679475581]) (t :: [a6989586621679475581]) = (:\\) t t
- data UnionSym0 (l :: TyFun [a6989586621679475538] (TyFun [a6989586621679475538] [a6989586621679475538] -> Type))
- data UnionSym1 (l :: [a6989586621679475538]) (l :: TyFun [a6989586621679475538] [a6989586621679475538])
- type UnionSym2 (t :: [a6989586621679475538]) (t :: [a6989586621679475538]) = Union t t
- data IntersectSym0 (l :: TyFun [a6989586621679475568] (TyFun [a6989586621679475568] [a6989586621679475568] -> Type))
- data IntersectSym1 (l :: [a6989586621679475568]) (l :: TyFun [a6989586621679475568] [a6989586621679475568])
- type IntersectSym2 (t :: [a6989586621679475568]) (t :: [a6989586621679475568]) = Intersect t t
- data InsertSym0 (l :: TyFun a6989586621679475555 (TyFun [a6989586621679475555] [a6989586621679475555] -> Type))
- data InsertSym1 (l :: a6989586621679475555) (l :: TyFun [a6989586621679475555] [a6989586621679475555])
- type InsertSym2 (t :: a6989586621679475555) (t :: [a6989586621679475555]) = Insert t t
- data SortSym0 (l :: TyFun [a6989586621679475554] [a6989586621679475554])
- type SortSym1 (t :: [a6989586621679475554]) = Sort t
- data NubBySym0 (l :: TyFun (TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) (TyFun [a6989586621679475541] [a6989586621679475541] -> Type))
- data NubBySym1 (l :: TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475541] [a6989586621679475541])
- type NubBySym2 (t :: TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) (t :: [a6989586621679475541]) = NubBy t t
- data DeleteBySym0 (l :: TyFun (TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (TyFun a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type) -> Type))
- data DeleteBySym1 (l :: TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (l :: TyFun a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type))
- data DeleteBySym2 (l :: TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (l :: a6989586621679475580) (l :: TyFun [a6989586621679475580] [a6989586621679475580])
- type DeleteBySym3 (t :: TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (t :: a6989586621679475580) (t :: [a6989586621679475580]) = DeleteBy t t t
- data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (TyFun [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type) -> Type))
- data DeleteFirstsBySym1 (l :: TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type))
- data DeleteFirstsBySym2 (l :: TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (l :: [a6989586621679475579]) (l :: TyFun [a6989586621679475579] [a6989586621679475579])
- type DeleteFirstsBySym3 (t :: TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (t :: [a6989586621679475579]) (t :: [a6989586621679475579]) = DeleteFirstsBy t t t
- data UnionBySym0 (l :: TyFun (TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (TyFun [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type) -> Type))
- data UnionBySym1 (l :: TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type))
- data UnionBySym2 (l :: TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (l :: [a6989586621679475539]) (l :: TyFun [a6989586621679475539] [a6989586621679475539])
- type UnionBySym3 (t :: TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (t :: [a6989586621679475539]) (t :: [a6989586621679475539]) = UnionBy t t t
- data IntersectBySym0 (l :: TyFun (TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (TyFun [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type) -> Type))
- data IntersectBySym1 (l :: TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type))
- data IntersectBySym2 (l :: TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (l :: [a6989586621679475567]) (l :: TyFun [a6989586621679475567] [a6989586621679475567])
- type IntersectBySym3 (t :: TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (t :: [a6989586621679475567]) (t :: [a6989586621679475567]) = IntersectBy t t t
- data GroupBySym0 (l :: TyFun (TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) (TyFun [a6989586621679475553] [[a6989586621679475553]] -> Type))
- data GroupBySym1 (l :: TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475553] [[a6989586621679475553]])
- type GroupBySym2 (t :: TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) (t :: [a6989586621679475553]) = GroupBy t t
- data SortBySym0 (l :: TyFun (TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) (TyFun [a6989586621679475578] [a6989586621679475578] -> Type))
- data SortBySym1 (l :: TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679475578] [a6989586621679475578])
- type SortBySym2 (t :: TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) (t :: [a6989586621679475578]) = SortBy t t
- data InsertBySym0 (l :: TyFun (TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (TyFun a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type) -> Type))
- data InsertBySym1 (l :: TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (l :: TyFun a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type))
- data InsertBySym2 (l :: TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (l :: a6989586621679475577) (l :: TyFun [a6989586621679475577] [a6989586621679475577])
- type InsertBySym3 (t :: TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (t :: a6989586621679475577) (t :: [a6989586621679475577]) = InsertBy t t t
- data MaximumBySym0 (l :: TyFun (TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) (TyFun [a6989586621679475576] a6989586621679475576 -> Type))
- data MaximumBySym1 (l :: TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679475576] a6989586621679475576)
- type MaximumBySym2 (t :: TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) (t :: [a6989586621679475576]) = MaximumBy t t
- data MinimumBySym0 (l :: TyFun (TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) (TyFun [a6989586621679475575] a6989586621679475575 -> Type))
- data MinimumBySym1 (l :: TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679475575] a6989586621679475575)
- type MinimumBySym2 (t :: TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) (t :: [a6989586621679475575]) = MinimumBy t t
- data GenericLengthSym0 (l :: TyFun [a6989586621679475537] i6989586621679475536)
- type GenericLengthSym1 (t :: [a6989586621679475537]) = GenericLength t
The singleton for lists
The singleton kind-indexed data family.
Instances
| data Sing Bool # | |
| data Sing Ordering # | |
| data Sing * # | |
| data Sing Nat # | |
| data Sing Symbol # | |
| data Sing () # | |
| data Sing [a] # | |
| data Sing (Maybe a) # | |
| data Sing (NonEmpty a) # | |
| data Sing (Either a b) # | |
| data Sing (a, b) # | |
| data Sing ((~>) k1 k2) # | |
| data Sing (a, b, c) # | |
| data Sing (a, b, c, d) # | |
| data Sing (a, b, c, d, e) # | |
| data Sing (a, b, c, d, e, f) # | |
| data Sing (a, b, c, d, e, f, g) # | |
Though Haddock doesn't show it, the Sing instance above declares
constructors
SNil :: Sing '[] SCons :: Sing (h :: k) -> Sing (t :: [k]) -> Sing (h ': t)
Basic functions
(%:++) :: forall (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply (:++$) t) t :: [a]) infixr 5 #
type family Length (a :: [a]) :: Nat where ... #
Equations
| Length '[] = FromInteger 0 | |
| Length ((:) _z_6989586621679476410 xs) = Apply (Apply (:+$) (FromInteger 1)) (Apply LengthSym0 xs) |
List transformations
sMap :: forall (t :: TyFun a b -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MapSym0 t) t :: [b]) #
type family Intersperse (a :: a) (a :: [a]) :: [a] where ... #
Equations
| Intersperse _z_6989586621679479433 '[] = '[] | |
| Intersperse sep ((:) x xs) = Apply (Apply (:$) x) (Apply (Apply PrependToAllSym0 sep) xs) |
sIntersperse :: forall (t :: a) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply IntersperseSym0 t) t :: [a]) #
type family Intercalate (a :: [a]) (a :: [[a]]) :: [a] where ... #
Equations
| Intercalate xs xss = Apply ConcatSym0 (Apply (Apply IntersperseSym0 xs) xss) |
sIntercalate :: forall (t :: [a]) (t :: [[a]]). Sing t -> Sing t -> Sing (Apply (Apply IntercalateSym0 t) t :: [a]) #
sTranspose :: forall (t :: [[a]]). Sing t -> Sing (Apply TransposeSym0 t :: [[a]]) #
type family Subsequences (a :: [a]) :: [[a]] where ... #
Equations
| Subsequences xs = Apply (Apply (:$) '[]) (Apply NonEmptySubsequencesSym0 xs) |
sSubsequences :: forall (t :: [a]). Sing t -> Sing (Apply SubsequencesSym0 t :: [[a]]) #
type family Permutations (a :: [a]) :: [[a]] where ... #
sPermutations :: forall (t :: [a]). Sing t -> Sing (Apply PermutationsSym0 t :: [[a]]) #
Reducing lists (folds)
sFoldl :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldlSym0 t) t) t :: b) #
sFoldl' :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply Foldl'Sym0 t) t) t :: b) #
sFoldl1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldl1Sym0 t) t :: a) #
sFoldl1' :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldl1'Sym0 t) t :: a) #
sFoldr :: forall (t :: TyFun a (TyFun b b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldrSym0 t) t) t :: b) #
type family Foldr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| Foldr1 _z_6989586621679478657 '[x] = x | |
| Foldr1 f ((:) x ((:) wild_6989586621679476111 wild_6989586621679476113)) = Apply (Apply f x) (Apply (Apply Foldr1Sym0 f) (Let6989586621679478665XsSym4 f x wild_6989586621679476111 wild_6989586621679476113)) | |
| Foldr1 _z_6989586621679478684 '[] = Apply ErrorSym0 "Data.Singletons.List.foldr1: empty list" |
sFoldr1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldr1Sym0 t) t :: a) #
Special folds
sConcatMap :: forall (t :: TyFun a [b] -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply ConcatMapSym0 t) t :: [b]) #
sAny_ :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Any_Sym0 t) t :: Bool) #
sAll :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply AllSym0 t) t :: Bool) #
type family Sum (a :: [a]) :: a where ... #
Equations
| Sum l = Apply (Apply (Let6989586621679476443Sum'Sym1 l) l) (FromInteger 0) |
type family Product (a :: [a]) :: a where ... #
Equations
| Product l = Apply (Apply (Let6989586621679476419ProdSym1 l) l) (FromInteger 1) |
Building lists
Scans
sScanl :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ScanlSym0 t) t) t :: [b]) #
sScanl1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Scanl1Sym0 t) t :: [a]) #
sScanr :: forall (t :: TyFun a (TyFun b b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ScanrSym0 t) t) t :: [b]) #
type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ... #
Equations
| Scanr1 _z_6989586621679478462 '[] = '[] | |
| Scanr1 _z_6989586621679478465 '[x] = Apply (Apply (:$) x) '[] | |
| Scanr1 f ((:) x ((:) wild_6989586621679476119 wild_6989586621679476121)) = Case_6989586621679478511 f x wild_6989586621679476119 wild_6989586621679476121 (Let6989586621679478492Scrutinee_6989586621679476117Sym4 f x wild_6989586621679476119 wild_6989586621679476121) |
sScanr1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Scanr1Sym0 t) t :: [a]) #
Accumulating maps
type family MapAccumL (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ... #
sMapAccumL :: forall (t :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (t :: acc) (t :: [x]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply MapAccumLSym0 t) t) t :: (acc, [y])) #
type family MapAccumR (a :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (a :: acc) (a :: [x]) :: (acc, [y]) where ... #
sMapAccumR :: forall (t :: TyFun acc (TyFun x (acc, y) -> Type) -> Type) (t :: acc) (t :: [x]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply MapAccumRSym0 t) t) t :: (acc, [y])) #
Cyclical lists
type family Replicate (a :: Nat) (a :: a) :: [a] where ... #
Equations
| Replicate n x = Case_6989586621679476403 n x (Let6989586621679476395Scrutinee_6989586621679476203Sym2 n x) |
sReplicate :: forall (t :: Nat) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply ReplicateSym0 t) t :: [a]) #
Unfolding
type family Unfoldr (a :: TyFun b (Maybe (a, b)) -> Type) (a :: b) :: [a] where ... #
Equations
| Unfoldr f b = Case_6989586621679478104 f b (Let6989586621679478096Scrutinee_6989586621679476123Sym2 f b) |
sUnfoldr :: forall (t :: TyFun b (Maybe (a, b)) -> Type) (t :: b). Sing t -> Sing t -> Sing (Apply (Apply UnfoldrSym0 t) t :: [a]) #
Sublists
Extracting sublists
sTake :: forall (t :: Nat) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply TakeSym0 t) t :: [a]) #
sDrop :: forall (t :: Nat) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply DropSym0 t) t :: [a]) #
sSplitAt :: forall (t :: Nat) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SplitAtSym0 t) t :: ([a], [a])) #
sTakeWhile :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply TakeWhileSym0 t) t :: [a]) #
sDropWhile :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply DropWhileSym0 t) t :: [a]) #
type family DropWhileEnd (a :: TyFun a Bool -> Type) (a :: [a]) :: [a] where ... #
sDropWhileEnd :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply DropWhileEndSym0 t) t :: [a]) #
type family Span (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ... #
Equations
| Span _z_6989586621679476734 '[] = Apply (Apply Tuple2Sym0 Let6989586621679476737XsSym0) Let6989586621679476737XsSym0 | |
| Span p ((:) x xs') = Case_6989586621679476767 p x xs' (Let6989586621679476754Scrutinee_6989586621679476183Sym3 p x xs') |
sSpan :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SpanSym0 t) t :: ([a], [a])) #
type family Break (a :: TyFun a Bool -> Type) (a :: [a]) :: ([a], [a]) where ... #
Equations
| Break _z_6989586621679476632 '[] = Apply (Apply Tuple2Sym0 Let6989586621679476635XsSym0) Let6989586621679476635XsSym0 | |
| Break p ((:) x xs') = Case_6989586621679476665 p x xs' (Let6989586621679476652Scrutinee_6989586621679476185Sym3 p x xs') |
sBreak :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply BreakSym0 t) t :: ([a], [a])) #
type family Group (a :: [a]) :: [[a]] where ... #
Equations
| Group xs = Apply (Apply GroupBySym0 (:==$)) xs |
Predicates
type family IsPrefixOf (a :: [a]) (a :: [a]) :: Bool where ... #
Equations
| IsPrefixOf '[] '[] = TrueSym0 | |
| IsPrefixOf '[] ((:) _z_6989586621679478036 _z_6989586621679478039) = TrueSym0 | |
| IsPrefixOf ((:) _z_6989586621679478042 _z_6989586621679478045) '[] = FalseSym0 | |
| IsPrefixOf ((:) x xs) ((:) y ys) = Apply (Apply (:&&$) (Apply (Apply (:==$) x) y)) (Apply (Apply IsPrefixOfSym0 xs) ys) |
sIsPrefixOf :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IsPrefixOfSym0 t) t :: Bool) #
type family IsSuffixOf (a :: [a]) (a :: [a]) :: Bool where ... #
Equations
| IsSuffixOf x y = Apply (Apply IsPrefixOfSym0 (Apply ReverseSym0 x)) (Apply ReverseSym0 y) |
sIsSuffixOf :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IsSuffixOfSym0 t) t :: Bool) #
sIsInfixOf :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IsInfixOfSym0 t) t :: Bool) #
Searching lists
Searching by equality
sElem :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply ElemSym0 t) t :: Bool) #
sNotElem :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply NotElemSym0 t) t :: Bool) #
type family Lookup (a :: a) (a :: [(a, b)]) :: Maybe b where ... #
Equations
| Lookup _key '[] = NothingSym0 | |
| Lookup key ((:) '(x, y) xys) = Case_6989586621679476547 key x y xys (Let6989586621679476528Scrutinee_6989586621679476199Sym4 key x y xys) |
sLookup :: forall (t :: a) (t :: [(a, b)]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply LookupSym0 t) t :: Maybe b) #
Searching with a predicate
type family Find (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe a where ... #
Equations
| Find p a_6989586621679477017 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FilterSym0 p)) a_6989586621679477017 |
sFind :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FindSym0 t) t :: Maybe a) #
sFilter :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FilterSym0 t) t :: [a]) #
sPartition :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply PartitionSym0 t) t :: ([a], [a])) #
Indexing lists
sElemIndex :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply ElemIndexSym0 t) t :: Maybe Nat) #
type family ElemIndices (a :: a) (a :: [a]) :: [Nat] where ... #
Equations
| ElemIndices x a_6989586621679477919 = Apply (Apply FindIndicesSym0 (Apply (:==$) x)) a_6989586621679477919 |
sElemIndices :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply ElemIndicesSym0 t) t :: [Nat]) #
type family FindIndex (a :: TyFun a Bool -> Type) (a :: [a]) :: Maybe Nat where ... #
Equations
| FindIndex p a_6989586621679477932 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FindIndicesSym0 p)) a_6989586621679477932 |
sFindIndex :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FindIndexSym0 t) t :: Maybe Nat) #
sFindIndices :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply FindIndicesSym0 t) t :: [Nat]) #
Zipping and unzipping lists
sZip :: forall (t :: [a]) (t :: [b]). Sing t -> Sing t -> Sing (Apply (Apply ZipSym0 t) t :: [(a, b)]) #
type family Zip3 (a :: [a]) (a :: [b]) (a :: [c]) :: [(a, b, c)] where ... #
Equations
| Zip3 ((:) a as) ((:) b bs) ((:) c cs) = Apply (Apply (:$) (Apply (Apply (Apply Tuple3Sym0 a) b) c)) (Apply (Apply (Apply Zip3Sym0 as) bs) cs) | |
| Zip3 '[] '[] '[] = '[] | |
| Zip3 '[] '[] ((:) _z_6989586621679477768 _z_6989586621679477771) = '[] | |
| Zip3 '[] ((:) _z_6989586621679477774 _z_6989586621679477777) '[] = '[] | |
| Zip3 '[] ((:) _z_6989586621679477780 _z_6989586621679477783) ((:) _z_6989586621679477786 _z_6989586621679477789) = '[] | |
| Zip3 ((:) _z_6989586621679477792 _z_6989586621679477795) '[] '[] = '[] | |
| Zip3 ((:) _z_6989586621679477798 _z_6989586621679477801) '[] ((:) _z_6989586621679477804 _z_6989586621679477807) = '[] | |
| Zip3 ((:) _z_6989586621679477810 _z_6989586621679477813) ((:) _z_6989586621679477816 _z_6989586621679477819) '[] = '[] |
sZip3 :: forall (t :: [a]) (t :: [b]) (t :: [c]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply Zip3Sym0 t) t) t :: [(a, b, c)]) #
type family ZipWith (a :: TyFun a (TyFun b c -> Type) -> Type) (a :: [a]) (a :: [b]) :: [c] where ... #
Equations
| ZipWith f ((:) x xs) ((:) y ys) = Apply (Apply (:$) (Apply (Apply f x) y)) (Apply (Apply (Apply ZipWithSym0 f) xs) ys) | |
| ZipWith _z_6989586621679477726 '[] '[] = '[] | |
| ZipWith _z_6989586621679477729 ((:) _z_6989586621679477732 _z_6989586621679477735) '[] = '[] | |
| ZipWith _z_6989586621679477738 '[] ((:) _z_6989586621679477741 _z_6989586621679477744) = '[] |
sZipWith :: forall (t :: TyFun a (TyFun b c -> Type) -> Type) (t :: [a]) (t :: [b]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ZipWithSym0 t) t) t :: [c]) #
type family ZipWith3 (a :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (a :: [a]) (a :: [b]) (a :: [c]) :: [d] where ... #
Equations
| ZipWith3 z ((:) a as) ((:) b bs) ((:) c cs) = Apply (Apply (:$) (Apply (Apply (Apply z a) b) c)) (Apply (Apply (Apply (Apply ZipWith3Sym0 z) as) bs) cs) | |
| ZipWith3 _z_6989586621679477631 '[] '[] '[] = '[] | |
| ZipWith3 _z_6989586621679477634 '[] '[] ((:) _z_6989586621679477637 _z_6989586621679477640) = '[] | |
| ZipWith3 _z_6989586621679477643 '[] ((:) _z_6989586621679477646 _z_6989586621679477649) '[] = '[] | |
| ZipWith3 _z_6989586621679477652 '[] ((:) _z_6989586621679477655 _z_6989586621679477658) ((:) _z_6989586621679477661 _z_6989586621679477664) = '[] | |
| ZipWith3 _z_6989586621679477667 ((:) _z_6989586621679477670 _z_6989586621679477673) '[] '[] = '[] | |
| ZipWith3 _z_6989586621679477676 ((:) _z_6989586621679477679 _z_6989586621679477682) '[] ((:) _z_6989586621679477685 _z_6989586621679477688) = '[] | |
| ZipWith3 _z_6989586621679477691 ((:) _z_6989586621679477694 _z_6989586621679477697) ((:) _z_6989586621679477700 _z_6989586621679477703) '[] = '[] |
sZipWith3 :: forall (t :: TyFun a (TyFun b (TyFun c d -> Type) -> Type) -> Type) (t :: [a]) (t :: [b]) (t :: [c]). Sing t -> Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (Apply ZipWith3Sym0 t) t) t) t :: [d]) #
sUnzip4 :: forall (t :: [(a, b, c, d)]). Sing t -> Sing (Apply Unzip4Sym0 t :: ([a], [b], [c], [d])) #
sUnzip5 :: forall (t :: [(a, b, c, d, e)]). Sing t -> Sing (Apply Unzip5Sym0 t :: ([a], [b], [c], [d], [e])) #
sUnzip6 :: forall (t :: [(a, b, c, d, e, f)]). Sing t -> Sing (Apply Unzip6Sym0 t :: ([a], [b], [c], [d], [e], [f])) #
type family Unzip7 (a :: [(a, b, c, d, e, f, g)]) :: ([a], [b], [c], [d], [e], [f], [g]) where ... #
sUnzip7 :: forall (t :: [(a, b, c, d, e, f, g)]). Sing t -> Sing (Apply Unzip7Sym0 t :: ([a], [b], [c], [d], [e], [f], [g])) #
Special lists
"Set" operations
sDelete :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply DeleteSym0 t) t :: [a]) #
(%:\\) :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply (:\\$) t) t :: [a]) infix 5 #
sUnion :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply UnionSym0 t) t :: [a]) #
sIntersect :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IntersectSym0 t) t :: [a]) #
Ordered lists
type family Insert (a :: a) (a :: [a]) :: [a] where ... #
Equations
| Insert e ls = Apply (Apply (Apply InsertBySym0 CompareSym0) e) ls |
sInsert :: forall (t :: a) (t :: [a]). SOrd a => Sing t -> Sing t -> Sing (Apply (Apply InsertSym0 t) t :: [a]) #
type family Sort (a :: [a]) :: [a] where ... #
Equations
| Sort a_6989586621679477253 = Apply (Apply SortBySym0 CompareSym0) a_6989586621679477253 |
Generalized functions
The "By" operations
User-supplied equality (replacing an Eq context)
The predicate is assumed to define an equivalence.
sNubBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply NubBySym0 t) t :: [a]) #
type family DeleteBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ... #
sDeleteBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: a) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply DeleteBySym0 t) t) t :: [a]) #
type family DeleteFirstsBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ... #
Equations
| DeleteFirstsBy eq a_6989586621679477322 a_6989586621679477324 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) a_6989586621679477322) a_6989586621679477324 |
sDeleteFirstsBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply DeleteFirstsBySym0 t) t) t :: [a]) #
type family UnionBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ... #
sUnionBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply UnionBySym0 t) t) t :: [a]) #
type family IntersectBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ... #
Equations
| IntersectBy _z_6989586621679477036 '[] '[] = '[] | |
| IntersectBy _z_6989586621679477039 '[] ((:) _z_6989586621679477042 _z_6989586621679477045) = '[] | |
| IntersectBy _z_6989586621679477048 ((:) _z_6989586621679477051 _z_6989586621679477054) '[] = '[] | |
| IntersectBy eq ((:) wild_6989586621679476169 wild_6989586621679476171) ((:) wild_6989586621679476173 wild_6989586621679476175) = Apply (Apply FilterSym0 (Apply (Apply (Apply (Apply (Apply Lambda_6989586621679477113Sym0 eq) wild_6989586621679476169) wild_6989586621679476171) wild_6989586621679476173) wild_6989586621679476175)) (Let6989586621679477062XsSym5 eq wild_6989586621679476169 wild_6989586621679476171 wild_6989586621679476173 wild_6989586621679476175) |
sIntersectBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply IntersectBySym0 t) t) t :: [a]) #
sGroupBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply GroupBySym0 t) t :: [[a]]) #
User-supplied comparison (replacing an Ord context)
The function is assumed to define a total ordering.
sSortBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SortBySym0 t) t :: [a]) #
type family InsertBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ... #
sInsertBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: a) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply InsertBySym0 t) t) t :: [a]) #
type family MaximumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| MaximumBy _z_6989586621679478711 '[] = Apply ErrorSym0 "Data.Singletons.List.maximumBy: empty list" | |
| MaximumBy cmp ((:) wild_6989586621679476155 wild_6989586621679476157) = Apply (Apply Foldl1Sym0 (Let6989586621679478730MaxBySym3 cmp wild_6989586621679476155 wild_6989586621679476157)) (Let6989586621679478717XsSym3 cmp wild_6989586621679476155 wild_6989586621679476157) |
sMaximumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MaximumBySym0 t) t :: a) #
type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| MinimumBy _z_6989586621679478798 '[] = Apply ErrorSym0 "Data.Singletons.List.minimumBy: empty list" | |
| MinimumBy cmp ((:) wild_6989586621679476161 wild_6989586621679476163) = Apply (Apply Foldl1Sym0 (Let6989586621679478817MinBySym3 cmp wild_6989586621679476161 wild_6989586621679476163)) (Let6989586621679478804XsSym3 cmp wild_6989586621679476161 wild_6989586621679476163) |
sMinimumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MinimumBySym0 t) t :: a) #
The "generic" operations
The prefix `generic' indicates an overloaded function that
is a generalized version of a Prelude function.
type family GenericLength (a :: [a]) :: i where ... #
Equations
| GenericLength '[] = FromInteger 0 | |
| GenericLength ((:) _z_6989586621679476257 xs) = Apply (Apply (:+$) (FromInteger 1)) (Apply GenericLengthSym0 xs) |
sGenericLength :: forall (t :: [a]). SNum i => Sing t -> Sing (Apply GenericLengthSym0 t :: i) #
Defunctionalization symbols
data (:$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type)) #
data (l :: [a6989586621679292514]) :++$$ (l :: TyFun [a6989586621679292514] [a6989586621679292514]) #
data (:++$) (l :: TyFun [a6989586621679292514] (TyFun [a6989586621679292514] [a6989586621679292514] -> Type)) #
data LengthSym0 (l :: TyFun [a6989586621679475546] Nat) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475546] Nat -> *) (LengthSym0 a6989586621679475546) # | |
| type Apply [a] Nat (LengthSym0 a) l # | |
type LengthSym1 (t :: [a6989586621679475546]) = Length t #
data MapSym0 (l :: TyFun (TyFun a6989586621679292515 b6989586621679292516 -> Type) (TyFun [a6989586621679292515] [b6989586621679292516] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679292515 b6989586621679292516 -> Type) (TyFun [a6989586621679292515] [b6989586621679292516] -> Type) -> *) (MapSym0 a6989586621679292515 b6989586621679292516) # | |
| type Apply (TyFun a6989586621679292515 b6989586621679292516 -> Type) (TyFun [a6989586621679292515] [b6989586621679292516] -> Type) (MapSym0 a6989586621679292515 b6989586621679292516) l # | |
data MapSym1 (l :: TyFun a6989586621679292515 b6989586621679292516 -> Type) (l :: TyFun [a6989586621679292515] [b6989586621679292516]) #
type MapSym2 (t :: TyFun a6989586621679292515 b6989586621679292516 -> Type) (t :: [a6989586621679292515]) = Map t t #
data ReverseSym0 (l :: TyFun [a6989586621679475658] [a6989586621679475658]) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475658] [a6989586621679475658] -> *) (ReverseSym0 a6989586621679475658) # | |
| type Apply [a] [a] (ReverseSym0 a) l # | |
type ReverseSym1 (t :: [a6989586621679475658]) = Reverse t #
data IntersperseSym0 (l :: TyFun a6989586621679475657 (TyFun [a6989586621679475657] [a6989586621679475657] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679475657 (TyFun [a6989586621679475657] [a6989586621679475657] -> Type) -> *) (IntersperseSym0 a6989586621679475657) # | |
| type Apply a6989586621679475657 (TyFun [a6989586621679475657] [a6989586621679475657] -> Type) (IntersperseSym0 a6989586621679475657) l # | |
data IntersperseSym1 (l :: a6989586621679475657) (l :: TyFun [a6989586621679475657] [a6989586621679475657]) #
Instances
| SuppressUnusedWarnings (a6989586621679475657 -> TyFun [a6989586621679475657] [a6989586621679475657] -> *) (IntersperseSym1 a6989586621679475657) # | |
| type Apply [a] [a] (IntersperseSym1 a l1) l2 # | |
type IntersperseSym2 (t :: a6989586621679475657) (t :: [a6989586621679475657]) = Intersperse t t #
data IntercalateSym0 (l :: TyFun [a6989586621679475656] (TyFun [[a6989586621679475656]] [a6989586621679475656] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475656] (TyFun [[a6989586621679475656]] [a6989586621679475656] -> Type) -> *) (IntercalateSym0 a6989586621679475656) # | |
| type Apply [a6989586621679475656] (TyFun [[a6989586621679475656]] [a6989586621679475656] -> Type) (IntercalateSym0 a6989586621679475656) l # | |
data IntercalateSym1 (l :: [a6989586621679475656]) (l :: TyFun [[a6989586621679475656]] [a6989586621679475656]) #
Instances
| SuppressUnusedWarnings ([a6989586621679475656] -> TyFun [[a6989586621679475656]] [a6989586621679475656] -> *) (IntercalateSym1 a6989586621679475656) # | |
| type Apply [[a]] [a] (IntercalateSym1 a l1) l2 # | |
type IntercalateSym2 (t :: [a6989586621679475656]) (t :: [[a6989586621679475656]]) = Intercalate t t #
data TransposeSym0 (l :: TyFun [[a6989586621679475544]] [[a6989586621679475544]]) #
Instances
| SuppressUnusedWarnings (TyFun [[a6989586621679475544]] [[a6989586621679475544]] -> *) (TransposeSym0 a6989586621679475544) # | |
| type Apply [[a]] [[a]] (TransposeSym0 a) l # | |
type TransposeSym1 (t :: [[a6989586621679475544]]) = Transpose t #
data SubsequencesSym0 (l :: TyFun [a6989586621679475655] [[a6989586621679475655]]) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475655] [[a6989586621679475655]] -> *) (SubsequencesSym0 a6989586621679475655) # | |
| type Apply [a] [[a]] (SubsequencesSym0 a) l # | |
type SubsequencesSym1 (t :: [a6989586621679475655]) = Subsequences t #
data PermutationsSym0 (l :: TyFun [a6989586621679475652] [[a6989586621679475652]]) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475652] [[a6989586621679475652]] -> *) (PermutationsSym0 a6989586621679475652) # | |
| type Apply [a] [[a]] (PermutationsSym0 a) l # | |
type PermutationsSym1 (t :: [a6989586621679475652]) = Permutations t #
data FoldlSym0 (l :: TyFun (TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> Type) -> *) (FoldlSym0 a6989586621679252327 b6989586621679252328) # | |
| type Apply (TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> Type) (FoldlSym0 a6989586621679252327 b6989586621679252328) l # | |
data FoldlSym1 (l :: TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (l :: TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) -> TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> *) (FoldlSym1 a6989586621679252327 b6989586621679252328) # | |
| type Apply b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) (FoldlSym1 a6989586621679252327 b6989586621679252328 l1) l2 # | |
data FoldlSym2 (l :: TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (l :: b6989586621679252328) (l :: TyFun [a6989586621679252327] b6989586621679252328) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) -> b6989586621679252328 -> TyFun [a6989586621679252327] b6989586621679252328 -> *) (FoldlSym2 a6989586621679252327 b6989586621679252328) # | |
| type Apply [a] b (FoldlSym2 a b l1 l2) l3 # | |
type FoldlSym3 (t :: TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (t :: b6989586621679252328) (t :: [a6989586621679252327]) = Foldl t t t #
data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (TyFun b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (TyFun b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type) -> Type) -> *) (Foldl'Sym0 a6989586621679475650 b6989586621679475651) # | |
| type Apply (TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (TyFun b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type) -> Type) (Foldl'Sym0 a6989586621679475650 b6989586621679475651) l # | |
data Foldl'Sym1 (l :: TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (l :: TyFun b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) -> TyFun b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type) -> *) (Foldl'Sym1 a6989586621679475650 b6989586621679475651) # | |
| type Apply b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type) (Foldl'Sym1 a6989586621679475650 b6989586621679475651 l1) l2 # | |
data Foldl'Sym2 (l :: TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (l :: b6989586621679475651) (l :: TyFun [a6989586621679475650] b6989586621679475651) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) -> b6989586621679475651 -> TyFun [a6989586621679475650] b6989586621679475651 -> *) (Foldl'Sym2 a6989586621679475650 b6989586621679475651) # | |
| type Apply [a] b (Foldl'Sym2 a b l1 l2) l3 # | |
type Foldl'Sym3 (t :: TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (t :: b6989586621679475651) (t :: [a6989586621679475650]) = Foldl' t t t #
data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) (TyFun [a6989586621679475649] a6989586621679475649 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) (TyFun [a6989586621679475649] a6989586621679475649 -> Type) -> *) (Foldl1Sym0 a6989586621679475649) # | |
| type Apply (TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) (TyFun [a6989586621679475649] a6989586621679475649 -> Type) (Foldl1Sym0 a6989586621679475649) l # | |
data Foldl1Sym1 (l :: TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) (l :: TyFun [a6989586621679475649] a6989586621679475649) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) -> TyFun [a6989586621679475649] a6989586621679475649 -> *) (Foldl1Sym1 a6989586621679475649) # | |
| type Apply [a] a (Foldl1Sym1 a l1) l2 # | |
type Foldl1Sym2 (t :: TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) (t :: [a6989586621679475649]) = Foldl1 t t #
data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) (TyFun [a6989586621679475648] a6989586621679475648 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) (TyFun [a6989586621679475648] a6989586621679475648 -> Type) -> *) (Foldl1'Sym0 a6989586621679475648) # | |
| type Apply (TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) (TyFun [a6989586621679475648] a6989586621679475648 -> Type) (Foldl1'Sym0 a6989586621679475648) l # | |
data Foldl1'Sym1 (l :: TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) (l :: TyFun [a6989586621679475648] a6989586621679475648) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) -> TyFun [a6989586621679475648] a6989586621679475648 -> *) (Foldl1'Sym1 a6989586621679475648) # | |
| type Apply [a] a (Foldl1'Sym1 a l1) l2 # | |
type Foldl1'Sym2 (t :: TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) (t :: [a6989586621679475648]) = Foldl1' t t #
data FoldrSym0 (l :: TyFun (TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (TyFun b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (TyFun b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type) -> Type) -> *) (FoldrSym0 a6989586621679292517 b6989586621679292518) # | |
| type Apply (TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (TyFun b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type) -> Type) (FoldrSym0 a6989586621679292517 b6989586621679292518) l # | |
data FoldrSym1 (l :: TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (l :: TyFun b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) -> TyFun b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type) -> *) (FoldrSym1 a6989586621679292517 b6989586621679292518) # | |
| type Apply b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type) (FoldrSym1 a6989586621679292517 b6989586621679292518 l1) l2 # | |
data FoldrSym2 (l :: TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (l :: b6989586621679292518) (l :: TyFun [a6989586621679292517] b6989586621679292518) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) -> b6989586621679292518 -> TyFun [a6989586621679292517] b6989586621679292518 -> *) (FoldrSym2 a6989586621679292517 b6989586621679292518) # | |
| type Apply [a] b (FoldrSym2 a b l1 l2) l3 # | |
type FoldrSym3 (t :: TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (t :: b6989586621679292518) (t :: [a6989586621679292517]) = Foldr t t t #
data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) (TyFun [a6989586621679475647] a6989586621679475647 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) (TyFun [a6989586621679475647] a6989586621679475647 -> Type) -> *) (Foldr1Sym0 a6989586621679475647) # | |
| type Apply (TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) (TyFun [a6989586621679475647] a6989586621679475647 -> Type) (Foldr1Sym0 a6989586621679475647) l # | |
data Foldr1Sym1 (l :: TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) (l :: TyFun [a6989586621679475647] a6989586621679475647) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) -> TyFun [a6989586621679475647] a6989586621679475647 -> *) (Foldr1Sym1 a6989586621679475647) # | |
| type Apply [a] a (Foldr1Sym1 a l1) l2 # | |
type Foldr1Sym2 (t :: TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) (t :: [a6989586621679475647]) = Foldr1 t t #
data ConcatSym0 (l :: TyFun [[a6989586621679475646]] [a6989586621679475646]) #
Instances
| SuppressUnusedWarnings (TyFun [[a6989586621679475646]] [a6989586621679475646] -> *) (ConcatSym0 a6989586621679475646) # | |
| type Apply [[a]] [a] (ConcatSym0 a) l # | |
type ConcatSym1 (t :: [[a6989586621679475646]]) = Concat t #
data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679475644 [b6989586621679475645] -> Type) (TyFun [a6989586621679475644] [b6989586621679475645] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475644 [b6989586621679475645] -> Type) (TyFun [a6989586621679475644] [b6989586621679475645] -> Type) -> *) (ConcatMapSym0 a6989586621679475644 b6989586621679475645) # | |
| type Apply (TyFun a6989586621679475644 [b6989586621679475645] -> Type) (TyFun [a6989586621679475644] [b6989586621679475645] -> Type) (ConcatMapSym0 a6989586621679475644 b6989586621679475645) l # | |
data ConcatMapSym1 (l :: TyFun a6989586621679475644 [b6989586621679475645] -> Type) (l :: TyFun [a6989586621679475644] [b6989586621679475645]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475644 [b6989586621679475645] -> Type) -> TyFun [a6989586621679475644] [b6989586621679475645] -> *) (ConcatMapSym1 a6989586621679475644 b6989586621679475645) # | |
| type Apply [a] [b] (ConcatMapSym1 a b l1) l2 # | |
type ConcatMapSym2 (t :: TyFun a6989586621679475644 [b6989586621679475645] -> Type) (t :: [a6989586621679475644]) = ConcatMap t t #
data Any_Sym0 (l :: TyFun (TyFun a6989586621679465427 Bool -> Type) (TyFun [a6989586621679465427] Bool -> Type)) #
data Any_Sym1 (l :: TyFun a6989586621679465427 Bool -> Type) (l :: TyFun [a6989586621679465427] Bool) #
type Any_Sym2 (t :: TyFun a6989586621679465427 Bool -> Type) (t :: [a6989586621679465427]) = Any_ t t #
data AllSym0 (l :: TyFun (TyFun a6989586621679475643 Bool -> Type) (TyFun [a6989586621679475643] Bool -> Type)) #
data AllSym1 (l :: TyFun a6989586621679475643 Bool -> Type) (l :: TyFun [a6989586621679475643] Bool) #
type AllSym2 (t :: TyFun a6989586621679475643 Bool -> Type) (t :: [a6989586621679475643]) = All t t #
data ProductSym0 (l :: TyFun [a6989586621679475547] a6989586621679475547) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475547] a6989586621679475547 -> *) (ProductSym0 a6989586621679475547) # | |
| type Apply [a] a (ProductSym0 a) l # | |
type ProductSym1 (t :: [a6989586621679475547]) = Product t #
data MaximumSym0 (l :: TyFun [a6989586621679475557] a6989586621679475557) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475557] a6989586621679475557 -> *) (MaximumSym0 a6989586621679475557) # | |
| type Apply [a] a (MaximumSym0 a) l # | |
type MaximumSym1 (t :: [a6989586621679475557]) = Maximum t #
data MinimumSym0 (l :: TyFun [a6989586621679475556] a6989586621679475556) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475556] a6989586621679475556 -> *) (MinimumSym0 a6989586621679475556) # | |
| type Apply [a] a (MinimumSym0 a) l # | |
type MinimumSym1 (t :: [a6989586621679475556]) = Minimum t #
data ScanlSym0 (l :: TyFun (TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (TyFun b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (TyFun b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type) -> Type) -> *) (ScanlSym0 a6989586621679475642 b6989586621679475641) # | |
| type Apply (TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (TyFun b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type) -> Type) (ScanlSym0 a6989586621679475642 b6989586621679475641) l # | |
data ScanlSym1 (l :: TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (l :: TyFun b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) -> TyFun b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type) -> *) (ScanlSym1 a6989586621679475642 b6989586621679475641) # | |
| type Apply b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type) (ScanlSym1 a6989586621679475642 b6989586621679475641 l1) l2 # | |
data ScanlSym2 (l :: TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (l :: b6989586621679475641) (l :: TyFun [a6989586621679475642] [b6989586621679475641]) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) -> b6989586621679475641 -> TyFun [a6989586621679475642] [b6989586621679475641] -> *) (ScanlSym2 a6989586621679475642 b6989586621679475641) # | |
| type Apply [a] [b] (ScanlSym2 a b l1 l2) l3 # | |
type ScanlSym3 (t :: TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (t :: b6989586621679475641) (t :: [a6989586621679475642]) = Scanl t t t #
data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) (TyFun [a6989586621679475640] [a6989586621679475640] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) (TyFun [a6989586621679475640] [a6989586621679475640] -> Type) -> *) (Scanl1Sym0 a6989586621679475640) # | |
| type Apply (TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) (TyFun [a6989586621679475640] [a6989586621679475640] -> Type) (Scanl1Sym0 a6989586621679475640) l # | |
data Scanl1Sym1 (l :: TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) (l :: TyFun [a6989586621679475640] [a6989586621679475640]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) -> TyFun [a6989586621679475640] [a6989586621679475640] -> *) (Scanl1Sym1 a6989586621679475640) # | |
| type Apply [a] [a] (Scanl1Sym1 a l1) l2 # | |
type Scanl1Sym2 (t :: TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) (t :: [a6989586621679475640]) = Scanl1 t t #
data ScanrSym0 (l :: TyFun (TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (TyFun b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (TyFun b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type) -> Type) -> *) (ScanrSym0 a6989586621679475638 b6989586621679475639) # | |
| type Apply (TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (TyFun b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type) -> Type) (ScanrSym0 a6989586621679475638 b6989586621679475639) l # | |
data ScanrSym1 (l :: TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (l :: TyFun b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) -> TyFun b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type) -> *) (ScanrSym1 a6989586621679475638 b6989586621679475639) # | |
| type Apply b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type) (ScanrSym1 a6989586621679475638 b6989586621679475639 l1) l2 # | |
data ScanrSym2 (l :: TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (l :: b6989586621679475639) (l :: TyFun [a6989586621679475638] [b6989586621679475639]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) -> b6989586621679475639 -> TyFun [a6989586621679475638] [b6989586621679475639] -> *) (ScanrSym2 a6989586621679475638 b6989586621679475639) # | |
| type Apply [a] [b] (ScanrSym2 a b l1 l2) l3 # | |
type ScanrSym3 (t :: TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (t :: b6989586621679475639) (t :: [a6989586621679475638]) = Scanr t t t #
data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) (TyFun [a6989586621679475637] [a6989586621679475637] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) (TyFun [a6989586621679475637] [a6989586621679475637] -> Type) -> *) (Scanr1Sym0 a6989586621679475637) # | |
| type Apply (TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) (TyFun [a6989586621679475637] [a6989586621679475637] -> Type) (Scanr1Sym0 a6989586621679475637) l # | |
data Scanr1Sym1 (l :: TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) (l :: TyFun [a6989586621679475637] [a6989586621679475637]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) -> TyFun [a6989586621679475637] [a6989586621679475637] -> *) (Scanr1Sym1 a6989586621679475637) # | |
| type Apply [a] [a] (Scanr1Sym1 a l1) l2 # | |
type Scanr1Sym2 (t :: TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) (t :: [a6989586621679475637]) = Scanr1 t t #
data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (TyFun acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (TyFun acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type) -> Type) -> *) (MapAccumLSym0 x6989586621679475635 acc6989586621679475634 y6989586621679475636) # | |
| type Apply (TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (TyFun acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type) -> Type) (MapAccumLSym0 x6989586621679475635 acc6989586621679475634 y6989586621679475636) l # | |
data MapAccumLSym1 (l :: TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (l :: TyFun acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) -> TyFun acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type) -> *) (MapAccumLSym1 x6989586621679475635 acc6989586621679475634 y6989586621679475636) # | |
| type Apply acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type) (MapAccumLSym1 x6989586621679475635 acc6989586621679475634 y6989586621679475636 l1) l2 # | |
data MapAccumLSym2 (l :: TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (l :: acc6989586621679475634) (l :: TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636])) #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) -> acc6989586621679475634 -> TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> *) (MapAccumLSym2 x6989586621679475635 acc6989586621679475634 y6989586621679475636) # | |
| type Apply [x] (acc, [y]) (MapAccumLSym2 x acc y l1 l2) l3 # | |
type MapAccumLSym3 (t :: TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (t :: acc6989586621679475634) (t :: [x6989586621679475635]) = MapAccumL t t t #
data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (TyFun acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (TyFun acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type) -> Type) -> *) (MapAccumRSym0 x6989586621679475632 acc6989586621679475631 y6989586621679475633) # | |
| type Apply (TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (TyFun acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type) -> Type) (MapAccumRSym0 x6989586621679475632 acc6989586621679475631 y6989586621679475633) l # | |
data MapAccumRSym1 (l :: TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (l :: TyFun acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) -> TyFun acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type) -> *) (MapAccumRSym1 x6989586621679475632 acc6989586621679475631 y6989586621679475633) # | |
| type Apply acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type) (MapAccumRSym1 x6989586621679475632 acc6989586621679475631 y6989586621679475633 l1) l2 # | |
data MapAccumRSym2 (l :: TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (l :: acc6989586621679475631) (l :: TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633])) #
Instances
| SuppressUnusedWarnings ((TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) -> acc6989586621679475631 -> TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> *) (MapAccumRSym2 x6989586621679475632 acc6989586621679475631 y6989586621679475633) # | |
| type Apply [x] (acc, [y]) (MapAccumRSym2 x acc y l1 l2) l3 # | |
type MapAccumRSym3 (t :: TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (t :: acc6989586621679475631) (t :: [x6989586621679475632]) = MapAccumR t t t #
data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679475545 [a6989586621679475545] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun Nat (TyFun a6989586621679475545 [a6989586621679475545] -> Type) -> *) (ReplicateSym0 a6989586621679475545) # | |
| type Apply Nat (TyFun a6989586621679475545 [a6989586621679475545] -> Type) (ReplicateSym0 a6989586621679475545) l # | |
data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679475545 [a6989586621679475545]) #
Instances
| SuppressUnusedWarnings (Nat -> TyFun a6989586621679475545 [a6989586621679475545] -> *) (ReplicateSym1 a6989586621679475545) # | |
| type Apply a [a] (ReplicateSym1 a l1) l2 # | |
type ReplicateSym2 (t :: Nat) (t :: a6989586621679475545) = Replicate t t #
data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) (TyFun b6989586621679475629 [a6989586621679475630] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) (TyFun b6989586621679475629 [a6989586621679475630] -> Type) -> *) (UnfoldrSym0 b6989586621679475629 a6989586621679475630) # | |
| type Apply (TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) (TyFun b6989586621679475629 [a6989586621679475630] -> Type) (UnfoldrSym0 b6989586621679475629 a6989586621679475630) l # | |
data UnfoldrSym1 (l :: TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) (l :: TyFun b6989586621679475629 [a6989586621679475630]) #
Instances
| SuppressUnusedWarnings ((TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) -> TyFun b6989586621679475629 [a6989586621679475630] -> *) (UnfoldrSym1 b6989586621679475629 a6989586621679475630) # | |
| type Apply b [a] (UnfoldrSym1 b a l1) l2 # | |
type UnfoldrSym2 (t :: TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) (t :: b6989586621679475629) = Unfoldr t t #
data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679475559] ([a6989586621679475559], [a6989586621679475559]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun Nat (TyFun [a6989586621679475559] ([a6989586621679475559], [a6989586621679475559]) -> Type) -> *) (SplitAtSym0 a6989586621679475559) # | |
| type Apply Nat (TyFun [a6989586621679475559] ([a6989586621679475559], [a6989586621679475559]) -> Type) (SplitAtSym0 a6989586621679475559) l # | |
data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679475559] ([a6989586621679475559], [a6989586621679475559])) #
Instances
| SuppressUnusedWarnings (Nat -> TyFun [a6989586621679475559] ([a6989586621679475559], [a6989586621679475559]) -> *) (SplitAtSym1 a6989586621679475559) # | |
| type Apply [a] ([a], [a]) (SplitAtSym1 a l1) l2 # | |
type SplitAtSym2 (t :: Nat) (t :: [a6989586621679475559]) = SplitAt t t #
data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679475566 Bool -> Type) (TyFun [a6989586621679475566] [a6989586621679475566] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475566 Bool -> Type) (TyFun [a6989586621679475566] [a6989586621679475566] -> Type) -> *) (TakeWhileSym0 a6989586621679475566) # | |
| type Apply (TyFun a6989586621679475566 Bool -> Type) (TyFun [a6989586621679475566] [a6989586621679475566] -> Type) (TakeWhileSym0 a6989586621679475566) l # | |
data TakeWhileSym1 (l :: TyFun a6989586621679475566 Bool -> Type) (l :: TyFun [a6989586621679475566] [a6989586621679475566]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475566 Bool -> Type) -> TyFun [a6989586621679475566] [a6989586621679475566] -> *) (TakeWhileSym1 a6989586621679475566) # | |
| type Apply [a] [a] (TakeWhileSym1 a l1) l2 # | |
type TakeWhileSym2 (t :: TyFun a6989586621679475566 Bool -> Type) (t :: [a6989586621679475566]) = TakeWhile t t #
data DropWhileSym0 (l :: TyFun (TyFun a6989586621679475565 Bool -> Type) (TyFun [a6989586621679475565] [a6989586621679475565] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475565 Bool -> Type) (TyFun [a6989586621679475565] [a6989586621679475565] -> Type) -> *) (DropWhileSym0 a6989586621679475565) # | |
| type Apply (TyFun a6989586621679475565 Bool -> Type) (TyFun [a6989586621679475565] [a6989586621679475565] -> Type) (DropWhileSym0 a6989586621679475565) l # | |
data DropWhileSym1 (l :: TyFun a6989586621679475565 Bool -> Type) (l :: TyFun [a6989586621679475565] [a6989586621679475565]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475565 Bool -> Type) -> TyFun [a6989586621679475565] [a6989586621679475565] -> *) (DropWhileSym1 a6989586621679475565) # | |
| type Apply [a] [a] (DropWhileSym1 a l1) l2 # | |
type DropWhileSym2 (t :: TyFun a6989586621679475565 Bool -> Type) (t :: [a6989586621679475565]) = DropWhile t t #
data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679475564 Bool -> Type) (TyFun [a6989586621679475564] [a6989586621679475564] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475564 Bool -> Type) (TyFun [a6989586621679475564] [a6989586621679475564] -> Type) -> *) (DropWhileEndSym0 a6989586621679475564) # | |
| type Apply (TyFun a6989586621679475564 Bool -> Type) (TyFun [a6989586621679475564] [a6989586621679475564] -> Type) (DropWhileEndSym0 a6989586621679475564) l # | |
data DropWhileEndSym1 (l :: TyFun a6989586621679475564 Bool -> Type) (l :: TyFun [a6989586621679475564] [a6989586621679475564]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475564 Bool -> Type) -> TyFun [a6989586621679475564] [a6989586621679475564] -> *) (DropWhileEndSym1 a6989586621679475564) # | |
| type Apply [a] [a] (DropWhileEndSym1 a l1) l2 # | |
type DropWhileEndSym2 (t :: TyFun a6989586621679475564 Bool -> Type) (t :: [a6989586621679475564]) = DropWhileEnd t t #
data SpanSym0 (l :: TyFun (TyFun a6989586621679475563 Bool -> Type) (TyFun [a6989586621679475563] ([a6989586621679475563], [a6989586621679475563]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475563 Bool -> Type) (TyFun [a6989586621679475563] ([a6989586621679475563], [a6989586621679475563]) -> Type) -> *) (SpanSym0 a6989586621679475563) # | |
| type Apply (TyFun a6989586621679475563 Bool -> Type) (TyFun [a6989586621679475563] ([a6989586621679475563], [a6989586621679475563]) -> Type) (SpanSym0 a6989586621679475563) l # | |
data SpanSym1 (l :: TyFun a6989586621679475563 Bool -> Type) (l :: TyFun [a6989586621679475563] ([a6989586621679475563], [a6989586621679475563])) #
type SpanSym2 (t :: TyFun a6989586621679475563 Bool -> Type) (t :: [a6989586621679475563]) = Span t t #
data BreakSym0 (l :: TyFun (TyFun a6989586621679475562 Bool -> Type) (TyFun [a6989586621679475562] ([a6989586621679475562], [a6989586621679475562]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475562 Bool -> Type) (TyFun [a6989586621679475562] ([a6989586621679475562], [a6989586621679475562]) -> Type) -> *) (BreakSym0 a6989586621679475562) # | |
| type Apply (TyFun a6989586621679475562 Bool -> Type) (TyFun [a6989586621679475562] ([a6989586621679475562], [a6989586621679475562]) -> Type) (BreakSym0 a6989586621679475562) l # | |
data BreakSym1 (l :: TyFun a6989586621679475562 Bool -> Type) (l :: TyFun [a6989586621679475562] ([a6989586621679475562], [a6989586621679475562])) #
type BreakSym2 (t :: TyFun a6989586621679475562 Bool -> Type) (t :: [a6989586621679475562]) = Break t t #
data IsPrefixOfSym0 (l :: TyFun [a6989586621679475626] (TyFun [a6989586621679475626] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475626] (TyFun [a6989586621679475626] Bool -> Type) -> *) (IsPrefixOfSym0 a6989586621679475626) # | |
| type Apply [a6989586621679475626] (TyFun [a6989586621679475626] Bool -> Type) (IsPrefixOfSym0 a6989586621679475626) l # | |
data IsPrefixOfSym1 (l :: [a6989586621679475626]) (l :: TyFun [a6989586621679475626] Bool) #
Instances
| SuppressUnusedWarnings ([a6989586621679475626] -> TyFun [a6989586621679475626] Bool -> *) (IsPrefixOfSym1 a6989586621679475626) # | |
| type Apply [a] Bool (IsPrefixOfSym1 a l1) l2 # | |
type IsPrefixOfSym2 (t :: [a6989586621679475626]) (t :: [a6989586621679475626]) = IsPrefixOf t t #
data IsSuffixOfSym0 (l :: TyFun [a6989586621679475625] (TyFun [a6989586621679475625] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475625] (TyFun [a6989586621679475625] Bool -> Type) -> *) (IsSuffixOfSym0 a6989586621679475625) # | |
| type Apply [a6989586621679475625] (TyFun [a6989586621679475625] Bool -> Type) (IsSuffixOfSym0 a6989586621679475625) l # | |
data IsSuffixOfSym1 (l :: [a6989586621679475625]) (l :: TyFun [a6989586621679475625] Bool) #
Instances
| SuppressUnusedWarnings ([a6989586621679475625] -> TyFun [a6989586621679475625] Bool -> *) (IsSuffixOfSym1 a6989586621679475625) # | |
| type Apply [a] Bool (IsSuffixOfSym1 a l1) l2 # | |
type IsSuffixOfSym2 (t :: [a6989586621679475625]) (t :: [a6989586621679475625]) = IsSuffixOf t t #
data IsInfixOfSym0 (l :: TyFun [a6989586621679475624] (TyFun [a6989586621679475624] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475624] (TyFun [a6989586621679475624] Bool -> Type) -> *) (IsInfixOfSym0 a6989586621679475624) # | |
| type Apply [a6989586621679475624] (TyFun [a6989586621679475624] Bool -> Type) (IsInfixOfSym0 a6989586621679475624) l # | |
data IsInfixOfSym1 (l :: [a6989586621679475624]) (l :: TyFun [a6989586621679475624] Bool) #
Instances
| SuppressUnusedWarnings ([a6989586621679475624] -> TyFun [a6989586621679475624] Bool -> *) (IsInfixOfSym1 a6989586621679475624) # | |
| type Apply [a] Bool (IsInfixOfSym1 a l1) l2 # | |
type IsInfixOfSym2 (t :: [a6989586621679475624]) (t :: [a6989586621679475624]) = IsInfixOf t t #
data NotElemSym0 (l :: TyFun a6989586621679475622 (TyFun [a6989586621679475622] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679475622 (TyFun [a6989586621679475622] Bool -> Type) -> *) (NotElemSym0 a6989586621679475622) # | |
| type Apply a6989586621679475622 (TyFun [a6989586621679475622] Bool -> Type) (NotElemSym0 a6989586621679475622) l # | |
data NotElemSym1 (l :: a6989586621679475622) (l :: TyFun [a6989586621679475622] Bool) #
Instances
| SuppressUnusedWarnings (a6989586621679475622 -> TyFun [a6989586621679475622] Bool -> *) (NotElemSym1 a6989586621679475622) # | |
| type Apply [a] Bool (NotElemSym1 a l1) l2 # | |
type NotElemSym2 (t :: a6989586621679475622) (t :: [a6989586621679475622]) = NotElem t t #
data LookupSym0 (l :: TyFun a6989586621679475551 (TyFun [(a6989586621679475551, b6989586621679475552)] (Maybe b6989586621679475552) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679475551 (TyFun [(a6989586621679475551, b6989586621679475552)] (Maybe b6989586621679475552) -> Type) -> *) (LookupSym0 a6989586621679475551 b6989586621679475552) # | |
| type Apply a6989586621679475551 (TyFun [(a6989586621679475551, b6989586621679475552)] (Maybe b6989586621679475552) -> Type) (LookupSym0 a6989586621679475551 b6989586621679475552) l # | |
data LookupSym1 (l :: a6989586621679475551) (l :: TyFun [(a6989586621679475551, b6989586621679475552)] (Maybe b6989586621679475552)) #
Instances
| SuppressUnusedWarnings (a6989586621679475551 -> TyFun [(a6989586621679475551, b6989586621679475552)] (Maybe b6989586621679475552) -> *) (LookupSym1 a6989586621679475551 b6989586621679475552) # | |
| type Apply [(a, b)] (Maybe b) (LookupSym1 a b l1) l2 # | |
type LookupSym2 (t :: a6989586621679475551) (t :: [(a6989586621679475551, b6989586621679475552)]) = Lookup t t #
data FindSym0 (l :: TyFun (TyFun a6989586621679475573 Bool -> Type) (TyFun [a6989586621679475573] (Maybe a6989586621679475573) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475573 Bool -> Type) (TyFun [a6989586621679475573] (Maybe a6989586621679475573) -> Type) -> *) (FindSym0 a6989586621679475573) # | |
| type Apply (TyFun a6989586621679475573 Bool -> Type) (TyFun [a6989586621679475573] (Maybe a6989586621679475573) -> Type) (FindSym0 a6989586621679475573) l # | |
data FindSym1 (l :: TyFun a6989586621679475573 Bool -> Type) (l :: TyFun [a6989586621679475573] (Maybe a6989586621679475573)) #
type FindSym2 (t :: TyFun a6989586621679475573 Bool -> Type) (t :: [a6989586621679475573]) = Find t t #
data FilterSym0 (l :: TyFun (TyFun a6989586621679475574 Bool -> Type) (TyFun [a6989586621679475574] [a6989586621679475574] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475574 Bool -> Type) (TyFun [a6989586621679475574] [a6989586621679475574] -> Type) -> *) (FilterSym0 a6989586621679475574) # | |
| type Apply (TyFun a6989586621679475574 Bool -> Type) (TyFun [a6989586621679475574] [a6989586621679475574] -> Type) (FilterSym0 a6989586621679475574) l # | |
data FilterSym1 (l :: TyFun a6989586621679475574 Bool -> Type) (l :: TyFun [a6989586621679475574] [a6989586621679475574]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475574 Bool -> Type) -> TyFun [a6989586621679475574] [a6989586621679475574] -> *) (FilterSym1 a6989586621679475574) # | |
| type Apply [a] [a] (FilterSym1 a l1) l2 # | |
type FilterSym2 (t :: TyFun a6989586621679475574 Bool -> Type) (t :: [a6989586621679475574]) = Filter t t #
data PartitionSym0 (l :: TyFun (TyFun a6989586621679475550 Bool -> Type) (TyFun [a6989586621679475550] ([a6989586621679475550], [a6989586621679475550]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475550 Bool -> Type) (TyFun [a6989586621679475550] ([a6989586621679475550], [a6989586621679475550]) -> Type) -> *) (PartitionSym0 a6989586621679475550) # | |
| type Apply (TyFun a6989586621679475550 Bool -> Type) (TyFun [a6989586621679475550] ([a6989586621679475550], [a6989586621679475550]) -> Type) (PartitionSym0 a6989586621679475550) l # | |
data PartitionSym1 (l :: TyFun a6989586621679475550 Bool -> Type) (l :: TyFun [a6989586621679475550] ([a6989586621679475550], [a6989586621679475550])) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475550 Bool -> Type) -> TyFun [a6989586621679475550] ([a6989586621679475550], [a6989586621679475550]) -> *) (PartitionSym1 a6989586621679475550) # | |
| type Apply [a] ([a], [a]) (PartitionSym1 a l1) l2 # | |
type PartitionSym2 (t :: TyFun a6989586621679475550 Bool -> Type) (t :: [a6989586621679475550]) = Partition t t #
data ElemIndexSym0 (l :: TyFun a6989586621679475572 (TyFun [a6989586621679475572] (Maybe Nat) -> Type)) #
data ElemIndexSym1 (l :: a6989586621679475572) (l :: TyFun [a6989586621679475572] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings (a6989586621679475572 -> TyFun [a6989586621679475572] (Maybe Nat) -> *) (ElemIndexSym1 a6989586621679475572) # | |
| type Apply [a] (Maybe Nat) (ElemIndexSym1 a l1) l2 # | |
type ElemIndexSym2 (t :: a6989586621679475572) (t :: [a6989586621679475572]) = ElemIndex t t #
data ElemIndicesSym0 (l :: TyFun a6989586621679475571 (TyFun [a6989586621679475571] [Nat] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679475571 (TyFun [a6989586621679475571] [Nat] -> Type) -> *) (ElemIndicesSym0 a6989586621679475571) # | |
| type Apply a6989586621679475571 (TyFun [a6989586621679475571] [Nat] -> Type) (ElemIndicesSym0 a6989586621679475571) l # | |
data ElemIndicesSym1 (l :: a6989586621679475571) (l :: TyFun [a6989586621679475571] [Nat]) #
Instances
| SuppressUnusedWarnings (a6989586621679475571 -> TyFun [a6989586621679475571] [Nat] -> *) (ElemIndicesSym1 a6989586621679475571) # | |
| type Apply [a] [Nat] (ElemIndicesSym1 a l1) l2 # | |
type ElemIndicesSym2 (t :: a6989586621679475571) (t :: [a6989586621679475571]) = ElemIndices t t #
data FindIndexSym0 (l :: TyFun (TyFun a6989586621679475570 Bool -> Type) (TyFun [a6989586621679475570] (Maybe Nat) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475570 Bool -> Type) (TyFun [a6989586621679475570] (Maybe Nat) -> Type) -> *) (FindIndexSym0 a6989586621679475570) # | |
| type Apply (TyFun a6989586621679475570 Bool -> Type) (TyFun [a6989586621679475570] (Maybe Nat) -> Type) (FindIndexSym0 a6989586621679475570) l # | |
data FindIndexSym1 (l :: TyFun a6989586621679475570 Bool -> Type) (l :: TyFun [a6989586621679475570] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475570 Bool -> Type) -> TyFun [a6989586621679475570] (Maybe Nat) -> *) (FindIndexSym1 a6989586621679475570) # | |
| type Apply [a] (Maybe Nat) (FindIndexSym1 a l1) l2 # | |
type FindIndexSym2 (t :: TyFun a6989586621679475570 Bool -> Type) (t :: [a6989586621679475570]) = FindIndex t t #
data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679475569 Bool -> Type) (TyFun [a6989586621679475569] [Nat] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475569 Bool -> Type) (TyFun [a6989586621679475569] [Nat] -> Type) -> *) (FindIndicesSym0 a6989586621679475569) # | |
| type Apply (TyFun a6989586621679475569 Bool -> Type) (TyFun [a6989586621679475569] [Nat] -> Type) (FindIndicesSym0 a6989586621679475569) l # | |
data FindIndicesSym1 (l :: TyFun a6989586621679475569 Bool -> Type) (l :: TyFun [a6989586621679475569] [Nat]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475569 Bool -> Type) -> TyFun [a6989586621679475569] [Nat] -> *) (FindIndicesSym1 a6989586621679475569) # | |
| type Apply [a] [Nat] (FindIndicesSym1 a l1) l2 # | |
type FindIndicesSym2 (t :: TyFun a6989586621679475569 Bool -> Type) (t :: [a6989586621679475569]) = FindIndices t t #
data ZipSym0 (l :: TyFun [a6989586621679475620] (TyFun [b6989586621679475621] [(a6989586621679475620, b6989586621679475621)] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475620] (TyFun [b6989586621679475621] [(a6989586621679475620, b6989586621679475621)] -> Type) -> *) (ZipSym0 a6989586621679475620 b6989586621679475621) # | |
| type Apply [a6989586621679475620] (TyFun [b6989586621679475621] [(a6989586621679475620, b6989586621679475621)] -> Type) (ZipSym0 a6989586621679475620 b6989586621679475621) l # | |
data ZipSym1 (l :: [a6989586621679475620]) (l :: TyFun [b6989586621679475621] [(a6989586621679475620, b6989586621679475621)]) #
data Zip3Sym0 (l :: TyFun [a6989586621679475617] (TyFun [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475617] (TyFun [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type) -> Type) -> *) (Zip3Sym0 a6989586621679475617 b6989586621679475618 c6989586621679475619) # | |
| type Apply [a6989586621679475617] (TyFun [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type) -> Type) (Zip3Sym0 a6989586621679475617 b6989586621679475618 c6989586621679475619) l # | |
data Zip3Sym1 (l :: [a6989586621679475617]) (l :: TyFun [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type)) #
Instances
| SuppressUnusedWarnings ([a6989586621679475617] -> TyFun [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type) -> *) (Zip3Sym1 a6989586621679475617 b6989586621679475618 c6989586621679475619) # | |
| type Apply [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type) (Zip3Sym1 a6989586621679475617 b6989586621679475618 c6989586621679475619 l1) l2 # | |
data Zip3Sym2 (l :: [a6989586621679475617]) (l :: [b6989586621679475618]) (l :: TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)]) #
Instances
| SuppressUnusedWarnings ([a6989586621679475617] -> [b6989586621679475618] -> TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> *) (Zip3Sym2 a6989586621679475617 b6989586621679475618 c6989586621679475619) # | |
| type Apply [c] [(a, b, c)] (Zip3Sym2 a b c l1 l2) l3 # | |
type Zip3Sym3 (t :: [a6989586621679475617]) (t :: [b6989586621679475618]) (t :: [c6989586621679475619]) = Zip3 t t t #
data ZipWithSym0 (l :: TyFun (TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (TyFun [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (TyFun [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type) -> Type) -> *) (ZipWithSym0 a6989586621679475614 b6989586621679475615 c6989586621679475616) # | |
| type Apply (TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (TyFun [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type) -> Type) (ZipWithSym0 a6989586621679475614 b6989586621679475615 c6989586621679475616) l # | |
data ZipWithSym1 (l :: TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (l :: TyFun [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) -> TyFun [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type) -> *) (ZipWithSym1 a6989586621679475614 b6989586621679475615 c6989586621679475616) # | |
| type Apply [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type) (ZipWithSym1 a6989586621679475614 b6989586621679475615 c6989586621679475616 l1) l2 # | |
data ZipWithSym2 (l :: TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (l :: [a6989586621679475614]) (l :: TyFun [b6989586621679475615] [c6989586621679475616]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) -> [a6989586621679475614] -> TyFun [b6989586621679475615] [c6989586621679475616] -> *) (ZipWithSym2 a6989586621679475614 b6989586621679475615 c6989586621679475616) # | |
| type Apply [b] [c] (ZipWithSym2 a b c l1 l2) l3 # | |
type ZipWithSym3 (t :: TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (t :: [a6989586621679475614]) (t :: [b6989586621679475615]) = ZipWith t t t #
data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (TyFun [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (TyFun [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type) -> Type) -> *) (ZipWith3Sym0 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) # | |
| type Apply (TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (TyFun [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type) -> Type) (ZipWith3Sym0 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) l # | |
data ZipWith3Sym1 (l :: TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) -> TyFun [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type) -> *) (ZipWith3Sym1 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) # | |
| type Apply [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type) (ZipWith3Sym1 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613 l1) l2 # | |
data ZipWith3Sym2 (l :: TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (l :: [a6989586621679475610]) (l :: TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) -> [a6989586621679475610] -> TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> *) (ZipWith3Sym2 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) # | |
| type Apply [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) (ZipWith3Sym2 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613 l1 l2) l3 # | |
data ZipWith3Sym3 (l :: TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (l :: [a6989586621679475610]) (l :: [b6989586621679475611]) (l :: TyFun [c6989586621679475612] [d6989586621679475613]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) -> [a6989586621679475610] -> [b6989586621679475611] -> TyFun [c6989586621679475612] [d6989586621679475613] -> *) (ZipWith3Sym3 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) # | |
| type Apply [c] [d] (ZipWith3Sym3 a b c d l1 l2 l3) l4 # | |
type ZipWith3Sym4 (t :: TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (t :: [a6989586621679475610]) (t :: [b6989586621679475611]) (t :: [c6989586621679475612]) = ZipWith3 t t t t #
data UnzipSym0 (l :: TyFun [(a6989586621679475608, b6989586621679475609)] ([a6989586621679475608], [b6989586621679475609])) #
data Unzip3Sym0 (l :: TyFun [(a6989586621679475605, b6989586621679475606, c6989586621679475607)] ([a6989586621679475605], [b6989586621679475606], [c6989586621679475607])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679475605, b6989586621679475606, c6989586621679475607)] ([a6989586621679475605], [b6989586621679475606], [c6989586621679475607]) -> *) (Unzip3Sym0 a6989586621679475605 b6989586621679475606 c6989586621679475607) # | |
| type Apply [(a, b, c)] ([a], [b], [c]) (Unzip3Sym0 a b c) l # | |
type Unzip3Sym1 (t :: [(a6989586621679475605, b6989586621679475606, c6989586621679475607)]) = Unzip3 t #
data Unzip4Sym0 (l :: TyFun [(a6989586621679475601, b6989586621679475602, c6989586621679475603, d6989586621679475604)] ([a6989586621679475601], [b6989586621679475602], [c6989586621679475603], [d6989586621679475604])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679475601, b6989586621679475602, c6989586621679475603, d6989586621679475604)] ([a6989586621679475601], [b6989586621679475602], [c6989586621679475603], [d6989586621679475604]) -> *) (Unzip4Sym0 a6989586621679475601 b6989586621679475602 c6989586621679475603 d6989586621679475604) # | |
| type Apply [(a, b, c, d)] ([a], [b], [c], [d]) (Unzip4Sym0 a b c d) l # | |
type Unzip4Sym1 (t :: [(a6989586621679475601, b6989586621679475602, c6989586621679475603, d6989586621679475604)]) = Unzip4 t #
data Unzip5Sym0 (l :: TyFun [(a6989586621679475596, b6989586621679475597, c6989586621679475598, d6989586621679475599, e6989586621679475600)] ([a6989586621679475596], [b6989586621679475597], [c6989586621679475598], [d6989586621679475599], [e6989586621679475600])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679475596, b6989586621679475597, c6989586621679475598, d6989586621679475599, e6989586621679475600)] ([a6989586621679475596], [b6989586621679475597], [c6989586621679475598], [d6989586621679475599], [e6989586621679475600]) -> *) (Unzip5Sym0 a6989586621679475596 b6989586621679475597 c6989586621679475598 d6989586621679475599 e6989586621679475600) # | |
| type Apply [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) (Unzip5Sym0 a b c d e) l # | |
type Unzip5Sym1 (t :: [(a6989586621679475596, b6989586621679475597, c6989586621679475598, d6989586621679475599, e6989586621679475600)]) = Unzip5 t #
data Unzip6Sym0 (l :: TyFun [(a6989586621679475590, b6989586621679475591, c6989586621679475592, d6989586621679475593, e6989586621679475594, f6989586621679475595)] ([a6989586621679475590], [b6989586621679475591], [c6989586621679475592], [d6989586621679475593], [e6989586621679475594], [f6989586621679475595])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679475590, b6989586621679475591, c6989586621679475592, d6989586621679475593, e6989586621679475594, f6989586621679475595)] ([a6989586621679475590], [b6989586621679475591], [c6989586621679475592], [d6989586621679475593], [e6989586621679475594], [f6989586621679475595]) -> *) (Unzip6Sym0 a6989586621679475590 b6989586621679475591 c6989586621679475592 d6989586621679475593 e6989586621679475594 f6989586621679475595) # | |
| type Apply [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) (Unzip6Sym0 a b c d e f) l # | |
type Unzip6Sym1 (t :: [(a6989586621679475590, b6989586621679475591, c6989586621679475592, d6989586621679475593, e6989586621679475594, f6989586621679475595)]) = Unzip6 t #
data Unzip7Sym0 (l :: TyFun [(a6989586621679475583, b6989586621679475584, c6989586621679475585, d6989586621679475586, e6989586621679475587, f6989586621679475588, g6989586621679475589)] ([a6989586621679475583], [b6989586621679475584], [c6989586621679475585], [d6989586621679475586], [e6989586621679475587], [f6989586621679475588], [g6989586621679475589])) #
Instances
| SuppressUnusedWarnings (TyFun [(a6989586621679475583, b6989586621679475584, c6989586621679475585, d6989586621679475586, e6989586621679475587, f6989586621679475588, g6989586621679475589)] ([a6989586621679475583], [b6989586621679475584], [c6989586621679475585], [d6989586621679475586], [e6989586621679475587], [f6989586621679475588], [g6989586621679475589]) -> *) (Unzip7Sym0 a6989586621679475583 b6989586621679475584 c6989586621679475585 d6989586621679475586 e6989586621679475587 f6989586621679475588 g6989586621679475589) # | |
| type Apply [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) (Unzip7Sym0 a b c d e f g) l # | |
type Unzip7Sym1 (t :: [(a6989586621679475583, b6989586621679475584, c6989586621679475585, d6989586621679475586, e6989586621679475587, f6989586621679475588, g6989586621679475589)]) = Unzip7 t #
data DeleteSym0 (l :: TyFun a6989586621679475582 (TyFun [a6989586621679475582] [a6989586621679475582] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679475582 (TyFun [a6989586621679475582] [a6989586621679475582] -> Type) -> *) (DeleteSym0 a6989586621679475582) # | |
| type Apply a6989586621679475582 (TyFun [a6989586621679475582] [a6989586621679475582] -> Type) (DeleteSym0 a6989586621679475582) l # | |
data DeleteSym1 (l :: a6989586621679475582) (l :: TyFun [a6989586621679475582] [a6989586621679475582]) #
Instances
| SuppressUnusedWarnings (a6989586621679475582 -> TyFun [a6989586621679475582] [a6989586621679475582] -> *) (DeleteSym1 a6989586621679475582) # | |
| type Apply [a] [a] (DeleteSym1 a l1) l2 # | |
type DeleteSym2 (t :: a6989586621679475582) (t :: [a6989586621679475582]) = Delete t t #
data (:\\$) (l :: TyFun [a6989586621679475581] (TyFun [a6989586621679475581] [a6989586621679475581] -> Type)) #
data (l :: [a6989586621679475581]) :\\$$ (l :: TyFun [a6989586621679475581] [a6989586621679475581]) #
data UnionSym0 (l :: TyFun [a6989586621679475538] (TyFun [a6989586621679475538] [a6989586621679475538] -> Type)) #
data UnionSym1 (l :: [a6989586621679475538]) (l :: TyFun [a6989586621679475538] [a6989586621679475538]) #
data IntersectSym0 (l :: TyFun [a6989586621679475568] (TyFun [a6989586621679475568] [a6989586621679475568] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475568] (TyFun [a6989586621679475568] [a6989586621679475568] -> Type) -> *) (IntersectSym0 a6989586621679475568) # | |
| type Apply [a6989586621679475568] (TyFun [a6989586621679475568] [a6989586621679475568] -> Type) (IntersectSym0 a6989586621679475568) l # | |
data IntersectSym1 (l :: [a6989586621679475568]) (l :: TyFun [a6989586621679475568] [a6989586621679475568]) #
Instances
| SuppressUnusedWarnings ([a6989586621679475568] -> TyFun [a6989586621679475568] [a6989586621679475568] -> *) (IntersectSym1 a6989586621679475568) # | |
| type Apply [a] [a] (IntersectSym1 a l1) l2 # | |
type IntersectSym2 (t :: [a6989586621679475568]) (t :: [a6989586621679475568]) = Intersect t t #
data InsertSym0 (l :: TyFun a6989586621679475555 (TyFun [a6989586621679475555] [a6989586621679475555] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a6989586621679475555 (TyFun [a6989586621679475555] [a6989586621679475555] -> Type) -> *) (InsertSym0 a6989586621679475555) # | |
| type Apply a6989586621679475555 (TyFun [a6989586621679475555] [a6989586621679475555] -> Type) (InsertSym0 a6989586621679475555) l # | |
data InsertSym1 (l :: a6989586621679475555) (l :: TyFun [a6989586621679475555] [a6989586621679475555]) #
Instances
| SuppressUnusedWarnings (a6989586621679475555 -> TyFun [a6989586621679475555] [a6989586621679475555] -> *) (InsertSym1 a6989586621679475555) # | |
| type Apply [a] [a] (InsertSym1 a l1) l2 # | |
type InsertSym2 (t :: a6989586621679475555) (t :: [a6989586621679475555]) = Insert t t #
data NubBySym0 (l :: TyFun (TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) (TyFun [a6989586621679475541] [a6989586621679475541] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) (TyFun [a6989586621679475541] [a6989586621679475541] -> Type) -> *) (NubBySym0 a6989586621679475541) # | |
| type Apply (TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) (TyFun [a6989586621679475541] [a6989586621679475541] -> Type) (NubBySym0 a6989586621679475541) l # | |
data NubBySym1 (l :: TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475541] [a6989586621679475541]) #
type NubBySym2 (t :: TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) (t :: [a6989586621679475541]) = NubBy t t #
data DeleteBySym0 (l :: TyFun (TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (TyFun a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (TyFun a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type) -> Type) -> *) (DeleteBySym0 a6989586621679475580) # | |
| type Apply (TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (TyFun a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type) -> Type) (DeleteBySym0 a6989586621679475580) l # | |
data DeleteBySym1 (l :: TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (l :: TyFun a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) -> TyFun a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type) -> *) (DeleteBySym1 a6989586621679475580) # | |
| type Apply a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type) (DeleteBySym1 a6989586621679475580 l1) l2 # | |
data DeleteBySym2 (l :: TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (l :: a6989586621679475580) (l :: TyFun [a6989586621679475580] [a6989586621679475580]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) -> a6989586621679475580 -> TyFun [a6989586621679475580] [a6989586621679475580] -> *) (DeleteBySym2 a6989586621679475580) # | |
| type Apply [a] [a] (DeleteBySym2 a l1 l2) l3 # | |
type DeleteBySym3 (t :: TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (t :: a6989586621679475580) (t :: [a6989586621679475580]) = DeleteBy t t t #
data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (TyFun [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (TyFun [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type) -> Type) -> *) (DeleteFirstsBySym0 a6989586621679475579) # | |
| type Apply (TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (TyFun [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type) -> Type) (DeleteFirstsBySym0 a6989586621679475579) l # | |
data DeleteFirstsBySym1 (l :: TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) -> TyFun [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type) -> *) (DeleteFirstsBySym1 a6989586621679475579) # | |
| type Apply [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type) (DeleteFirstsBySym1 a6989586621679475579 l1) l2 # | |
data DeleteFirstsBySym2 (l :: TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (l :: [a6989586621679475579]) (l :: TyFun [a6989586621679475579] [a6989586621679475579]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) -> [a6989586621679475579] -> TyFun [a6989586621679475579] [a6989586621679475579] -> *) (DeleteFirstsBySym2 a6989586621679475579) # | |
| type Apply [a] [a] (DeleteFirstsBySym2 a l1 l2) l3 # | |
type DeleteFirstsBySym3 (t :: TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (t :: [a6989586621679475579]) (t :: [a6989586621679475579]) = DeleteFirstsBy t t t #
data UnionBySym0 (l :: TyFun (TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (TyFun [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (TyFun [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type) -> Type) -> *) (UnionBySym0 a6989586621679475539) # | |
| type Apply (TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (TyFun [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type) -> Type) (UnionBySym0 a6989586621679475539) l # | |
data UnionBySym1 (l :: TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) -> TyFun [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type) -> *) (UnionBySym1 a6989586621679475539) # | |
| type Apply [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type) (UnionBySym1 a6989586621679475539 l1) l2 # | |
data UnionBySym2 (l :: TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (l :: [a6989586621679475539]) (l :: TyFun [a6989586621679475539] [a6989586621679475539]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) -> [a6989586621679475539] -> TyFun [a6989586621679475539] [a6989586621679475539] -> *) (UnionBySym2 a6989586621679475539) # | |
| type Apply [a] [a] (UnionBySym2 a l1 l2) l3 # | |
type UnionBySym3 (t :: TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (t :: [a6989586621679475539]) (t :: [a6989586621679475539]) = UnionBy t t t #
data IntersectBySym0 (l :: TyFun (TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (TyFun [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (TyFun [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type) -> Type) -> *) (IntersectBySym0 a6989586621679475567) # | |
| type Apply (TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (TyFun [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type) -> Type) (IntersectBySym0 a6989586621679475567) l # | |
data IntersectBySym1 (l :: TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) -> TyFun [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type) -> *) (IntersectBySym1 a6989586621679475567) # | |
| type Apply [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type) (IntersectBySym1 a6989586621679475567 l1) l2 # | |
data IntersectBySym2 (l :: TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (l :: [a6989586621679475567]) (l :: TyFun [a6989586621679475567] [a6989586621679475567]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) -> [a6989586621679475567] -> TyFun [a6989586621679475567] [a6989586621679475567] -> *) (IntersectBySym2 a6989586621679475567) # | |
| type Apply [a] [a] (IntersectBySym2 a l1 l2) l3 # | |
type IntersectBySym3 (t :: TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (t :: [a6989586621679475567]) (t :: [a6989586621679475567]) = IntersectBy t t t #
data GroupBySym0 (l :: TyFun (TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) (TyFun [a6989586621679475553] [[a6989586621679475553]] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) (TyFun [a6989586621679475553] [[a6989586621679475553]] -> Type) -> *) (GroupBySym0 a6989586621679475553) # | |
| type Apply (TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) (TyFun [a6989586621679475553] [[a6989586621679475553]] -> Type) (GroupBySym0 a6989586621679475553) l # | |
data GroupBySym1 (l :: TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) (l :: TyFun [a6989586621679475553] [[a6989586621679475553]]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) -> TyFun [a6989586621679475553] [[a6989586621679475553]] -> *) (GroupBySym1 a6989586621679475553) # | |
| type Apply [a] [[a]] (GroupBySym1 a l1) l2 # | |
type GroupBySym2 (t :: TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) (t :: [a6989586621679475553]) = GroupBy t t #
data SortBySym0 (l :: TyFun (TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) (TyFun [a6989586621679475578] [a6989586621679475578] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) (TyFun [a6989586621679475578] [a6989586621679475578] -> Type) -> *) (SortBySym0 a6989586621679475578) # | |
| type Apply (TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) (TyFun [a6989586621679475578] [a6989586621679475578] -> Type) (SortBySym0 a6989586621679475578) l # | |
data SortBySym1 (l :: TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679475578] [a6989586621679475578]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) -> TyFun [a6989586621679475578] [a6989586621679475578] -> *) (SortBySym1 a6989586621679475578) # | |
| type Apply [a] [a] (SortBySym1 a l1) l2 # | |
type SortBySym2 (t :: TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) (t :: [a6989586621679475578]) = SortBy t t #
data InsertBySym0 (l :: TyFun (TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (TyFun a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (TyFun a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type) -> Type) -> *) (InsertBySym0 a6989586621679475577) # | |
| type Apply (TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (TyFun a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type) -> Type) (InsertBySym0 a6989586621679475577) l # | |
data InsertBySym1 (l :: TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (l :: TyFun a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) -> TyFun a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type) -> *) (InsertBySym1 a6989586621679475577) # | |
| type Apply a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type) (InsertBySym1 a6989586621679475577 l1) l2 # | |
data InsertBySym2 (l :: TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (l :: a6989586621679475577) (l :: TyFun [a6989586621679475577] [a6989586621679475577]) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) -> a6989586621679475577 -> TyFun [a6989586621679475577] [a6989586621679475577] -> *) (InsertBySym2 a6989586621679475577) # | |
| type Apply [a] [a] (InsertBySym2 a l1 l2) l3 # | |
type InsertBySym3 (t :: TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (t :: a6989586621679475577) (t :: [a6989586621679475577]) = InsertBy t t t #
data MaximumBySym0 (l :: TyFun (TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) (TyFun [a6989586621679475576] a6989586621679475576 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) (TyFun [a6989586621679475576] a6989586621679475576 -> Type) -> *) (MaximumBySym0 a6989586621679475576) # | |
| type Apply (TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) (TyFun [a6989586621679475576] a6989586621679475576 -> Type) (MaximumBySym0 a6989586621679475576) l # | |
data MaximumBySym1 (l :: TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679475576] a6989586621679475576) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) -> TyFun [a6989586621679475576] a6989586621679475576 -> *) (MaximumBySym1 a6989586621679475576) # | |
| type Apply [a] a (MaximumBySym1 a l1) l2 # | |
type MaximumBySym2 (t :: TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) (t :: [a6989586621679475576]) = MaximumBy t t #
data MinimumBySym0 (l :: TyFun (TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) (TyFun [a6989586621679475575] a6989586621679475575 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) (TyFun [a6989586621679475575] a6989586621679475575 -> Type) -> *) (MinimumBySym0 a6989586621679475575) # | |
| type Apply (TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) (TyFun [a6989586621679475575] a6989586621679475575 -> Type) (MinimumBySym0 a6989586621679475575) l # | |
data MinimumBySym1 (l :: TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679475575] a6989586621679475575) #
Instances
| SuppressUnusedWarnings ((TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) -> TyFun [a6989586621679475575] a6989586621679475575 -> *) (MinimumBySym1 a6989586621679475575) # | |
| type Apply [a] a (MinimumBySym1 a l1) l2 # | |
type MinimumBySym2 (t :: TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) (t :: [a6989586621679475575]) = MinimumBy t t #
data GenericLengthSym0 (l :: TyFun [a6989586621679475537] i6989586621679475536) #
Instances
| SuppressUnusedWarnings (TyFun [a6989586621679475537] i6989586621679475536 -> *) (GenericLengthSym0 a6989586621679475537 i6989586621679475536) # | |
| type Apply [a] k2 (GenericLengthSym0 a k2) l # | |
type GenericLengthSym1 (t :: [a6989586621679475537]) = GenericLength t #