| 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 a822083585 (TyFun [a822083585] [a822083585] -> Type))
- data (l :: a822083585) :$$ (l :: TyFun [a822083585] [a822083585])
- type (:$$$) (t :: a822083585) (t :: [a822083585]) = (:) t t
- type (:++$$$) (t :: [a1627672477]) (t :: [a1627672477]) = (:++) t t
- data (l :: [a1627672477]) :++$$ (l :: TyFun [a1627672477] [a1627672477])
- data (:++$) (l :: TyFun [a1627672477] (TyFun [a1627672477] [a1627672477] -> Type))
- data HeadSym0 (l :: TyFun [a1627856203] a1627856203)
- type HeadSym1 (t :: [a1627856203]) = Head t
- data LastSym0 (l :: TyFun [a1627856202] a1627856202)
- type LastSym1 (t :: [a1627856202]) = Last t
- data TailSym0 (l :: TyFun [a1627856201] [a1627856201])
- type TailSym1 (t :: [a1627856201]) = Tail t
- data InitSym0 (l :: TyFun [a1627856200] [a1627856200])
- type InitSym1 (t :: [a1627856200]) = Init t
- data NullSym0 (l :: TyFun [a1627856199] Bool)
- type NullSym1 (t :: [a1627856199]) = Null t
- data LengthSym0 (l :: TyFun [a1627856086] Nat)
- type LengthSym1 (t :: [a1627856086]) = Length t
- data MapSym0 (l :: TyFun (TyFun a1627672478 b1627672479 -> Type) (TyFun [a1627672478] [b1627672479] -> Type))
- data MapSym1 (l :: TyFun a1627672478 b1627672479 -> Type) (l :: TyFun [a1627672478] [b1627672479])
- type MapSym2 (t :: TyFun a1627672478 b1627672479 -> Type) (t :: [a1627672478]) = Map t t
- data ReverseSym0 (l :: TyFun [a1627856198] [a1627856198])
- type ReverseSym1 (t :: [a1627856198]) = Reverse t
- data IntersperseSym0 (l :: TyFun a1627856197 (TyFun [a1627856197] [a1627856197] -> Type))
- data IntersperseSym1 (l :: a1627856197) (l :: TyFun [a1627856197] [a1627856197])
- type IntersperseSym2 (t :: a1627856197) (t :: [a1627856197]) = Intersperse t t
- data IntercalateSym0 (l :: TyFun [a1627856196] (TyFun [[a1627856196]] [a1627856196] -> Type))
- data IntercalateSym1 (l :: [a1627856196]) (l :: TyFun [[a1627856196]] [a1627856196])
- type IntercalateSym2 (t :: [a1627856196]) (t :: [[a1627856196]]) = Intercalate t t
- data TransposeSym0 (l :: TyFun [[a1627856084]] [[a1627856084]])
- type TransposeSym1 (t :: [[a1627856084]]) = Transpose t
- data SubsequencesSym0 (l :: TyFun [a1627856195] [[a1627856195]])
- type SubsequencesSym1 (t :: [a1627856195]) = Subsequences t
- data PermutationsSym0 (l :: TyFun [a1627856192] [[a1627856192]])
- type PermutationsSym1 (t :: [a1627856192]) = Permutations t
- data FoldlSym0 (l :: TyFun (TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (TyFun b1627632057 (TyFun [a1627632056] b1627632057 -> Type) -> Type))
- data FoldlSym1 (l :: TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (l :: TyFun b1627632057 (TyFun [a1627632056] b1627632057 -> Type))
- data FoldlSym2 (l :: TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (l :: b1627632057) (l :: TyFun [a1627632056] b1627632057)
- type FoldlSym3 (t :: TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (t :: b1627632057) (t :: [a1627632056]) = Foldl t t t
- data Foldl'Sym0 (l :: TyFun (TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (TyFun b1627856191 (TyFun [a1627856190] b1627856191 -> Type) -> Type))
- data Foldl'Sym1 (l :: TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (l :: TyFun b1627856191 (TyFun [a1627856190] b1627856191 -> Type))
- data Foldl'Sym2 (l :: TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (l :: b1627856191) (l :: TyFun [a1627856190] b1627856191)
- type Foldl'Sym3 (t :: TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (t :: b1627856191) (t :: [a1627856190]) = Foldl' t t t
- data Foldl1Sym0 (l :: TyFun (TyFun a1627856189 (TyFun a1627856189 a1627856189 -> Type) -> Type) (TyFun [a1627856189] a1627856189 -> Type))
- data Foldl1Sym1 (l :: TyFun a1627856189 (TyFun a1627856189 a1627856189 -> Type) -> Type) (l :: TyFun [a1627856189] a1627856189)
- type Foldl1Sym2 (t :: TyFun a1627856189 (TyFun a1627856189 a1627856189 -> Type) -> Type) (t :: [a1627856189]) = Foldl1 t t
- data Foldl1'Sym0 (l :: TyFun (TyFun a1627856188 (TyFun a1627856188 a1627856188 -> Type) -> Type) (TyFun [a1627856188] a1627856188 -> Type))
- data Foldl1'Sym1 (l :: TyFun a1627856188 (TyFun a1627856188 a1627856188 -> Type) -> Type) (l :: TyFun [a1627856188] a1627856188)
- type Foldl1'Sym2 (t :: TyFun a1627856188 (TyFun a1627856188 a1627856188 -> Type) -> Type) (t :: [a1627856188]) = Foldl1' t t
- data FoldrSym0 (l :: TyFun (TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (TyFun b1627672481 (TyFun [a1627672480] b1627672481 -> Type) -> Type))
- data FoldrSym1 (l :: TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (l :: TyFun b1627672481 (TyFun [a1627672480] b1627672481 -> Type))
- data FoldrSym2 (l :: TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (l :: b1627672481) (l :: TyFun [a1627672480] b1627672481)
- type FoldrSym3 (t :: TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (t :: b1627672481) (t :: [a1627672480]) = Foldr t t t
- data Foldr1Sym0 (l :: TyFun (TyFun a1627856187 (TyFun a1627856187 a1627856187 -> Type) -> Type) (TyFun [a1627856187] a1627856187 -> Type))
- data Foldr1Sym1 (l :: TyFun a1627856187 (TyFun a1627856187 a1627856187 -> Type) -> Type) (l :: TyFun [a1627856187] a1627856187)
- type Foldr1Sym2 (t :: TyFun a1627856187 (TyFun a1627856187 a1627856187 -> Type) -> Type) (t :: [a1627856187]) = Foldr1 t t
- data ConcatSym0 (l :: TyFun [[a1627856186]] [a1627856186])
- type ConcatSym1 (t :: [[a1627856186]]) = Concat t
- data ConcatMapSym0 (l :: TyFun (TyFun a1627856184 [b1627856185] -> Type) (TyFun [a1627856184] [b1627856185] -> Type))
- data ConcatMapSym1 (l :: TyFun a1627856184 [b1627856185] -> Type) (l :: TyFun [a1627856184] [b1627856185])
- type ConcatMapSym2 (t :: TyFun a1627856184 [b1627856185] -> Type) (t :: [a1627856184]) = 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 a1627845967 Bool -> Type) (TyFun [a1627845967] Bool -> Type))
- data Any_Sym1 (l :: TyFun a1627845967 Bool -> Type) (l :: TyFun [a1627845967] Bool)
- type Any_Sym2 (t :: TyFun a1627845967 Bool -> Type) (t :: [a1627845967]) = Any_ t t
- data AllSym0 (l :: TyFun (TyFun a1627856183 Bool -> Type) (TyFun [a1627856183] Bool -> Type))
- data AllSym1 (l :: TyFun a1627856183 Bool -> Type) (l :: TyFun [a1627856183] Bool)
- type AllSym2 (t :: TyFun a1627856183 Bool -> Type) (t :: [a1627856183]) = All t t
- data SumSym0 (l :: TyFun [a1627856088] a1627856088)
- type SumSym1 (t :: [a1627856088]) = Sum t
- data ProductSym0 (l :: TyFun [a1627856087] a1627856087)
- type ProductSym1 (t :: [a1627856087]) = Product t
- data MaximumSym0 (l :: TyFun [a1627856097] a1627856097)
- type MaximumSym1 (t :: [a1627856097]) = Maximum t
- data MinimumSym0 (l :: TyFun [a1627856096] a1627856096)
- type MinimumSym1 (t :: [a1627856096]) = Minimum t
- data ScanlSym0 (l :: TyFun (TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (TyFun b1627856181 (TyFun [a1627856182] [b1627856181] -> Type) -> Type))
- data ScanlSym1 (l :: TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (l :: TyFun b1627856181 (TyFun [a1627856182] [b1627856181] -> Type))
- data ScanlSym2 (l :: TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (l :: b1627856181) (l :: TyFun [a1627856182] [b1627856181])
- type ScanlSym3 (t :: TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (t :: b1627856181) (t :: [a1627856182]) = Scanl t t t
- data Scanl1Sym0 (l :: TyFun (TyFun a1627856180 (TyFun a1627856180 a1627856180 -> Type) -> Type) (TyFun [a1627856180] [a1627856180] -> Type))
- data Scanl1Sym1 (l :: TyFun a1627856180 (TyFun a1627856180 a1627856180 -> Type) -> Type) (l :: TyFun [a1627856180] [a1627856180])
- type Scanl1Sym2 (t :: TyFun a1627856180 (TyFun a1627856180 a1627856180 -> Type) -> Type) (t :: [a1627856180]) = Scanl1 t t
- data ScanrSym0 (l :: TyFun (TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (TyFun b1627856179 (TyFun [a1627856178] [b1627856179] -> Type) -> Type))
- data ScanrSym1 (l :: TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (l :: TyFun b1627856179 (TyFun [a1627856178] [b1627856179] -> Type))
- data ScanrSym2 (l :: TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (l :: b1627856179) (l :: TyFun [a1627856178] [b1627856179])
- type ScanrSym3 (t :: TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (t :: b1627856179) (t :: [a1627856178]) = Scanr t t t
- data Scanr1Sym0 (l :: TyFun (TyFun a1627856177 (TyFun a1627856177 a1627856177 -> Type) -> Type) (TyFun [a1627856177] [a1627856177] -> Type))
- data Scanr1Sym1 (l :: TyFun a1627856177 (TyFun a1627856177 a1627856177 -> Type) -> Type) (l :: TyFun [a1627856177] [a1627856177])
- type Scanr1Sym2 (t :: TyFun a1627856177 (TyFun a1627856177 a1627856177 -> Type) -> Type) (t :: [a1627856177]) = Scanr1 t t
- data MapAccumLSym0 (l :: TyFun (TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (TyFun acc1627856174 (TyFun [x1627856175] (acc1627856174, [y1627856176]) -> Type) -> Type))
- data MapAccumLSym1 (l :: TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (l :: TyFun acc1627856174 (TyFun [x1627856175] (acc1627856174, [y1627856176]) -> Type))
- data MapAccumLSym2 (l :: TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (l :: acc1627856174) (l :: TyFun [x1627856175] (acc1627856174, [y1627856176]))
- type MapAccumLSym3 (t :: TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (t :: acc1627856174) (t :: [x1627856175]) = MapAccumL t t t
- data MapAccumRSym0 (l :: TyFun (TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (TyFun acc1627856171 (TyFun [x1627856172] (acc1627856171, [y1627856173]) -> Type) -> Type))
- data MapAccumRSym1 (l :: TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (l :: TyFun acc1627856171 (TyFun [x1627856172] (acc1627856171, [y1627856173]) -> Type))
- data MapAccumRSym2 (l :: TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (l :: acc1627856171) (l :: TyFun [x1627856172] (acc1627856171, [y1627856173]))
- type MapAccumRSym3 (t :: TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (t :: acc1627856171) (t :: [x1627856172]) = MapAccumR t t t
- data ReplicateSym0 (l :: TyFun Nat (TyFun a1627856085 [a1627856085] -> Type))
- data ReplicateSym1 (l :: Nat) (l :: TyFun a1627856085 [a1627856085])
- type ReplicateSym2 (t :: Nat) (t :: a1627856085) = Replicate t t
- data UnfoldrSym0 (l :: TyFun (TyFun b1627856169 (Maybe (a1627856170, b1627856169)) -> Type) (TyFun b1627856169 [a1627856170] -> Type))
- data UnfoldrSym1 (l :: TyFun b1627856169 (Maybe (a1627856170, b1627856169)) -> Type) (l :: TyFun b1627856169 [a1627856170])
- type UnfoldrSym2 (t :: TyFun b1627856169 (Maybe (a1627856170, b1627856169)) -> Type) (t :: b1627856169) = Unfoldr t t
- data TakeSym0 (l :: TyFun Nat (TyFun [a1627856101] [a1627856101] -> Type))
- data TakeSym1 (l :: Nat) (l :: TyFun [a1627856101] [a1627856101])
- type TakeSym2 (t :: Nat) (t :: [a1627856101]) = Take t t
- data DropSym0 (l :: TyFun Nat (TyFun [a1627856100] [a1627856100] -> Type))
- data DropSym1 (l :: Nat) (l :: TyFun [a1627856100] [a1627856100])
- type DropSym2 (t :: Nat) (t :: [a1627856100]) = Drop t t
- data SplitAtSym0 (l :: TyFun Nat (TyFun [a1627856099] ([a1627856099], [a1627856099]) -> Type))
- data SplitAtSym1 (l :: Nat) (l :: TyFun [a1627856099] ([a1627856099], [a1627856099]))
- type SplitAtSym2 (t :: Nat) (t :: [a1627856099]) = SplitAt t t
- data TakeWhileSym0 (l :: TyFun (TyFun a1627856106 Bool -> Type) (TyFun [a1627856106] [a1627856106] -> Type))
- data TakeWhileSym1 (l :: TyFun a1627856106 Bool -> Type) (l :: TyFun [a1627856106] [a1627856106])
- type TakeWhileSym2 (t :: TyFun a1627856106 Bool -> Type) (t :: [a1627856106]) = TakeWhile t t
- data DropWhileSym0 (l :: TyFun (TyFun a1627856105 Bool -> Type) (TyFun [a1627856105] [a1627856105] -> Type))
- data DropWhileSym1 (l :: TyFun a1627856105 Bool -> Type) (l :: TyFun [a1627856105] [a1627856105])
- type DropWhileSym2 (t :: TyFun a1627856105 Bool -> Type) (t :: [a1627856105]) = DropWhile t t
- data DropWhileEndSym0 (l :: TyFun (TyFun a1627856104 Bool -> Type) (TyFun [a1627856104] [a1627856104] -> Type))
- data DropWhileEndSym1 (l :: TyFun a1627856104 Bool -> Type) (l :: TyFun [a1627856104] [a1627856104])
- type DropWhileEndSym2 (t :: TyFun a1627856104 Bool -> Type) (t :: [a1627856104]) = DropWhileEnd t t
- data SpanSym0 (l :: TyFun (TyFun a1627856103 Bool -> Type) (TyFun [a1627856103] ([a1627856103], [a1627856103]) -> Type))
- data SpanSym1 (l :: TyFun a1627856103 Bool -> Type) (l :: TyFun [a1627856103] ([a1627856103], [a1627856103]))
- type SpanSym2 (t :: TyFun a1627856103 Bool -> Type) (t :: [a1627856103]) = Span t t
- data BreakSym0 (l :: TyFun (TyFun a1627856102 Bool -> Type) (TyFun [a1627856102] ([a1627856102], [a1627856102]) -> Type))
- data BreakSym1 (l :: TyFun a1627856102 Bool -> Type) (l :: TyFun [a1627856102] ([a1627856102], [a1627856102]))
- type BreakSym2 (t :: TyFun a1627856102 Bool -> Type) (t :: [a1627856102]) = Break t t
- data GroupSym0 (l :: TyFun [a1627856098] [[a1627856098]])
- type GroupSym1 (t :: [a1627856098]) = Group t
- data InitsSym0 (l :: TyFun [a1627856168] [[a1627856168]])
- type InitsSym1 (t :: [a1627856168]) = Inits t
- data TailsSym0 (l :: TyFun [a1627856167] [[a1627856167]])
- type TailsSym1 (t :: [a1627856167]) = Tails t
- data IsPrefixOfSym0 (l :: TyFun [a1627856166] (TyFun [a1627856166] Bool -> Type))
- data IsPrefixOfSym1 (l :: [a1627856166]) (l :: TyFun [a1627856166] Bool)
- type IsPrefixOfSym2 (t :: [a1627856166]) (t :: [a1627856166]) = IsPrefixOf t t
- data IsSuffixOfSym0 (l :: TyFun [a1627856165] (TyFun [a1627856165] Bool -> Type))
- data IsSuffixOfSym1 (l :: [a1627856165]) (l :: TyFun [a1627856165] Bool)
- type IsSuffixOfSym2 (t :: [a1627856165]) (t :: [a1627856165]) = IsSuffixOf t t
- data IsInfixOfSym0 (l :: TyFun [a1627856164] (TyFun [a1627856164] Bool -> Type))
- data IsInfixOfSym1 (l :: [a1627856164]) (l :: TyFun [a1627856164] Bool)
- type IsInfixOfSym2 (t :: [a1627856164]) (t :: [a1627856164]) = IsInfixOf t t
- data ElemSym0 (l :: TyFun a1627856163 (TyFun [a1627856163] Bool -> Type))
- data ElemSym1 (l :: a1627856163) (l :: TyFun [a1627856163] Bool)
- type ElemSym2 (t :: a1627856163) (t :: [a1627856163]) = Elem t t
- data NotElemSym0 (l :: TyFun a1627856162 (TyFun [a1627856162] Bool -> Type))
- data NotElemSym1 (l :: a1627856162) (l :: TyFun [a1627856162] Bool)
- type NotElemSym2 (t :: a1627856162) (t :: [a1627856162]) = NotElem t t
- data LookupSym0 (l :: TyFun a1627856091 (TyFun [(a1627856091, b1627856092)] (Maybe b1627856092) -> Type))
- data LookupSym1 (l :: a1627856091) (l :: TyFun [(a1627856091, b1627856092)] (Maybe b1627856092))
- type LookupSym2 (t :: a1627856091) (t :: [(a1627856091, b1627856092)]) = Lookup t t
- data FindSym0 (l :: TyFun (TyFun a1627856113 Bool -> Type) (TyFun [a1627856113] (Maybe a1627856113) -> Type))
- data FindSym1 (l :: TyFun a1627856113 Bool -> Type) (l :: TyFun [a1627856113] (Maybe a1627856113))
- type FindSym2 (t :: TyFun a1627856113 Bool -> Type) (t :: [a1627856113]) = Find t t
- data FilterSym0 (l :: TyFun (TyFun a1627856114 Bool -> Type) (TyFun [a1627856114] [a1627856114] -> Type))
- data FilterSym1 (l :: TyFun a1627856114 Bool -> Type) (l :: TyFun [a1627856114] [a1627856114])
- type FilterSym2 (t :: TyFun a1627856114 Bool -> Type) (t :: [a1627856114]) = Filter t t
- data PartitionSym0 (l :: TyFun (TyFun a1627856090 Bool -> Type) (TyFun [a1627856090] ([a1627856090], [a1627856090]) -> Type))
- data PartitionSym1 (l :: TyFun a1627856090 Bool -> Type) (l :: TyFun [a1627856090] ([a1627856090], [a1627856090]))
- type PartitionSym2 (t :: TyFun a1627856090 Bool -> Type) (t :: [a1627856090]) = Partition t t
- data (:!!$) (l :: TyFun [a1627856083] (TyFun Nat a1627856083 -> Type))
- data (l :: [a1627856083]) :!!$$ (l :: TyFun Nat a1627856083)
- type (:!!$$$) (t :: [a1627856083]) (t :: Nat) = (:!!) t t
- data ElemIndexSym0 (l :: TyFun a1627856112 (TyFun [a1627856112] (Maybe Nat) -> Type))
- data ElemIndexSym1 (l :: a1627856112) (l :: TyFun [a1627856112] (Maybe Nat))
- type ElemIndexSym2 (t :: a1627856112) (t :: [a1627856112]) = ElemIndex t t
- data ElemIndicesSym0 (l :: TyFun a1627856111 (TyFun [a1627856111] [Nat] -> Type))
- data ElemIndicesSym1 (l :: a1627856111) (l :: TyFun [a1627856111] [Nat])
- type ElemIndicesSym2 (t :: a1627856111) (t :: [a1627856111]) = ElemIndices t t
- data FindIndexSym0 (l :: TyFun (TyFun a1627856110 Bool -> Type) (TyFun [a1627856110] (Maybe Nat) -> Type))
- data FindIndexSym1 (l :: TyFun a1627856110 Bool -> Type) (l :: TyFun [a1627856110] (Maybe Nat))
- type FindIndexSym2 (t :: TyFun a1627856110 Bool -> Type) (t :: [a1627856110]) = FindIndex t t
- data FindIndicesSym0 (l :: TyFun (TyFun a1627856109 Bool -> Type) (TyFun [a1627856109] [Nat] -> Type))
- data FindIndicesSym1 (l :: TyFun a1627856109 Bool -> Type) (l :: TyFun [a1627856109] [Nat])
- type FindIndicesSym2 (t :: TyFun a1627856109 Bool -> Type) (t :: [a1627856109]) = FindIndices t t
- data ZipSym0 (l :: TyFun [a1627856160] (TyFun [b1627856161] [(a1627856160, b1627856161)] -> Type))
- data ZipSym1 (l :: [a1627856160]) (l :: TyFun [b1627856161] [(a1627856160, b1627856161)])
- type ZipSym2 (t :: [a1627856160]) (t :: [b1627856161]) = Zip t t
- data Zip3Sym0 (l :: TyFun [a1627856157] (TyFun [b1627856158] (TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)] -> Type) -> Type))
- data Zip3Sym1 (l :: [a1627856157]) (l :: TyFun [b1627856158] (TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)] -> Type))
- data Zip3Sym2 (l :: [a1627856157]) (l :: [b1627856158]) (l :: TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)])
- type Zip3Sym3 (t :: [a1627856157]) (t :: [b1627856158]) (t :: [c1627856159]) = Zip3 t t t
- data ZipWithSym0 (l :: TyFun (TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (TyFun [a1627856154] (TyFun [b1627856155] [c1627856156] -> Type) -> Type))
- data ZipWithSym1 (l :: TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (l :: TyFun [a1627856154] (TyFun [b1627856155] [c1627856156] -> Type))
- data ZipWithSym2 (l :: TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (l :: [a1627856154]) (l :: TyFun [b1627856155] [c1627856156])
- type ZipWithSym3 (t :: TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (t :: [a1627856154]) (t :: [b1627856155]) = ZipWith t t t
- data ZipWith3Sym0 (l :: TyFun (TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (TyFun [a1627856150] (TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) -> Type) -> Type))
- data ZipWith3Sym1 (l :: TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (l :: TyFun [a1627856150] (TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) -> Type))
- data ZipWith3Sym2 (l :: TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (l :: [a1627856150]) (l :: TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type))
- data ZipWith3Sym3 (l :: TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (l :: [a1627856150]) (l :: [b1627856151]) (l :: TyFun [c1627856152] [d1627856153])
- type ZipWith3Sym4 (t :: TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (t :: [a1627856150]) (t :: [b1627856151]) (t :: [c1627856152]) = ZipWith3 t t t t
- data UnzipSym0 (l :: TyFun [(a1627856148, b1627856149)] ([a1627856148], [b1627856149]))
- type UnzipSym1 (t :: [(a1627856148, b1627856149)]) = Unzip t
- data Unzip3Sym0 (l :: TyFun [(a1627856145, b1627856146, c1627856147)] ([a1627856145], [b1627856146], [c1627856147]))
- type Unzip3Sym1 (t :: [(a1627856145, b1627856146, c1627856147)]) = Unzip3 t
- data Unzip4Sym0 (l :: TyFun [(a1627856141, b1627856142, c1627856143, d1627856144)] ([a1627856141], [b1627856142], [c1627856143], [d1627856144]))
- type Unzip4Sym1 (t :: [(a1627856141, b1627856142, c1627856143, d1627856144)]) = Unzip4 t
- data Unzip5Sym0 (l :: TyFun [(a1627856136, b1627856137, c1627856138, d1627856139, e1627856140)] ([a1627856136], [b1627856137], [c1627856138], [d1627856139], [e1627856140]))
- type Unzip5Sym1 (t :: [(a1627856136, b1627856137, c1627856138, d1627856139, e1627856140)]) = Unzip5 t
- data Unzip6Sym0 (l :: TyFun [(a1627856130, b1627856131, c1627856132, d1627856133, e1627856134, f1627856135)] ([a1627856130], [b1627856131], [c1627856132], [d1627856133], [e1627856134], [f1627856135]))
- type Unzip6Sym1 (t :: [(a1627856130, b1627856131, c1627856132, d1627856133, e1627856134, f1627856135)]) = Unzip6 t
- data Unzip7Sym0 (l :: TyFun [(a1627856123, b1627856124, c1627856125, d1627856126, e1627856127, f1627856128, g1627856129)] ([a1627856123], [b1627856124], [c1627856125], [d1627856126], [e1627856127], [f1627856128], [g1627856129]))
- type Unzip7Sym1 (t :: [(a1627856123, b1627856124, c1627856125, d1627856126, e1627856127, f1627856128, g1627856129)]) = Unzip7 t
- data NubSym0 (l :: TyFun [a1627856082] [a1627856082])
- type NubSym1 (t :: [a1627856082]) = Nub t
- data DeleteSym0 (l :: TyFun a1627856122 (TyFun [a1627856122] [a1627856122] -> Type))
- data DeleteSym1 (l :: a1627856122) (l :: TyFun [a1627856122] [a1627856122])
- type DeleteSym2 (t :: a1627856122) (t :: [a1627856122]) = Delete t t
- data (:\\$) (l :: TyFun [a1627856121] (TyFun [a1627856121] [a1627856121] -> Type))
- data (l :: [a1627856121]) :\\$$ (l :: TyFun [a1627856121] [a1627856121])
- type (:\\$$$) (t :: [a1627856121]) (t :: [a1627856121]) = (:\\) t t
- data UnionSym0 (l :: TyFun [a1627856078] (TyFun [a1627856078] [a1627856078] -> Type))
- data UnionSym1 (l :: [a1627856078]) (l :: TyFun [a1627856078] [a1627856078])
- type UnionSym2 (t :: [a1627856078]) (t :: [a1627856078]) = Union t t
- data IntersectSym0 (l :: TyFun [a1627856108] (TyFun [a1627856108] [a1627856108] -> Type))
- data IntersectSym1 (l :: [a1627856108]) (l :: TyFun [a1627856108] [a1627856108])
- type IntersectSym2 (t :: [a1627856108]) (t :: [a1627856108]) = Intersect t t
- data InsertSym0 (l :: TyFun a1627856095 (TyFun [a1627856095] [a1627856095] -> Type))
- data InsertSym1 (l :: a1627856095) (l :: TyFun [a1627856095] [a1627856095])
- type InsertSym2 (t :: a1627856095) (t :: [a1627856095]) = Insert t t
- data SortSym0 (l :: TyFun [a1627856094] [a1627856094])
- type SortSym1 (t :: [a1627856094]) = Sort t
- data NubBySym0 (l :: TyFun (TyFun a1627856081 (TyFun a1627856081 Bool -> Type) -> Type) (TyFun [a1627856081] [a1627856081] -> Type))
- data NubBySym1 (l :: TyFun a1627856081 (TyFun a1627856081 Bool -> Type) -> Type) (l :: TyFun [a1627856081] [a1627856081])
- type NubBySym2 (t :: TyFun a1627856081 (TyFun a1627856081 Bool -> Type) -> Type) (t :: [a1627856081]) = NubBy t t
- data DeleteBySym0 (l :: TyFun (TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (TyFun a1627856120 (TyFun [a1627856120] [a1627856120] -> Type) -> Type))
- data DeleteBySym1 (l :: TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (l :: TyFun a1627856120 (TyFun [a1627856120] [a1627856120] -> Type))
- data DeleteBySym2 (l :: TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (l :: a1627856120) (l :: TyFun [a1627856120] [a1627856120])
- type DeleteBySym3 (t :: TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (t :: a1627856120) (t :: [a1627856120]) = DeleteBy t t t
- data DeleteFirstsBySym0 (l :: TyFun (TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (TyFun [a1627856119] (TyFun [a1627856119] [a1627856119] -> Type) -> Type))
- data DeleteFirstsBySym1 (l :: TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (l :: TyFun [a1627856119] (TyFun [a1627856119] [a1627856119] -> Type))
- data DeleteFirstsBySym2 (l :: TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (l :: [a1627856119]) (l :: TyFun [a1627856119] [a1627856119])
- type DeleteFirstsBySym3 (t :: TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (t :: [a1627856119]) (t :: [a1627856119]) = DeleteFirstsBy t t t
- data UnionBySym0 (l :: TyFun (TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (TyFun [a1627856079] (TyFun [a1627856079] [a1627856079] -> Type) -> Type))
- data UnionBySym1 (l :: TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (l :: TyFun [a1627856079] (TyFun [a1627856079] [a1627856079] -> Type))
- data UnionBySym2 (l :: TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (l :: [a1627856079]) (l :: TyFun [a1627856079] [a1627856079])
- type UnionBySym3 (t :: TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (t :: [a1627856079]) (t :: [a1627856079]) = UnionBy t t t
- data IntersectBySym0 (l :: TyFun (TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (TyFun [a1627856107] (TyFun [a1627856107] [a1627856107] -> Type) -> Type))
- data IntersectBySym1 (l :: TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (l :: TyFun [a1627856107] (TyFun [a1627856107] [a1627856107] -> Type))
- data IntersectBySym2 (l :: TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (l :: [a1627856107]) (l :: TyFun [a1627856107] [a1627856107])
- type IntersectBySym3 (t :: TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (t :: [a1627856107]) (t :: [a1627856107]) = IntersectBy t t t
- data GroupBySym0 (l :: TyFun (TyFun a1627856093 (TyFun a1627856093 Bool -> Type) -> Type) (TyFun [a1627856093] [[a1627856093]] -> Type))
- data GroupBySym1 (l :: TyFun a1627856093 (TyFun a1627856093 Bool -> Type) -> Type) (l :: TyFun [a1627856093] [[a1627856093]])
- type GroupBySym2 (t :: TyFun a1627856093 (TyFun a1627856093 Bool -> Type) -> Type) (t :: [a1627856093]) = GroupBy t t
- data SortBySym0 (l :: TyFun (TyFun a1627856118 (TyFun a1627856118 Ordering -> Type) -> Type) (TyFun [a1627856118] [a1627856118] -> Type))
- data SortBySym1 (l :: TyFun a1627856118 (TyFun a1627856118 Ordering -> Type) -> Type) (l :: TyFun [a1627856118] [a1627856118])
- type SortBySym2 (t :: TyFun a1627856118 (TyFun a1627856118 Ordering -> Type) -> Type) (t :: [a1627856118]) = SortBy t t
- data InsertBySym0 (l :: TyFun (TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (TyFun a1627856117 (TyFun [a1627856117] [a1627856117] -> Type) -> Type))
- data InsertBySym1 (l :: TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (l :: TyFun a1627856117 (TyFun [a1627856117] [a1627856117] -> Type))
- data InsertBySym2 (l :: TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (l :: a1627856117) (l :: TyFun [a1627856117] [a1627856117])
- type InsertBySym3 (t :: TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (t :: a1627856117) (t :: [a1627856117]) = InsertBy t t t
- data MaximumBySym0 (l :: TyFun (TyFun a1627856116 (TyFun a1627856116 Ordering -> Type) -> Type) (TyFun [a1627856116] a1627856116 -> Type))
- data MaximumBySym1 (l :: TyFun a1627856116 (TyFun a1627856116 Ordering -> Type) -> Type) (l :: TyFun [a1627856116] a1627856116)
- type MaximumBySym2 (t :: TyFun a1627856116 (TyFun a1627856116 Ordering -> Type) -> Type) (t :: [a1627856116]) = MaximumBy t t
- data MinimumBySym0 (l :: TyFun (TyFun a1627856115 (TyFun a1627856115 Ordering -> Type) -> Type) (TyFun [a1627856115] a1627856115 -> Type))
- data MinimumBySym1 (l :: TyFun a1627856115 (TyFun a1627856115 Ordering -> Type) -> Type) (l :: TyFun [a1627856115] a1627856115)
- type MinimumBySym2 (t :: TyFun a1627856115 (TyFun a1627856115 Ordering -> Type) -> Type) (t :: [a1627856115]) = MinimumBy t t
- data GenericLengthSym0 (l :: TyFun [a1627856077] i1627856076)
- type GenericLengthSym1 (t :: [a1627856077]) = 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_1627856947 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_1627859970 '[] = '[] | |
| 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) #
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 (Let1627856980Sum'Sym1 l) l) (FromInteger 0) |
type family Product (a :: [a]) :: a where ... #
Equations
| Product l = Apply (Apply (Let1627856956ProdSym1 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]) #
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_1627856940 n x (Let1627856932Scrutinee_1627856743Sym2 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_1627858641 f b (Let1627858633Scrutinee_1627856663Sym2 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_1627857271 '[] = Apply (Apply Tuple2Sym0 Let1627857274XsSym0) Let1627857274XsSym0 | |
| Span p ((:) x xs') = Case_1627857304 p x xs' (Let1627857291Scrutinee_1627856723Sym3 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_1627857169 '[] = Apply (Apply Tuple2Sym0 Let1627857172XsSym0) Let1627857172XsSym0 | |
| Break p ((:) x xs') = Case_1627857202 p x xs' (Let1627857189Scrutinee_1627856725Sym3 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_1627858573 _z_1627858576) = TrueSym0 | |
| IsPrefixOf ((:) _z_1627858579 _z_1627858582) '[] = 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_1627857084 key x y xys (Let1627857065Scrutinee_1627856739Sym4 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_1627857554 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FilterSym0 p)) a_1627857554 |
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_1627858456 = Apply (Apply FindIndicesSym0 (Apply (:==$) x)) a_1627858456 |
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_1627858469 = Apply (Apply (Apply (:.$) ListToMaybeSym0) (Apply FindIndicesSym0 p)) a_1627858469 |
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_1627858305 _z_1627858308) = '[] | |
| Zip3 '[] ((:) _z_1627858311 _z_1627858314) '[] = '[] | |
| Zip3 '[] ((:) _z_1627858317 _z_1627858320) ((:) _z_1627858323 _z_1627858326) = '[] | |
| Zip3 ((:) _z_1627858329 _z_1627858332) '[] '[] = '[] | |
| Zip3 ((:) _z_1627858335 _z_1627858338) '[] ((:) _z_1627858341 _z_1627858344) = '[] | |
| Zip3 ((:) _z_1627858347 _z_1627858350) ((:) _z_1627858353 _z_1627858356) '[] = '[] |
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 ... #
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_1627858168 '[] '[] '[] = '[] | |
| ZipWith3 _z_1627858171 '[] '[] ((:) _z_1627858174 _z_1627858177) = '[] | |
| ZipWith3 _z_1627858180 '[] ((:) _z_1627858183 _z_1627858186) '[] = '[] | |
| ZipWith3 _z_1627858189 '[] ((:) _z_1627858192 _z_1627858195) ((:) _z_1627858198 _z_1627858201) = '[] | |
| ZipWith3 _z_1627858204 ((:) _z_1627858207 _z_1627858210) '[] '[] = '[] | |
| ZipWith3 _z_1627858213 ((:) _z_1627858216 _z_1627858219) '[] ((:) _z_1627858222 _z_1627858225) = '[] | |
| ZipWith3 _z_1627858228 ((:) _z_1627858231 _z_1627858234) ((:) _z_1627858237 _z_1627858240) '[] = '[] |
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_1627857790 = Apply (Apply SortBySym0 CompareSym0) a_1627857790 |
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_1627857859 a_1627857861 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) a_1627857859) a_1627857861 |
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_1627857573 '[] '[] = '[] | |
| IntersectBy _z_1627857576 '[] ((:) _z_1627857579 _z_1627857582) = '[] | |
| IntersectBy _z_1627857585 ((:) _z_1627857588 _z_1627857591) '[] = '[] | |
| IntersectBy eq ((:) wild_1627856709 wild_1627856711) ((:) wild_1627856713 wild_1627856715) = Apply (Apply FilterSym0 (Apply (Apply (Apply (Apply (Apply Lambda_1627857650Sym0 eq) wild_1627856709) wild_1627856711) wild_1627856713) wild_1627856715)) (Let1627857599XsSym5 eq wild_1627856709 wild_1627856711 wild_1627856713 wild_1627856715) |
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]) #
sMaximumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MaximumBySym0 t) t :: a) #
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_1627856794 xs) = Apply (Apply (:+$) (FromInteger 1)) (Apply GenericLengthSym0 xs) |
sGenericLength :: forall (t :: [a]). SNum i => Sing t -> Sing (Apply GenericLengthSym0 t :: i) #
Defunctionalization symbols
data LengthSym0 (l :: TyFun [a1627856086] Nat) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856086] Nat -> *) (LengthSym0 a1627856086) # | |
| type Apply [a] Nat (LengthSym0 a) l # | |
type LengthSym1 (t :: [a1627856086]) = Length t #
data MapSym0 (l :: TyFun (TyFun a1627672478 b1627672479 -> Type) (TyFun [a1627672478] [b1627672479] -> Type)) #
data MapSym1 (l :: TyFun a1627672478 b1627672479 -> Type) (l :: TyFun [a1627672478] [b1627672479]) #
data ReverseSym0 (l :: TyFun [a1627856198] [a1627856198]) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856198] [a1627856198] -> *) (ReverseSym0 a1627856198) # | |
| type Apply [a] [a] (ReverseSym0 a) l # | |
type ReverseSym1 (t :: [a1627856198]) = Reverse t #
data IntersperseSym0 (l :: TyFun a1627856197 (TyFun [a1627856197] [a1627856197] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a1627856197 (TyFun [a1627856197] [a1627856197] -> Type) -> *) (IntersperseSym0 a1627856197) # | |
| type Apply a1627856197 (TyFun [a1627856197] [a1627856197] -> Type) (IntersperseSym0 a1627856197) l # | |
data IntersperseSym1 (l :: a1627856197) (l :: TyFun [a1627856197] [a1627856197]) #
Instances
| SuppressUnusedWarnings (a1627856197 -> TyFun [a1627856197] [a1627856197] -> *) (IntersperseSym1 a1627856197) # | |
| type Apply [a] [a] (IntersperseSym1 a l1) l2 # | |
type IntersperseSym2 (t :: a1627856197) (t :: [a1627856197]) = Intersperse t t #
data IntercalateSym0 (l :: TyFun [a1627856196] (TyFun [[a1627856196]] [a1627856196] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856196] (TyFun [[a1627856196]] [a1627856196] -> Type) -> *) (IntercalateSym0 a1627856196) # | |
| type Apply [a1627856196] (TyFun [[a1627856196]] [a1627856196] -> Type) (IntercalateSym0 a1627856196) l # | |
data IntercalateSym1 (l :: [a1627856196]) (l :: TyFun [[a1627856196]] [a1627856196]) #
Instances
| SuppressUnusedWarnings ([a1627856196] -> TyFun [[a1627856196]] [a1627856196] -> *) (IntercalateSym1 a1627856196) # | |
| type Apply [[a]] [a] (IntercalateSym1 a l1) l2 # | |
type IntercalateSym2 (t :: [a1627856196]) (t :: [[a1627856196]]) = Intercalate t t #
data TransposeSym0 (l :: TyFun [[a1627856084]] [[a1627856084]]) #
Instances
| SuppressUnusedWarnings (TyFun [[a1627856084]] [[a1627856084]] -> *) (TransposeSym0 a1627856084) # | |
| type Apply [[a]] [[a]] (TransposeSym0 a) l # | |
type TransposeSym1 (t :: [[a1627856084]]) = Transpose t #
data SubsequencesSym0 (l :: TyFun [a1627856195] [[a1627856195]]) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856195] [[a1627856195]] -> *) (SubsequencesSym0 a1627856195) # | |
| type Apply [a] [[a]] (SubsequencesSym0 a) l # | |
type SubsequencesSym1 (t :: [a1627856195]) = Subsequences t #
data PermutationsSym0 (l :: TyFun [a1627856192] [[a1627856192]]) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856192] [[a1627856192]] -> *) (PermutationsSym0 a1627856192) # | |
| type Apply [a] [[a]] (PermutationsSym0 a) l # | |
type PermutationsSym1 (t :: [a1627856192]) = Permutations t #
data FoldlSym0 (l :: TyFun (TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (TyFun b1627632057 (TyFun [a1627632056] b1627632057 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (TyFun b1627632057 (TyFun [a1627632056] b1627632057 -> Type) -> Type) -> *) (FoldlSym0 a1627632056 b1627632057) # | |
| type Apply (TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (TyFun b1627632057 (TyFun [a1627632056] b1627632057 -> Type) -> Type) (FoldlSym0 a1627632056 b1627632057) l # | |
data FoldlSym1 (l :: TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (l :: TyFun b1627632057 (TyFun [a1627632056] b1627632057 -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) -> TyFun b1627632057 (TyFun [a1627632056] b1627632057 -> Type) -> *) (FoldlSym1 a1627632056 b1627632057) # | |
| type Apply b1627632057 (TyFun [a1627632056] b1627632057 -> Type) (FoldlSym1 a1627632056 b1627632057 l1) l2 # | |
data FoldlSym2 (l :: TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (l :: b1627632057) (l :: TyFun [a1627632056] b1627632057) #
type FoldlSym3 (t :: TyFun b1627632057 (TyFun a1627632056 b1627632057 -> Type) -> Type) (t :: b1627632057) (t :: [a1627632056]) = Foldl t t t #
data Foldl'Sym0 (l :: TyFun (TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (TyFun b1627856191 (TyFun [a1627856190] b1627856191 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (TyFun b1627856191 (TyFun [a1627856190] b1627856191 -> Type) -> Type) -> *) (Foldl'Sym0 a1627856190 b1627856191) # | |
| type Apply (TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (TyFun b1627856191 (TyFun [a1627856190] b1627856191 -> Type) -> Type) (Foldl'Sym0 a1627856190 b1627856191) l # | |
data Foldl'Sym1 (l :: TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (l :: TyFun b1627856191 (TyFun [a1627856190] b1627856191 -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) -> TyFun b1627856191 (TyFun [a1627856190] b1627856191 -> Type) -> *) (Foldl'Sym1 a1627856190 b1627856191) # | |
| type Apply b1627856191 (TyFun [a1627856190] b1627856191 -> Type) (Foldl'Sym1 a1627856190 b1627856191 l1) l2 # | |
data Foldl'Sym2 (l :: TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (l :: b1627856191) (l :: TyFun [a1627856190] b1627856191) #
Instances
| SuppressUnusedWarnings ((TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) -> b1627856191 -> TyFun [a1627856190] b1627856191 -> *) (Foldl'Sym2 a1627856190 b1627856191) # | |
| type Apply [a] b (Foldl'Sym2 a b l1 l2) l3 # | |
type Foldl'Sym3 (t :: TyFun b1627856191 (TyFun a1627856190 b1627856191 -> Type) -> Type) (t :: b1627856191) (t :: [a1627856190]) = Foldl' t t t #
data Foldl1Sym0 (l :: TyFun (TyFun a1627856189 (TyFun a1627856189 a1627856189 -> Type) -> Type) (TyFun [a1627856189] a1627856189 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856189 (TyFun a1627856189 a1627856189 -> Type) -> Type) (TyFun [a1627856189] a1627856189 -> Type) -> *) (Foldl1Sym0 a1627856189) # | |
| type Apply (TyFun a1627856189 (TyFun a1627856189 a1627856189 -> Type) -> Type) (TyFun [a1627856189] a1627856189 -> Type) (Foldl1Sym0 a1627856189) l # | |
data Foldl1Sym1 (l :: TyFun a1627856189 (TyFun a1627856189 a1627856189 -> Type) -> Type) (l :: TyFun [a1627856189] a1627856189) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856189 (TyFun a1627856189 a1627856189 -> Type) -> Type) -> TyFun [a1627856189] a1627856189 -> *) (Foldl1Sym1 a1627856189) # | |
| type Apply [a] a (Foldl1Sym1 a l1) l2 # | |
type Foldl1Sym2 (t :: TyFun a1627856189 (TyFun a1627856189 a1627856189 -> Type) -> Type) (t :: [a1627856189]) = Foldl1 t t #
data Foldl1'Sym0 (l :: TyFun (TyFun a1627856188 (TyFun a1627856188 a1627856188 -> Type) -> Type) (TyFun [a1627856188] a1627856188 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856188 (TyFun a1627856188 a1627856188 -> Type) -> Type) (TyFun [a1627856188] a1627856188 -> Type) -> *) (Foldl1'Sym0 a1627856188) # | |
| type Apply (TyFun a1627856188 (TyFun a1627856188 a1627856188 -> Type) -> Type) (TyFun [a1627856188] a1627856188 -> Type) (Foldl1'Sym0 a1627856188) l # | |
data Foldl1'Sym1 (l :: TyFun a1627856188 (TyFun a1627856188 a1627856188 -> Type) -> Type) (l :: TyFun [a1627856188] a1627856188) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856188 (TyFun a1627856188 a1627856188 -> Type) -> Type) -> TyFun [a1627856188] a1627856188 -> *) (Foldl1'Sym1 a1627856188) # | |
| type Apply [a] a (Foldl1'Sym1 a l1) l2 # | |
type Foldl1'Sym2 (t :: TyFun a1627856188 (TyFun a1627856188 a1627856188 -> Type) -> Type) (t :: [a1627856188]) = Foldl1' t t #
data FoldrSym0 (l :: TyFun (TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (TyFun b1627672481 (TyFun [a1627672480] b1627672481 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (TyFun b1627672481 (TyFun [a1627672480] b1627672481 -> Type) -> Type) -> *) (FoldrSym0 a1627672480 b1627672481) # | |
| type Apply (TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (TyFun b1627672481 (TyFun [a1627672480] b1627672481 -> Type) -> Type) (FoldrSym0 a1627672480 b1627672481) l # | |
data FoldrSym1 (l :: TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (l :: TyFun b1627672481 (TyFun [a1627672480] b1627672481 -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) -> TyFun b1627672481 (TyFun [a1627672480] b1627672481 -> Type) -> *) (FoldrSym1 a1627672480 b1627672481) # | |
| type Apply b1627672481 (TyFun [a1627672480] b1627672481 -> Type) (FoldrSym1 a1627672480 b1627672481 l1) l2 # | |
data FoldrSym2 (l :: TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (l :: b1627672481) (l :: TyFun [a1627672480] b1627672481) #
type FoldrSym3 (t :: TyFun a1627672480 (TyFun b1627672481 b1627672481 -> Type) -> Type) (t :: b1627672481) (t :: [a1627672480]) = Foldr t t t #
data Foldr1Sym0 (l :: TyFun (TyFun a1627856187 (TyFun a1627856187 a1627856187 -> Type) -> Type) (TyFun [a1627856187] a1627856187 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856187 (TyFun a1627856187 a1627856187 -> Type) -> Type) (TyFun [a1627856187] a1627856187 -> Type) -> *) (Foldr1Sym0 a1627856187) # | |
| type Apply (TyFun a1627856187 (TyFun a1627856187 a1627856187 -> Type) -> Type) (TyFun [a1627856187] a1627856187 -> Type) (Foldr1Sym0 a1627856187) l # | |
data Foldr1Sym1 (l :: TyFun a1627856187 (TyFun a1627856187 a1627856187 -> Type) -> Type) (l :: TyFun [a1627856187] a1627856187) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856187 (TyFun a1627856187 a1627856187 -> Type) -> Type) -> TyFun [a1627856187] a1627856187 -> *) (Foldr1Sym1 a1627856187) # | |
| type Apply [a] a (Foldr1Sym1 a l1) l2 # | |
type Foldr1Sym2 (t :: TyFun a1627856187 (TyFun a1627856187 a1627856187 -> Type) -> Type) (t :: [a1627856187]) = Foldr1 t t #
data ConcatSym0 (l :: TyFun [[a1627856186]] [a1627856186]) #
Instances
| SuppressUnusedWarnings (TyFun [[a1627856186]] [a1627856186] -> *) (ConcatSym0 a1627856186) # | |
| type Apply [[a]] [a] (ConcatSym0 a) l # | |
type ConcatSym1 (t :: [[a1627856186]]) = Concat t #
data ConcatMapSym0 (l :: TyFun (TyFun a1627856184 [b1627856185] -> Type) (TyFun [a1627856184] [b1627856185] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856184 [b1627856185] -> Type) (TyFun [a1627856184] [b1627856185] -> Type) -> *) (ConcatMapSym0 a1627856184 b1627856185) # | |
| type Apply (TyFun a1627856184 [b1627856185] -> Type) (TyFun [a1627856184] [b1627856185] -> Type) (ConcatMapSym0 a1627856184 b1627856185) l # | |
data ConcatMapSym1 (l :: TyFun a1627856184 [b1627856185] -> Type) (l :: TyFun [a1627856184] [b1627856185]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856184 [b1627856185] -> Type) -> TyFun [a1627856184] [b1627856185] -> *) (ConcatMapSym1 a1627856184 b1627856185) # | |
| type Apply [a] [b] (ConcatMapSym1 a b l1) l2 # | |
type ConcatMapSym2 (t :: TyFun a1627856184 [b1627856185] -> Type) (t :: [a1627856184]) = ConcatMap t t #
data ProductSym0 (l :: TyFun [a1627856087] a1627856087) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856087] a1627856087 -> *) (ProductSym0 a1627856087) # | |
| type Apply [a] a (ProductSym0 a) l # | |
type ProductSym1 (t :: [a1627856087]) = Product t #
data MaximumSym0 (l :: TyFun [a1627856097] a1627856097) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856097] a1627856097 -> *) (MaximumSym0 a1627856097) # | |
| type Apply [a] a (MaximumSym0 a) l # | |
type MaximumSym1 (t :: [a1627856097]) = Maximum t #
data MinimumSym0 (l :: TyFun [a1627856096] a1627856096) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856096] a1627856096 -> *) (MinimumSym0 a1627856096) # | |
| type Apply [a] a (MinimumSym0 a) l # | |
type MinimumSym1 (t :: [a1627856096]) = Minimum t #
data ScanlSym0 (l :: TyFun (TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (TyFun b1627856181 (TyFun [a1627856182] [b1627856181] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (TyFun b1627856181 (TyFun [a1627856182] [b1627856181] -> Type) -> Type) -> *) (ScanlSym0 a1627856182 b1627856181) # | |
| type Apply (TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (TyFun b1627856181 (TyFun [a1627856182] [b1627856181] -> Type) -> Type) (ScanlSym0 a1627856182 b1627856181) l # | |
data ScanlSym1 (l :: TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (l :: TyFun b1627856181 (TyFun [a1627856182] [b1627856181] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) -> TyFun b1627856181 (TyFun [a1627856182] [b1627856181] -> Type) -> *) (ScanlSym1 a1627856182 b1627856181) # | |
| type Apply b1627856181 (TyFun [a1627856182] [b1627856181] -> Type) (ScanlSym1 a1627856182 b1627856181 l1) l2 # | |
data ScanlSym2 (l :: TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (l :: b1627856181) (l :: TyFun [a1627856182] [b1627856181]) #
type ScanlSym3 (t :: TyFun b1627856181 (TyFun a1627856182 b1627856181 -> Type) -> Type) (t :: b1627856181) (t :: [a1627856182]) = Scanl t t t #
data Scanl1Sym0 (l :: TyFun (TyFun a1627856180 (TyFun a1627856180 a1627856180 -> Type) -> Type) (TyFun [a1627856180] [a1627856180] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856180 (TyFun a1627856180 a1627856180 -> Type) -> Type) (TyFun [a1627856180] [a1627856180] -> Type) -> *) (Scanl1Sym0 a1627856180) # | |
| type Apply (TyFun a1627856180 (TyFun a1627856180 a1627856180 -> Type) -> Type) (TyFun [a1627856180] [a1627856180] -> Type) (Scanl1Sym0 a1627856180) l # | |
data Scanl1Sym1 (l :: TyFun a1627856180 (TyFun a1627856180 a1627856180 -> Type) -> Type) (l :: TyFun [a1627856180] [a1627856180]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856180 (TyFun a1627856180 a1627856180 -> Type) -> Type) -> TyFun [a1627856180] [a1627856180] -> *) (Scanl1Sym1 a1627856180) # | |
| type Apply [a] [a] (Scanl1Sym1 a l1) l2 # | |
type Scanl1Sym2 (t :: TyFun a1627856180 (TyFun a1627856180 a1627856180 -> Type) -> Type) (t :: [a1627856180]) = Scanl1 t t #
data ScanrSym0 (l :: TyFun (TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (TyFun b1627856179 (TyFun [a1627856178] [b1627856179] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (TyFun b1627856179 (TyFun [a1627856178] [b1627856179] -> Type) -> Type) -> *) (ScanrSym0 a1627856178 b1627856179) # | |
| type Apply (TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (TyFun b1627856179 (TyFun [a1627856178] [b1627856179] -> Type) -> Type) (ScanrSym0 a1627856178 b1627856179) l # | |
data ScanrSym1 (l :: TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (l :: TyFun b1627856179 (TyFun [a1627856178] [b1627856179] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) -> TyFun b1627856179 (TyFun [a1627856178] [b1627856179] -> Type) -> *) (ScanrSym1 a1627856178 b1627856179) # | |
| type Apply b1627856179 (TyFun [a1627856178] [b1627856179] -> Type) (ScanrSym1 a1627856178 b1627856179 l1) l2 # | |
data ScanrSym2 (l :: TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (l :: b1627856179) (l :: TyFun [a1627856178] [b1627856179]) #
type ScanrSym3 (t :: TyFun a1627856178 (TyFun b1627856179 b1627856179 -> Type) -> Type) (t :: b1627856179) (t :: [a1627856178]) = Scanr t t t #
data Scanr1Sym0 (l :: TyFun (TyFun a1627856177 (TyFun a1627856177 a1627856177 -> Type) -> Type) (TyFun [a1627856177] [a1627856177] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856177 (TyFun a1627856177 a1627856177 -> Type) -> Type) (TyFun [a1627856177] [a1627856177] -> Type) -> *) (Scanr1Sym0 a1627856177) # | |
| type Apply (TyFun a1627856177 (TyFun a1627856177 a1627856177 -> Type) -> Type) (TyFun [a1627856177] [a1627856177] -> Type) (Scanr1Sym0 a1627856177) l # | |
data Scanr1Sym1 (l :: TyFun a1627856177 (TyFun a1627856177 a1627856177 -> Type) -> Type) (l :: TyFun [a1627856177] [a1627856177]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856177 (TyFun a1627856177 a1627856177 -> Type) -> Type) -> TyFun [a1627856177] [a1627856177] -> *) (Scanr1Sym1 a1627856177) # | |
| type Apply [a] [a] (Scanr1Sym1 a l1) l2 # | |
type Scanr1Sym2 (t :: TyFun a1627856177 (TyFun a1627856177 a1627856177 -> Type) -> Type) (t :: [a1627856177]) = Scanr1 t t #
data MapAccumLSym0 (l :: TyFun (TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (TyFun acc1627856174 (TyFun [x1627856175] (acc1627856174, [y1627856176]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (TyFun acc1627856174 (TyFun [x1627856175] (acc1627856174, [y1627856176]) -> Type) -> Type) -> *) (MapAccumLSym0 x1627856175 acc1627856174 y1627856176) # | |
| type Apply (TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (TyFun acc1627856174 (TyFun [x1627856175] (acc1627856174, [y1627856176]) -> Type) -> Type) (MapAccumLSym0 x1627856175 acc1627856174 y1627856176) l # | |
data MapAccumLSym1 (l :: TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (l :: TyFun acc1627856174 (TyFun [x1627856175] (acc1627856174, [y1627856176]) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) -> TyFun acc1627856174 (TyFun [x1627856175] (acc1627856174, [y1627856176]) -> Type) -> *) (MapAccumLSym1 x1627856175 acc1627856174 y1627856176) # | |
| type Apply acc1627856174 (TyFun [x1627856175] (acc1627856174, [y1627856176]) -> Type) (MapAccumLSym1 x1627856175 acc1627856174 y1627856176 l1) l2 # | |
data MapAccumLSym2 (l :: TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (l :: acc1627856174) (l :: TyFun [x1627856175] (acc1627856174, [y1627856176])) #
Instances
| SuppressUnusedWarnings ((TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) -> acc1627856174 -> TyFun [x1627856175] (acc1627856174, [y1627856176]) -> *) (MapAccumLSym2 x1627856175 acc1627856174 y1627856176) # | |
| type Apply [x] (acc, [y]) (MapAccumLSym2 x acc y l1 l2) l3 # | |
type MapAccumLSym3 (t :: TyFun acc1627856174 (TyFun x1627856175 (acc1627856174, y1627856176) -> Type) -> Type) (t :: acc1627856174) (t :: [x1627856175]) = MapAccumL t t t #
data MapAccumRSym0 (l :: TyFun (TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (TyFun acc1627856171 (TyFun [x1627856172] (acc1627856171, [y1627856173]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (TyFun acc1627856171 (TyFun [x1627856172] (acc1627856171, [y1627856173]) -> Type) -> Type) -> *) (MapAccumRSym0 x1627856172 acc1627856171 y1627856173) # | |
| type Apply (TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (TyFun acc1627856171 (TyFun [x1627856172] (acc1627856171, [y1627856173]) -> Type) -> Type) (MapAccumRSym0 x1627856172 acc1627856171 y1627856173) l # | |
data MapAccumRSym1 (l :: TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (l :: TyFun acc1627856171 (TyFun [x1627856172] (acc1627856171, [y1627856173]) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) -> TyFun acc1627856171 (TyFun [x1627856172] (acc1627856171, [y1627856173]) -> Type) -> *) (MapAccumRSym1 x1627856172 acc1627856171 y1627856173) # | |
| type Apply acc1627856171 (TyFun [x1627856172] (acc1627856171, [y1627856173]) -> Type) (MapAccumRSym1 x1627856172 acc1627856171 y1627856173 l1) l2 # | |
data MapAccumRSym2 (l :: TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (l :: acc1627856171) (l :: TyFun [x1627856172] (acc1627856171, [y1627856173])) #
Instances
| SuppressUnusedWarnings ((TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) -> acc1627856171 -> TyFun [x1627856172] (acc1627856171, [y1627856173]) -> *) (MapAccumRSym2 x1627856172 acc1627856171 y1627856173) # | |
| type Apply [x] (acc, [y]) (MapAccumRSym2 x acc y l1 l2) l3 # | |
type MapAccumRSym3 (t :: TyFun acc1627856171 (TyFun x1627856172 (acc1627856171, y1627856173) -> Type) -> Type) (t :: acc1627856171) (t :: [x1627856172]) = MapAccumR t t t #
data ReplicateSym0 (l :: TyFun Nat (TyFun a1627856085 [a1627856085] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun Nat (TyFun a1627856085 [a1627856085] -> Type) -> *) (ReplicateSym0 a1627856085) # | |
| type Apply Nat (TyFun a1627856085 [a1627856085] -> Type) (ReplicateSym0 a1627856085) l # | |
data ReplicateSym1 (l :: Nat) (l :: TyFun a1627856085 [a1627856085]) #
Instances
| SuppressUnusedWarnings (Nat -> TyFun a1627856085 [a1627856085] -> *) (ReplicateSym1 a1627856085) # | |
| type Apply a [a] (ReplicateSym1 a l1) l2 # | |
type ReplicateSym2 (t :: Nat) (t :: a1627856085) = Replicate t t #
data UnfoldrSym0 (l :: TyFun (TyFun b1627856169 (Maybe (a1627856170, b1627856169)) -> Type) (TyFun b1627856169 [a1627856170] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun b1627856169 (Maybe (a1627856170, b1627856169)) -> Type) (TyFun b1627856169 [a1627856170] -> Type) -> *) (UnfoldrSym0 b1627856169 a1627856170) # | |
| type Apply (TyFun b1627856169 (Maybe (a1627856170, b1627856169)) -> Type) (TyFun b1627856169 [a1627856170] -> Type) (UnfoldrSym0 b1627856169 a1627856170) l # | |
data UnfoldrSym1 (l :: TyFun b1627856169 (Maybe (a1627856170, b1627856169)) -> Type) (l :: TyFun b1627856169 [a1627856170]) #
Instances
| SuppressUnusedWarnings ((TyFun b1627856169 (Maybe (a1627856170, b1627856169)) -> Type) -> TyFun b1627856169 [a1627856170] -> *) (UnfoldrSym1 b1627856169 a1627856170) # | |
| type Apply b [a] (UnfoldrSym1 b a l1) l2 # | |
type UnfoldrSym2 (t :: TyFun b1627856169 (Maybe (a1627856170, b1627856169)) -> Type) (t :: b1627856169) = Unfoldr t t #
data SplitAtSym0 (l :: TyFun Nat (TyFun [a1627856099] ([a1627856099], [a1627856099]) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun Nat (TyFun [a1627856099] ([a1627856099], [a1627856099]) -> Type) -> *) (SplitAtSym0 a1627856099) # | |
| type Apply Nat (TyFun [a1627856099] ([a1627856099], [a1627856099]) -> Type) (SplitAtSym0 a1627856099) l # | |
data SplitAtSym1 (l :: Nat) (l :: TyFun [a1627856099] ([a1627856099], [a1627856099])) #
Instances
| SuppressUnusedWarnings (Nat -> TyFun [a1627856099] ([a1627856099], [a1627856099]) -> *) (SplitAtSym1 a1627856099) # | |
| type Apply [a] ([a], [a]) (SplitAtSym1 a l1) l2 # | |
type SplitAtSym2 (t :: Nat) (t :: [a1627856099]) = SplitAt t t #
data TakeWhileSym0 (l :: TyFun (TyFun a1627856106 Bool -> Type) (TyFun [a1627856106] [a1627856106] -> Type)) #
data TakeWhileSym1 (l :: TyFun a1627856106 Bool -> Type) (l :: TyFun [a1627856106] [a1627856106]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856106 Bool -> Type) -> TyFun [a1627856106] [a1627856106] -> *) (TakeWhileSym1 a1627856106) # | |
| type Apply [a] [a] (TakeWhileSym1 a l1) l2 # | |
data DropWhileSym0 (l :: TyFun (TyFun a1627856105 Bool -> Type) (TyFun [a1627856105] [a1627856105] -> Type)) #
data DropWhileSym1 (l :: TyFun a1627856105 Bool -> Type) (l :: TyFun [a1627856105] [a1627856105]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856105 Bool -> Type) -> TyFun [a1627856105] [a1627856105] -> *) (DropWhileSym1 a1627856105) # | |
| type Apply [a] [a] (DropWhileSym1 a l1) l2 # | |
data DropWhileEndSym0 (l :: TyFun (TyFun a1627856104 Bool -> Type) (TyFun [a1627856104] [a1627856104] -> Type)) #
data DropWhileEndSym1 (l :: TyFun a1627856104 Bool -> Type) (l :: TyFun [a1627856104] [a1627856104]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856104 Bool -> Type) -> TyFun [a1627856104] [a1627856104] -> *) (DropWhileEndSym1 a1627856104) # | |
| type Apply [a] [a] (DropWhileEndSym1 a l1) l2 # | |
type DropWhileEndSym2 (t :: TyFun a1627856104 Bool -> Type) (t :: [a1627856104]) = DropWhileEnd t t #
data SpanSym0 (l :: TyFun (TyFun a1627856103 Bool -> Type) (TyFun [a1627856103] ([a1627856103], [a1627856103]) -> Type)) #
data SpanSym1 (l :: TyFun a1627856103 Bool -> Type) (l :: TyFun [a1627856103] ([a1627856103], [a1627856103])) #
data BreakSym0 (l :: TyFun (TyFun a1627856102 Bool -> Type) (TyFun [a1627856102] ([a1627856102], [a1627856102]) -> Type)) #
data BreakSym1 (l :: TyFun a1627856102 Bool -> Type) (l :: TyFun [a1627856102] ([a1627856102], [a1627856102])) #
data IsPrefixOfSym0 (l :: TyFun [a1627856166] (TyFun [a1627856166] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856166] (TyFun [a1627856166] Bool -> Type) -> *) (IsPrefixOfSym0 a1627856166) # | |
| type Apply [a1627856166] (TyFun [a1627856166] Bool -> Type) (IsPrefixOfSym0 a1627856166) l # | |
data IsPrefixOfSym1 (l :: [a1627856166]) (l :: TyFun [a1627856166] Bool) #
Instances
| SuppressUnusedWarnings ([a1627856166] -> TyFun [a1627856166] Bool -> *) (IsPrefixOfSym1 a1627856166) # | |
| type Apply [a] Bool (IsPrefixOfSym1 a l1) l2 # | |
type IsPrefixOfSym2 (t :: [a1627856166]) (t :: [a1627856166]) = IsPrefixOf t t #
data IsSuffixOfSym0 (l :: TyFun [a1627856165] (TyFun [a1627856165] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856165] (TyFun [a1627856165] Bool -> Type) -> *) (IsSuffixOfSym0 a1627856165) # | |
| type Apply [a1627856165] (TyFun [a1627856165] Bool -> Type) (IsSuffixOfSym0 a1627856165) l # | |
data IsSuffixOfSym1 (l :: [a1627856165]) (l :: TyFun [a1627856165] Bool) #
Instances
| SuppressUnusedWarnings ([a1627856165] -> TyFun [a1627856165] Bool -> *) (IsSuffixOfSym1 a1627856165) # | |
| type Apply [a] Bool (IsSuffixOfSym1 a l1) l2 # | |
type IsSuffixOfSym2 (t :: [a1627856165]) (t :: [a1627856165]) = IsSuffixOf t t #
data IsInfixOfSym0 (l :: TyFun [a1627856164] (TyFun [a1627856164] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856164] (TyFun [a1627856164] Bool -> Type) -> *) (IsInfixOfSym0 a1627856164) # | |
| type Apply [a1627856164] (TyFun [a1627856164] Bool -> Type) (IsInfixOfSym0 a1627856164) l # | |
data IsInfixOfSym1 (l :: [a1627856164]) (l :: TyFun [a1627856164] Bool) #
Instances
| SuppressUnusedWarnings ([a1627856164] -> TyFun [a1627856164] Bool -> *) (IsInfixOfSym1 a1627856164) # | |
| type Apply [a] Bool (IsInfixOfSym1 a l1) l2 # | |
type IsInfixOfSym2 (t :: [a1627856164]) (t :: [a1627856164]) = IsInfixOf t t #
data NotElemSym0 (l :: TyFun a1627856162 (TyFun [a1627856162] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a1627856162 (TyFun [a1627856162] Bool -> Type) -> *) (NotElemSym0 a1627856162) # | |
| type Apply a1627856162 (TyFun [a1627856162] Bool -> Type) (NotElemSym0 a1627856162) l # | |
data NotElemSym1 (l :: a1627856162) (l :: TyFun [a1627856162] Bool) #
Instances
| SuppressUnusedWarnings (a1627856162 -> TyFun [a1627856162] Bool -> *) (NotElemSym1 a1627856162) # | |
| type Apply [a] Bool (NotElemSym1 a l1) l2 # | |
type NotElemSym2 (t :: a1627856162) (t :: [a1627856162]) = NotElem t t #
data LookupSym0 (l :: TyFun a1627856091 (TyFun [(a1627856091, b1627856092)] (Maybe b1627856092) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a1627856091 (TyFun [(a1627856091, b1627856092)] (Maybe b1627856092) -> Type) -> *) (LookupSym0 a1627856091 b1627856092) # | |
| type Apply a1627856091 (TyFun [(a1627856091, b1627856092)] (Maybe b1627856092) -> Type) (LookupSym0 a1627856091 b1627856092) l # | |
data LookupSym1 (l :: a1627856091) (l :: TyFun [(a1627856091, b1627856092)] (Maybe b1627856092)) #
Instances
| SuppressUnusedWarnings (a1627856091 -> TyFun [(a1627856091, b1627856092)] (Maybe b1627856092) -> *) (LookupSym1 a1627856091 b1627856092) # | |
| type Apply [(a, b)] (Maybe b) (LookupSym1 a b l1) l2 # | |
type LookupSym2 (t :: a1627856091) (t :: [(a1627856091, b1627856092)]) = Lookup t t #
data FindSym0 (l :: TyFun (TyFun a1627856113 Bool -> Type) (TyFun [a1627856113] (Maybe a1627856113) -> Type)) #
data FindSym1 (l :: TyFun a1627856113 Bool -> Type) (l :: TyFun [a1627856113] (Maybe a1627856113)) #
data FilterSym0 (l :: TyFun (TyFun a1627856114 Bool -> Type) (TyFun [a1627856114] [a1627856114] -> Type)) #
data FilterSym1 (l :: TyFun a1627856114 Bool -> Type) (l :: TyFun [a1627856114] [a1627856114]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856114 Bool -> Type) -> TyFun [a1627856114] [a1627856114] -> *) (FilterSym1 a1627856114) # | |
| type Apply [a] [a] (FilterSym1 a l1) l2 # | |
data PartitionSym0 (l :: TyFun (TyFun a1627856090 Bool -> Type) (TyFun [a1627856090] ([a1627856090], [a1627856090]) -> Type)) #
Instances
data PartitionSym1 (l :: TyFun a1627856090 Bool -> Type) (l :: TyFun [a1627856090] ([a1627856090], [a1627856090])) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856090 Bool -> Type) -> TyFun [a1627856090] ([a1627856090], [a1627856090]) -> *) (PartitionSym1 a1627856090) # | |
| type Apply [a] ([a], [a]) (PartitionSym1 a l1) l2 # | |
data ElemIndexSym1 (l :: a1627856112) (l :: TyFun [a1627856112] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings (a1627856112 -> TyFun [a1627856112] (Maybe Nat) -> *) (ElemIndexSym1 a1627856112) # | |
| type Apply [a] (Maybe Nat) (ElemIndexSym1 a l1) l2 # | |
type ElemIndexSym2 (t :: a1627856112) (t :: [a1627856112]) = ElemIndex t t #
data ElemIndicesSym0 (l :: TyFun a1627856111 (TyFun [a1627856111] [Nat] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a1627856111 (TyFun [a1627856111] [Nat] -> Type) -> *) (ElemIndicesSym0 a1627856111) # | |
| type Apply a1627856111 (TyFun [a1627856111] [Nat] -> Type) (ElemIndicesSym0 a1627856111) l # | |
data ElemIndicesSym1 (l :: a1627856111) (l :: TyFun [a1627856111] [Nat]) #
Instances
| SuppressUnusedWarnings (a1627856111 -> TyFun [a1627856111] [Nat] -> *) (ElemIndicesSym1 a1627856111) # | |
| type Apply [a] [Nat] (ElemIndicesSym1 a l1) l2 # | |
type ElemIndicesSym2 (t :: a1627856111) (t :: [a1627856111]) = ElemIndices t t #
data FindIndexSym0 (l :: TyFun (TyFun a1627856110 Bool -> Type) (TyFun [a1627856110] (Maybe Nat) -> Type)) #
data FindIndexSym1 (l :: TyFun a1627856110 Bool -> Type) (l :: TyFun [a1627856110] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856110 Bool -> Type) -> TyFun [a1627856110] (Maybe Nat) -> *) (FindIndexSym1 a1627856110) # | |
| type Apply [a] (Maybe Nat) (FindIndexSym1 a l1) l2 # | |
data FindIndicesSym0 (l :: TyFun (TyFun a1627856109 Bool -> Type) (TyFun [a1627856109] [Nat] -> Type)) #
data FindIndicesSym1 (l :: TyFun a1627856109 Bool -> Type) (l :: TyFun [a1627856109] [Nat]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856109 Bool -> Type) -> TyFun [a1627856109] [Nat] -> *) (FindIndicesSym1 a1627856109) # | |
| type Apply [a] [Nat] (FindIndicesSym1 a l1) l2 # | |
type FindIndicesSym2 (t :: TyFun a1627856109 Bool -> Type) (t :: [a1627856109]) = FindIndices t t #
data ZipSym0 (l :: TyFun [a1627856160] (TyFun [b1627856161] [(a1627856160, b1627856161)] -> Type)) #
data Zip3Sym0 (l :: TyFun [a1627856157] (TyFun [b1627856158] (TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856157] (TyFun [b1627856158] (TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)] -> Type) -> Type) -> *) (Zip3Sym0 a1627856157 b1627856158 c1627856159) # | |
| type Apply [a1627856157] (TyFun [b1627856158] (TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)] -> Type) -> Type) (Zip3Sym0 a1627856157 b1627856158 c1627856159) l # | |
data Zip3Sym1 (l :: [a1627856157]) (l :: TyFun [b1627856158] (TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)] -> Type)) #
Instances
| SuppressUnusedWarnings ([a1627856157] -> TyFun [b1627856158] (TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)] -> Type) -> *) (Zip3Sym1 a1627856157 b1627856158 c1627856159) # | |
| type Apply [b1627856158] (TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)] -> Type) (Zip3Sym1 a1627856157 b1627856158 c1627856159 l1) l2 # | |
data Zip3Sym2 (l :: [a1627856157]) (l :: [b1627856158]) (l :: TyFun [c1627856159] [(a1627856157, b1627856158, c1627856159)]) #
data ZipWithSym0 (l :: TyFun (TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (TyFun [a1627856154] (TyFun [b1627856155] [c1627856156] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (TyFun [a1627856154] (TyFun [b1627856155] [c1627856156] -> Type) -> Type) -> *) (ZipWithSym0 a1627856154 b1627856155 c1627856156) # | |
| type Apply (TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (TyFun [a1627856154] (TyFun [b1627856155] [c1627856156] -> Type) -> Type) (ZipWithSym0 a1627856154 b1627856155 c1627856156) l # | |
data ZipWithSym1 (l :: TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (l :: TyFun [a1627856154] (TyFun [b1627856155] [c1627856156] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) -> TyFun [a1627856154] (TyFun [b1627856155] [c1627856156] -> Type) -> *) (ZipWithSym1 a1627856154 b1627856155 c1627856156) # | |
| type Apply [a1627856154] (TyFun [b1627856155] [c1627856156] -> Type) (ZipWithSym1 a1627856154 b1627856155 c1627856156 l1) l2 # | |
data ZipWithSym2 (l :: TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (l :: [a1627856154]) (l :: TyFun [b1627856155] [c1627856156]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) -> [a1627856154] -> TyFun [b1627856155] [c1627856156] -> *) (ZipWithSym2 a1627856154 b1627856155 c1627856156) # | |
| type Apply [b] [c] (ZipWithSym2 a b c l1 l2) l3 # | |
type ZipWithSym3 (t :: TyFun a1627856154 (TyFun b1627856155 c1627856156 -> Type) -> Type) (t :: [a1627856154]) (t :: [b1627856155]) = ZipWith t t t #
data ZipWith3Sym0 (l :: TyFun (TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (TyFun [a1627856150] (TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (TyFun [a1627856150] (TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) -> Type) -> Type) -> *) (ZipWith3Sym0 a1627856150 b1627856151 c1627856152 d1627856153) # | |
| type Apply (TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (TyFun [a1627856150] (TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) -> Type) -> Type) (ZipWith3Sym0 a1627856150 b1627856151 c1627856152 d1627856153) l # | |
data ZipWith3Sym1 (l :: TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (l :: TyFun [a1627856150] (TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) -> TyFun [a1627856150] (TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) -> Type) -> *) (ZipWith3Sym1 a1627856150 b1627856151 c1627856152 d1627856153) # | |
| type Apply [a1627856150] (TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) -> Type) (ZipWith3Sym1 a1627856150 b1627856151 c1627856152 d1627856153 l1) l2 # | |
data ZipWith3Sym2 (l :: TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (l :: [a1627856150]) (l :: TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) -> [a1627856150] -> TyFun [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) -> *) (ZipWith3Sym2 a1627856150 b1627856151 c1627856152 d1627856153) # | |
| type Apply [b1627856151] (TyFun [c1627856152] [d1627856153] -> Type) (ZipWith3Sym2 a1627856150 b1627856151 c1627856152 d1627856153 l1 l2) l3 # | |
data ZipWith3Sym3 (l :: TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (l :: [a1627856150]) (l :: [b1627856151]) (l :: TyFun [c1627856152] [d1627856153]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) -> [a1627856150] -> [b1627856151] -> TyFun [c1627856152] [d1627856153] -> *) (ZipWith3Sym3 a1627856150 b1627856151 c1627856152 d1627856153) # | |
| type Apply [c] [d] (ZipWith3Sym3 a b c d l1 l2 l3) l4 # | |
type ZipWith3Sym4 (t :: TyFun a1627856150 (TyFun b1627856151 (TyFun c1627856152 d1627856153 -> Type) -> Type) -> Type) (t :: [a1627856150]) (t :: [b1627856151]) (t :: [c1627856152]) = ZipWith3 t t t t #
data Unzip3Sym0 (l :: TyFun [(a1627856145, b1627856146, c1627856147)] ([a1627856145], [b1627856146], [c1627856147])) #
Instances
| SuppressUnusedWarnings (TyFun [(a1627856145, b1627856146, c1627856147)] ([a1627856145], [b1627856146], [c1627856147]) -> *) (Unzip3Sym0 a1627856145 b1627856146 c1627856147) # | |
| type Apply [(a, b, c)] ([a], [b], [c]) (Unzip3Sym0 a b c) l # | |
type Unzip3Sym1 (t :: [(a1627856145, b1627856146, c1627856147)]) = Unzip3 t #
data Unzip4Sym0 (l :: TyFun [(a1627856141, b1627856142, c1627856143, d1627856144)] ([a1627856141], [b1627856142], [c1627856143], [d1627856144])) #
Instances
| SuppressUnusedWarnings (TyFun [(a1627856141, b1627856142, c1627856143, d1627856144)] ([a1627856141], [b1627856142], [c1627856143], [d1627856144]) -> *) (Unzip4Sym0 a1627856141 b1627856142 c1627856143 d1627856144) # | |
| type Apply [(a, b, c, d)] ([a], [b], [c], [d]) (Unzip4Sym0 a b c d) l # | |
type Unzip4Sym1 (t :: [(a1627856141, b1627856142, c1627856143, d1627856144)]) = Unzip4 t #
data Unzip5Sym0 (l :: TyFun [(a1627856136, b1627856137, c1627856138, d1627856139, e1627856140)] ([a1627856136], [b1627856137], [c1627856138], [d1627856139], [e1627856140])) #
Instances
| SuppressUnusedWarnings (TyFun [(a1627856136, b1627856137, c1627856138, d1627856139, e1627856140)] ([a1627856136], [b1627856137], [c1627856138], [d1627856139], [e1627856140]) -> *) (Unzip5Sym0 a1627856136 b1627856137 c1627856138 d1627856139 e1627856140) # | |
| type Apply [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) (Unzip5Sym0 a b c d e) l # | |
type Unzip5Sym1 (t :: [(a1627856136, b1627856137, c1627856138, d1627856139, e1627856140)]) = Unzip5 t #
data Unzip6Sym0 (l :: TyFun [(a1627856130, b1627856131, c1627856132, d1627856133, e1627856134, f1627856135)] ([a1627856130], [b1627856131], [c1627856132], [d1627856133], [e1627856134], [f1627856135])) #
Instances
| SuppressUnusedWarnings (TyFun [(a1627856130, b1627856131, c1627856132, d1627856133, e1627856134, f1627856135)] ([a1627856130], [b1627856131], [c1627856132], [d1627856133], [e1627856134], [f1627856135]) -> *) (Unzip6Sym0 a1627856130 b1627856131 c1627856132 d1627856133 e1627856134 f1627856135) # | |
| 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 :: [(a1627856130, b1627856131, c1627856132, d1627856133, e1627856134, f1627856135)]) = Unzip6 t #
data Unzip7Sym0 (l :: TyFun [(a1627856123, b1627856124, c1627856125, d1627856126, e1627856127, f1627856128, g1627856129)] ([a1627856123], [b1627856124], [c1627856125], [d1627856126], [e1627856127], [f1627856128], [g1627856129])) #
Instances
| SuppressUnusedWarnings (TyFun [(a1627856123, b1627856124, c1627856125, d1627856126, e1627856127, f1627856128, g1627856129)] ([a1627856123], [b1627856124], [c1627856125], [d1627856126], [e1627856127], [f1627856128], [g1627856129]) -> *) (Unzip7Sym0 a1627856123 b1627856124 c1627856125 d1627856126 e1627856127 f1627856128 g1627856129) # | |
| 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 :: [(a1627856123, b1627856124, c1627856125, d1627856126, e1627856127, f1627856128, g1627856129)]) = Unzip7 t #
data DeleteSym0 (l :: TyFun a1627856122 (TyFun [a1627856122] [a1627856122] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a1627856122 (TyFun [a1627856122] [a1627856122] -> Type) -> *) (DeleteSym0 a1627856122) # | |
| type Apply a1627856122 (TyFun [a1627856122] [a1627856122] -> Type) (DeleteSym0 a1627856122) l # | |
data DeleteSym1 (l :: a1627856122) (l :: TyFun [a1627856122] [a1627856122]) #
Instances
| SuppressUnusedWarnings (a1627856122 -> TyFun [a1627856122] [a1627856122] -> *) (DeleteSym1 a1627856122) # | |
| type Apply [a] [a] (DeleteSym1 a l1) l2 # | |
type DeleteSym2 (t :: a1627856122) (t :: [a1627856122]) = Delete t t #
data IntersectSym0 (l :: TyFun [a1627856108] (TyFun [a1627856108] [a1627856108] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856108] (TyFun [a1627856108] [a1627856108] -> Type) -> *) (IntersectSym0 a1627856108) # | |
| type Apply [a1627856108] (TyFun [a1627856108] [a1627856108] -> Type) (IntersectSym0 a1627856108) l # | |
data IntersectSym1 (l :: [a1627856108]) (l :: TyFun [a1627856108] [a1627856108]) #
Instances
| SuppressUnusedWarnings ([a1627856108] -> TyFun [a1627856108] [a1627856108] -> *) (IntersectSym1 a1627856108) # | |
| type Apply [a] [a] (IntersectSym1 a l1) l2 # | |
type IntersectSym2 (t :: [a1627856108]) (t :: [a1627856108]) = Intersect t t #
data InsertSym0 (l :: TyFun a1627856095 (TyFun [a1627856095] [a1627856095] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun a1627856095 (TyFun [a1627856095] [a1627856095] -> Type) -> *) (InsertSym0 a1627856095) # | |
| type Apply a1627856095 (TyFun [a1627856095] [a1627856095] -> Type) (InsertSym0 a1627856095) l # | |
data InsertSym1 (l :: a1627856095) (l :: TyFun [a1627856095] [a1627856095]) #
Instances
| SuppressUnusedWarnings (a1627856095 -> TyFun [a1627856095] [a1627856095] -> *) (InsertSym1 a1627856095) # | |
| type Apply [a] [a] (InsertSym1 a l1) l2 # | |
type InsertSym2 (t :: a1627856095) (t :: [a1627856095]) = Insert t t #
data NubBySym0 (l :: TyFun (TyFun a1627856081 (TyFun a1627856081 Bool -> Type) -> Type) (TyFun [a1627856081] [a1627856081] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856081 (TyFun a1627856081 Bool -> Type) -> Type) (TyFun [a1627856081] [a1627856081] -> Type) -> *) (NubBySym0 a1627856081) # | |
| type Apply (TyFun a1627856081 (TyFun a1627856081 Bool -> Type) -> Type) (TyFun [a1627856081] [a1627856081] -> Type) (NubBySym0 a1627856081) l # | |
data NubBySym1 (l :: TyFun a1627856081 (TyFun a1627856081 Bool -> Type) -> Type) (l :: TyFun [a1627856081] [a1627856081]) #
type NubBySym2 (t :: TyFun a1627856081 (TyFun a1627856081 Bool -> Type) -> Type) (t :: [a1627856081]) = NubBy t t #
data DeleteBySym0 (l :: TyFun (TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (TyFun a1627856120 (TyFun [a1627856120] [a1627856120] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (TyFun a1627856120 (TyFun [a1627856120] [a1627856120] -> Type) -> Type) -> *) (DeleteBySym0 a1627856120) # | |
| type Apply (TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (TyFun a1627856120 (TyFun [a1627856120] [a1627856120] -> Type) -> Type) (DeleteBySym0 a1627856120) l # | |
data DeleteBySym1 (l :: TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (l :: TyFun a1627856120 (TyFun [a1627856120] [a1627856120] -> Type)) #
data DeleteBySym2 (l :: TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (l :: a1627856120) (l :: TyFun [a1627856120] [a1627856120]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) -> a1627856120 -> TyFun [a1627856120] [a1627856120] -> *) (DeleteBySym2 a1627856120) # | |
| type Apply [a] [a] (DeleteBySym2 a l1 l2) l3 # | |
type DeleteBySym3 (t :: TyFun a1627856120 (TyFun a1627856120 Bool -> Type) -> Type) (t :: a1627856120) (t :: [a1627856120]) = DeleteBy t t t #
data DeleteFirstsBySym0 (l :: TyFun (TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (TyFun [a1627856119] (TyFun [a1627856119] [a1627856119] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (TyFun [a1627856119] (TyFun [a1627856119] [a1627856119] -> Type) -> Type) -> *) (DeleteFirstsBySym0 a1627856119) # | |
| type Apply (TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (TyFun [a1627856119] (TyFun [a1627856119] [a1627856119] -> Type) -> Type) (DeleteFirstsBySym0 a1627856119) l # | |
data DeleteFirstsBySym1 (l :: TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (l :: TyFun [a1627856119] (TyFun [a1627856119] [a1627856119] -> Type)) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) -> TyFun [a1627856119] (TyFun [a1627856119] [a1627856119] -> Type) -> *) (DeleteFirstsBySym1 a1627856119) # | |
| type Apply [a1627856119] (TyFun [a1627856119] [a1627856119] -> Type) (DeleteFirstsBySym1 a1627856119 l1) l2 # | |
data DeleteFirstsBySym2 (l :: TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (l :: [a1627856119]) (l :: TyFun [a1627856119] [a1627856119]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) -> [a1627856119] -> TyFun [a1627856119] [a1627856119] -> *) (DeleteFirstsBySym2 a1627856119) # | |
| type Apply [a] [a] (DeleteFirstsBySym2 a l1 l2) l3 # | |
type DeleteFirstsBySym3 (t :: TyFun a1627856119 (TyFun a1627856119 Bool -> Type) -> Type) (t :: [a1627856119]) (t :: [a1627856119]) = DeleteFirstsBy t t t #
data UnionBySym0 (l :: TyFun (TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (TyFun [a1627856079] (TyFun [a1627856079] [a1627856079] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (TyFun [a1627856079] (TyFun [a1627856079] [a1627856079] -> Type) -> Type) -> *) (UnionBySym0 a1627856079) # | |
| type Apply (TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (TyFun [a1627856079] (TyFun [a1627856079] [a1627856079] -> Type) -> Type) (UnionBySym0 a1627856079) l # | |
data UnionBySym1 (l :: TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (l :: TyFun [a1627856079] (TyFun [a1627856079] [a1627856079] -> Type)) #
data UnionBySym2 (l :: TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (l :: [a1627856079]) (l :: TyFun [a1627856079] [a1627856079]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) -> [a1627856079] -> TyFun [a1627856079] [a1627856079] -> *) (UnionBySym2 a1627856079) # | |
| type Apply [a] [a] (UnionBySym2 a l1 l2) l3 # | |
type UnionBySym3 (t :: TyFun a1627856079 (TyFun a1627856079 Bool -> Type) -> Type) (t :: [a1627856079]) (t :: [a1627856079]) = UnionBy t t t #
data IntersectBySym0 (l :: TyFun (TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (TyFun [a1627856107] (TyFun [a1627856107] [a1627856107] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (TyFun [a1627856107] (TyFun [a1627856107] [a1627856107] -> Type) -> Type) -> *) (IntersectBySym0 a1627856107) # | |
| type Apply (TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (TyFun [a1627856107] (TyFun [a1627856107] [a1627856107] -> Type) -> Type) (IntersectBySym0 a1627856107) l # | |
data IntersectBySym1 (l :: TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (l :: TyFun [a1627856107] (TyFun [a1627856107] [a1627856107] -> Type)) #
Instances
data IntersectBySym2 (l :: TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (l :: [a1627856107]) (l :: TyFun [a1627856107] [a1627856107]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) -> [a1627856107] -> TyFun [a1627856107] [a1627856107] -> *) (IntersectBySym2 a1627856107) # | |
| type Apply [a] [a] (IntersectBySym2 a l1 l2) l3 # | |
type IntersectBySym3 (t :: TyFun a1627856107 (TyFun a1627856107 Bool -> Type) -> Type) (t :: [a1627856107]) (t :: [a1627856107]) = IntersectBy t t t #
data GroupBySym0 (l :: TyFun (TyFun a1627856093 (TyFun a1627856093 Bool -> Type) -> Type) (TyFun [a1627856093] [[a1627856093]] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856093 (TyFun a1627856093 Bool -> Type) -> Type) (TyFun [a1627856093] [[a1627856093]] -> Type) -> *) (GroupBySym0 a1627856093) # | |
| type Apply (TyFun a1627856093 (TyFun a1627856093 Bool -> Type) -> Type) (TyFun [a1627856093] [[a1627856093]] -> Type) (GroupBySym0 a1627856093) l # | |
data GroupBySym1 (l :: TyFun a1627856093 (TyFun a1627856093 Bool -> Type) -> Type) (l :: TyFun [a1627856093] [[a1627856093]]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856093 (TyFun a1627856093 Bool -> Type) -> Type) -> TyFun [a1627856093] [[a1627856093]] -> *) (GroupBySym1 a1627856093) # | |
| type Apply [a] [[a]] (GroupBySym1 a l1) l2 # | |
type GroupBySym2 (t :: TyFun a1627856093 (TyFun a1627856093 Bool -> Type) -> Type) (t :: [a1627856093]) = GroupBy t t #
data SortBySym0 (l :: TyFun (TyFun a1627856118 (TyFun a1627856118 Ordering -> Type) -> Type) (TyFun [a1627856118] [a1627856118] -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856118 (TyFun a1627856118 Ordering -> Type) -> Type) (TyFun [a1627856118] [a1627856118] -> Type) -> *) (SortBySym0 a1627856118) # | |
| type Apply (TyFun a1627856118 (TyFun a1627856118 Ordering -> Type) -> Type) (TyFun [a1627856118] [a1627856118] -> Type) (SortBySym0 a1627856118) l # | |
data SortBySym1 (l :: TyFun a1627856118 (TyFun a1627856118 Ordering -> Type) -> Type) (l :: TyFun [a1627856118] [a1627856118]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856118 (TyFun a1627856118 Ordering -> Type) -> Type) -> TyFun [a1627856118] [a1627856118] -> *) (SortBySym1 a1627856118) # | |
| type Apply [a] [a] (SortBySym1 a l1) l2 # | |
type SortBySym2 (t :: TyFun a1627856118 (TyFun a1627856118 Ordering -> Type) -> Type) (t :: [a1627856118]) = SortBy t t #
data InsertBySym0 (l :: TyFun (TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (TyFun a1627856117 (TyFun [a1627856117] [a1627856117] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (TyFun a1627856117 (TyFun [a1627856117] [a1627856117] -> Type) -> Type) -> *) (InsertBySym0 a1627856117) # | |
| type Apply (TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (TyFun a1627856117 (TyFun [a1627856117] [a1627856117] -> Type) -> Type) (InsertBySym0 a1627856117) l # | |
data InsertBySym1 (l :: TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (l :: TyFun a1627856117 (TyFun [a1627856117] [a1627856117] -> Type)) #
Instances
data InsertBySym2 (l :: TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (l :: a1627856117) (l :: TyFun [a1627856117] [a1627856117]) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) -> a1627856117 -> TyFun [a1627856117] [a1627856117] -> *) (InsertBySym2 a1627856117) # | |
| type Apply [a] [a] (InsertBySym2 a l1 l2) l3 # | |
type InsertBySym3 (t :: TyFun a1627856117 (TyFun a1627856117 Ordering -> Type) -> Type) (t :: a1627856117) (t :: [a1627856117]) = InsertBy t t t #
data MaximumBySym0 (l :: TyFun (TyFun a1627856116 (TyFun a1627856116 Ordering -> Type) -> Type) (TyFun [a1627856116] a1627856116 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856116 (TyFun a1627856116 Ordering -> Type) -> Type) (TyFun [a1627856116] a1627856116 -> Type) -> *) (MaximumBySym0 a1627856116) # | |
| type Apply (TyFun a1627856116 (TyFun a1627856116 Ordering -> Type) -> Type) (TyFun [a1627856116] a1627856116 -> Type) (MaximumBySym0 a1627856116) l # | |
data MaximumBySym1 (l :: TyFun a1627856116 (TyFun a1627856116 Ordering -> Type) -> Type) (l :: TyFun [a1627856116] a1627856116) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856116 (TyFun a1627856116 Ordering -> Type) -> Type) -> TyFun [a1627856116] a1627856116 -> *) (MaximumBySym1 a1627856116) # | |
| type Apply [a] a (MaximumBySym1 a l1) l2 # | |
type MaximumBySym2 (t :: TyFun a1627856116 (TyFun a1627856116 Ordering -> Type) -> Type) (t :: [a1627856116]) = MaximumBy t t #
data MinimumBySym0 (l :: TyFun (TyFun a1627856115 (TyFun a1627856115 Ordering -> Type) -> Type) (TyFun [a1627856115] a1627856115 -> Type)) #
Instances
| SuppressUnusedWarnings (TyFun (TyFun a1627856115 (TyFun a1627856115 Ordering -> Type) -> Type) (TyFun [a1627856115] a1627856115 -> Type) -> *) (MinimumBySym0 a1627856115) # | |
| type Apply (TyFun a1627856115 (TyFun a1627856115 Ordering -> Type) -> Type) (TyFun [a1627856115] a1627856115 -> Type) (MinimumBySym0 a1627856115) l # | |
data MinimumBySym1 (l :: TyFun a1627856115 (TyFun a1627856115 Ordering -> Type) -> Type) (l :: TyFun [a1627856115] a1627856115) #
Instances
| SuppressUnusedWarnings ((TyFun a1627856115 (TyFun a1627856115 Ordering -> Type) -> Type) -> TyFun [a1627856115] a1627856115 -> *) (MinimumBySym1 a1627856115) # | |
| type Apply [a] a (MinimumBySym1 a l1) l2 # | |
type MinimumBySym2 (t :: TyFun a1627856115 (TyFun a1627856115 Ordering -> Type) -> Type) (t :: [a1627856115]) = MinimumBy t t #
data GenericLengthSym0 (l :: TyFun [a1627856077] i1627856076) #
Instances
| SuppressUnusedWarnings (TyFun [a1627856077] i1627856076 -> *) (GenericLengthSym0 a1627856077 i1627856076) # | |
| type Apply [a] k2 (GenericLengthSym0 a k2) l # | |
type GenericLengthSym1 (t :: [a1627856077]) = GenericLength t #