| 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.
Synopsis
- 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 AnySym0 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)
- 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 Unlines (a :: [Symbol]) :: Symbol where ...
- sUnlines :: forall (t :: [Symbol]). Sing t -> Sing (Apply UnlinesSym0 t :: Symbol)
- type family Unwords (a :: [Symbol]) :: Symbol where ...
- sUnwords :: forall (t :: [Symbol]). Sing t -> Sing (Apply UnwordsSym0 t :: Symbol)
- type family Nub (a :: [a]) :: [a] where ...
- sNub :: forall (t :: [a]). SEq a => Sing t -> Sing (Apply NubSym0 t :: [a])
- type family Delete (a :: a) (a :: [a]) :: [a] where ...
- sDelete :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply DeleteSym0 t) t :: [a])
- type family (a :: [a]) \\ (a :: [a]) :: [a] where ...
- (%\\) :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply (\\@#@$) t) t :: [a])
- type family Union (a :: [a]) (a :: [a]) :: [a] where ...
- sUnion :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply UnionSym0 t) t :: [a])
- type family Intersect (a :: [a]) (a :: [a]) :: [a] where ...
- sIntersect :: forall (t :: [a]) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply IntersectSym0 t) t :: [a])
- type family Insert (a :: a) (a :: [a]) :: [a] where ...
- sInsert :: forall (t :: a) (t :: [a]). SOrd a => Sing t -> Sing t -> Sing (Apply (Apply InsertSym0 t) t :: [a])
- type family Sort (a :: [a]) :: [a] where ...
- sSort :: forall (t :: [a]). SOrd a => Sing t -> Sing (Apply SortSym0 t :: [a])
- type family NubBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [a] where ...
- sNubBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply NubBySym0 t) t :: [a])
- type family DeleteBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
- sDeleteBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: a) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply DeleteBySym0 t) t) t :: [a])
- type family DeleteFirstsBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- sDeleteFirstsBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply DeleteFirstsBySym0 t) t) t :: [a])
- type family UnionBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- sUnionBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply UnionBySym0 t) t) t :: [a])
- type family IntersectBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) (a :: [a]) :: [a] where ...
- sIntersectBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply IntersectBySym0 t) t) t :: [a])
- type family GroupBy (a :: TyFun a (TyFun a Bool -> Type) -> Type) (a :: [a]) :: [[a]] where ...
- sGroupBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply GroupBySym0 t) t :: [[a]])
- type family SortBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: [a] where ...
- sSortBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SortBySym0 t) t :: [a])
- type family InsertBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ...
- sInsertBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: a) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply InsertBySym0 t) t) t :: [a])
- type family MaximumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
- sMaximumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MaximumBySym0 t) t :: a)
- type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ...
- sMinimumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MinimumBySym0 t) t :: a)
- type family GenericLength (a :: [a]) :: i where ...
- sGenericLength :: forall (t :: [a]). SNum i => Sing t -> Sing (Apply GenericLengthSym0 t :: i)
- type NilSym0 = '[]
- data (:@#@$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type))
- data (l :: a3530822107858468865) :@#@$$ (l :: TyFun [a3530822107858468865] [a3530822107858468865])
- type (:@#@$$$) (t :: a3530822107858468865) (t :: [a3530822107858468865]) = (:) t t
- type (++@#@$$$) (t :: [a6989586621679435603]) (t :: [a6989586621679435603]) = (++) t t
- data (l :: [a6989586621679435603]) ++@#@$$ (l :: TyFun [a6989586621679435603] [a6989586621679435603])
- data (++@#@$) (l :: TyFun [a6989586621679435603] (TyFun [a6989586621679435603] [a6989586621679435603] -> Type))
- data HeadSym0 (l :: TyFun [a6989586621679458494] a6989586621679458494)
- type HeadSym1 (t :: [a6989586621679458494]) = Head t
- data LastSym0 (l :: TyFun [a6989586621679458493] a6989586621679458493)
- type LastSym1 (t :: [a6989586621679458493]) = Last t
- data TailSym0 (l :: TyFun [a6989586621679458492] [a6989586621679458492])
- type TailSym1 (t :: [a6989586621679458492]) = Tail t
- data InitSym0 (l :: TyFun [a6989586621679458491] [a6989586621679458491])
- type InitSym1 (t :: [a6989586621679458491]) = Init t
- data NullSym0 (l :: TyFun [a6989586621679458490] Bool)
- type NullSym1 (t :: [a6989586621679458490]) = Null t
- data LengthSym0 (l :: TyFun [a6989586621679458376] Nat)
- type LengthSym1 (t :: [a6989586621679458376]) = Length t
- data MapSym0 (l :: TyFun (TyFun a6989586621679435604 b6989586621679435605 -> Type) (TyFun [a6989586621679435604] [b6989586621679435605] -> Type))
- data MapSym1 (l :: TyFun a6989586621679435604 b6989586621679435605 -> Type) (l :: TyFun [a6989586621679435604] [b6989586621679435605])
- type MapSym2 (t :: TyFun a6989586621679435604 b6989586621679435605 -> Type) (t :: [a6989586621679435604]) = Map t t
- data ReverseSym0 (l :: TyFun [a6989586621679458489] [a6989586621679458489])
- type ReverseSym1 (t :: [a6989586621679458489]) = Reverse t
- data IntersperseSym0 (l :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type))
- data IntersperseSym1 (l :: a6989586621679458488) (l :: TyFun [a6989586621679458488] [a6989586621679458488])
- type IntersperseSym2 (t :: a6989586621679458488) (t :: [a6989586621679458488]) = Intersperse t t
- data IntercalateSym0 (l :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type))
- data IntercalateSym1 (l :: [a6989586621679458487]) (l :: TyFun [[a6989586621679458487]] [a6989586621679458487])
- type IntercalateSym2 (t :: [a6989586621679458487]) (t :: [[a6989586621679458487]]) = Intercalate t t
- data TransposeSym0 (l :: TyFun [[a6989586621679458374]] [[a6989586621679458374]])
- type TransposeSym1 (t :: [[a6989586621679458374]]) = Transpose t
- data SubsequencesSym0 (l :: TyFun [a6989586621679458486] [[a6989586621679458486]])
- type SubsequencesSym1 (t :: [a6989586621679458486]) = Subsequences t
- data PermutationsSym0 (l :: TyFun [a6989586621679458483] [[a6989586621679458483]])
- type PermutationsSym1 (t :: [a6989586621679458483]) = Permutations t
- data FoldlSym0 (l :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type))
- data FoldlSym1 (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (l :: TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type))
- data FoldlSym2 (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (l :: b6989586621679269790) (l :: TyFun [a6989586621679269789] b6989586621679269790)
- type FoldlSym3 (t :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (t :: b6989586621679269790) (t :: [a6989586621679269789]) = Foldl t t t
- data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type))
- data Foldl'Sym1 (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (l :: TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type))
- data Foldl'Sym2 (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (l :: b6989586621679458482) (l :: TyFun [a6989586621679458481] b6989586621679458482)
- type Foldl'Sym3 (t :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (t :: b6989586621679458482) (t :: [a6989586621679458481]) = Foldl' t t t
- data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type))
- data Foldl1Sym1 (l :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (l :: TyFun [a6989586621679458480] a6989586621679458480)
- type Foldl1Sym2 (t :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (t :: [a6989586621679458480]) = Foldl1 t t
- data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type))
- data Foldl1'Sym1 (l :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (l :: TyFun [a6989586621679458479] a6989586621679458479)
- type Foldl1'Sym2 (t :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (t :: [a6989586621679458479]) = Foldl1' t t
- data FoldrSym0 (l :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type))
- data FoldrSym1 (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (l :: TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type))
- data FoldrSym2 (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (l :: b6989586621679435607) (l :: TyFun [a6989586621679435606] b6989586621679435607)
- type FoldrSym3 (t :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (t :: b6989586621679435607) (t :: [a6989586621679435606]) = Foldr t t t
- data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type))
- data Foldr1Sym1 (l :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (l :: TyFun [a6989586621679458478] a6989586621679458478)
- type Foldr1Sym2 (t :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (t :: [a6989586621679458478]) = Foldr1 t t
- data ConcatSym0 (l :: TyFun [[a6989586621679458477]] [a6989586621679458477])
- type ConcatSym1 (t :: [[a6989586621679458477]]) = Concat t
- data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679458475 [b6989586621679458476] -> Type) (TyFun [a6989586621679458475] [b6989586621679458476] -> Type))
- data ConcatMapSym1 (l :: TyFun a6989586621679458475 [b6989586621679458476] -> Type) (l :: TyFun [a6989586621679458475] [b6989586621679458476])
- type ConcatMapSym2 (t :: TyFun a6989586621679458475 [b6989586621679458476] -> Type) (t :: [a6989586621679458475]) = ConcatMap t t
- data AndSym0 (l :: TyFun [Bool] Bool)
- type AndSym1 (t :: [Bool]) = And t
- data OrSym0 (l :: TyFun [Bool] Bool)
- type OrSym1 (t :: [Bool]) = Or t
- data AnySym0 (l :: TyFun (TyFun a6989586621679458473 Bool -> Type) (TyFun [a6989586621679458473] Bool -> Type))
- data AnySym1 (l :: TyFun a6989586621679458473 Bool -> Type) (l :: TyFun [a6989586621679458473] Bool)
- type AnySym2 (t :: TyFun a6989586621679458473 Bool -> Type) (t :: [a6989586621679458473]) = Any t t
- data AllSym0 (l :: TyFun (TyFun a6989586621679458474 Bool -> Type) (TyFun [a6989586621679458474] Bool -> Type))
- data AllSym1 (l :: TyFun a6989586621679458474 Bool -> Type) (l :: TyFun [a6989586621679458474] Bool)
- type AllSym2 (t :: TyFun a6989586621679458474 Bool -> Type) (t :: [a6989586621679458474]) = All t t
- data SumSym0 (l :: TyFun [a6989586621679458378] a6989586621679458378)
- type SumSym1 (t :: [a6989586621679458378]) = Sum t
- data ProductSym0 (l :: TyFun [a6989586621679458377] a6989586621679458377)
- type ProductSym1 (t :: [a6989586621679458377]) = Product t
- data MaximumSym0 (l :: TyFun [a6989586621679458387] a6989586621679458387)
- type MaximumSym1 (t :: [a6989586621679458387]) = Maximum t
- data MinimumSym0 (l :: TyFun [a6989586621679458386] a6989586621679458386)
- type MinimumSym1 (t :: [a6989586621679458386]) = Minimum t
- data ScanlSym0 (l :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type))
- data ScanlSym1 (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (l :: TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type))
- data ScanlSym2 (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (l :: b6989586621679458471) (l :: TyFun [a6989586621679458472] [b6989586621679458471])
- type ScanlSym3 (t :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (t :: b6989586621679458471) (t :: [a6989586621679458472]) = Scanl t t t
- data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type))
- data Scanl1Sym1 (l :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (l :: TyFun [a6989586621679458470] [a6989586621679458470])
- type Scanl1Sym2 (t :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (t :: [a6989586621679458470]) = Scanl1 t t
- data ScanrSym0 (l :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type))
- data ScanrSym1 (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (l :: TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type))
- data ScanrSym2 (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (l :: b6989586621679458469) (l :: TyFun [a6989586621679458468] [b6989586621679458469])
- type ScanrSym3 (t :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (t :: b6989586621679458469) (t :: [a6989586621679458468]) = Scanr t t t
- data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type))
- data Scanr1Sym1 (l :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (l :: TyFun [a6989586621679458467] [a6989586621679458467])
- type Scanr1Sym2 (t :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (t :: [a6989586621679458467]) = Scanr1 t t
- data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type))
- data MapAccumLSym1 (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (l :: TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type))
- data MapAccumLSym2 (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (l :: acc6989586621679458464) (l :: TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]))
- type MapAccumLSym3 (t :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (t :: acc6989586621679458464) (t :: [x6989586621679458465]) = MapAccumL t t t
- data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type))
- data MapAccumRSym1 (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (l :: TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type))
- data MapAccumRSym2 (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (l :: acc6989586621679458461) (l :: TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]))
- type MapAccumRSym3 (t :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (t :: acc6989586621679458461) (t :: [x6989586621679458462]) = MapAccumR t t t
- data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679458375 [a6989586621679458375] -> Type))
- data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679458375 [a6989586621679458375])
- type ReplicateSym2 (t :: Nat) (t :: a6989586621679458375) = Replicate t t
- data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (TyFun b6989586621679458459 [a6989586621679458460] -> Type))
- data UnfoldrSym1 (l :: TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (l :: TyFun b6989586621679458459 [a6989586621679458460])
- type UnfoldrSym2 (t :: TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (t :: b6989586621679458459) = Unfoldr t t
- data TakeSym0 (l :: TyFun Nat (TyFun [a6989586621679458391] [a6989586621679458391] -> Type))
- data TakeSym1 (l :: Nat) (l :: TyFun [a6989586621679458391] [a6989586621679458391])
- type TakeSym2 (t :: Nat) (t :: [a6989586621679458391]) = Take t t
- data DropSym0 (l :: TyFun Nat (TyFun [a6989586621679458390] [a6989586621679458390] -> Type))
- data DropSym1 (l :: Nat) (l :: TyFun [a6989586621679458390] [a6989586621679458390])
- type DropSym2 (t :: Nat) (t :: [a6989586621679458390]) = Drop t t
- data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> Type))
- data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]))
- type SplitAtSym2 (t :: Nat) (t :: [a6989586621679458389]) = SplitAt t t
- data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679458396 Bool -> Type) (TyFun [a6989586621679458396] [a6989586621679458396] -> Type))
- data TakeWhileSym1 (l :: TyFun a6989586621679458396 Bool -> Type) (l :: TyFun [a6989586621679458396] [a6989586621679458396])
- type TakeWhileSym2 (t :: TyFun a6989586621679458396 Bool -> Type) (t :: [a6989586621679458396]) = TakeWhile t t
- data DropWhileSym0 (l :: TyFun (TyFun a6989586621679458395 Bool -> Type) (TyFun [a6989586621679458395] [a6989586621679458395] -> Type))
- data DropWhileSym1 (l :: TyFun a6989586621679458395 Bool -> Type) (l :: TyFun [a6989586621679458395] [a6989586621679458395])
- type DropWhileSym2 (t :: TyFun a6989586621679458395 Bool -> Type) (t :: [a6989586621679458395]) = DropWhile t t
- data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679458394 Bool -> Type) (TyFun [a6989586621679458394] [a6989586621679458394] -> Type))
- data DropWhileEndSym1 (l :: TyFun a6989586621679458394 Bool -> Type) (l :: TyFun [a6989586621679458394] [a6989586621679458394])
- type DropWhileEndSym2 (t :: TyFun a6989586621679458394 Bool -> Type) (t :: [a6989586621679458394]) = DropWhileEnd t t
- data SpanSym0 (l :: TyFun (TyFun a6989586621679458393 Bool -> Type) (TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> Type))
- data SpanSym1 (l :: TyFun a6989586621679458393 Bool -> Type) (l :: TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]))
- type SpanSym2 (t :: TyFun a6989586621679458393 Bool -> Type) (t :: [a6989586621679458393]) = Span t t
- data BreakSym0 (l :: TyFun (TyFun a6989586621679458392 Bool -> Type) (TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> Type))
- data BreakSym1 (l :: TyFun a6989586621679458392 Bool -> Type) (l :: TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]))
- type BreakSym2 (t :: TyFun a6989586621679458392 Bool -> Type) (t :: [a6989586621679458392]) = Break t t
- data GroupSym0 (l :: TyFun [a6989586621679458388] [[a6989586621679458388]])
- type GroupSym1 (t :: [a6989586621679458388]) = Group t
- data InitsSym0 (l :: TyFun [a6989586621679458458] [[a6989586621679458458]])
- type InitsSym1 (t :: [a6989586621679458458]) = Inits t
- data TailsSym0 (l :: TyFun [a6989586621679458457] [[a6989586621679458457]])
- type TailsSym1 (t :: [a6989586621679458457]) = Tails t
- data IsPrefixOfSym0 (l :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type))
- data IsPrefixOfSym1 (l :: [a6989586621679458456]) (l :: TyFun [a6989586621679458456] Bool)
- type IsPrefixOfSym2 (t :: [a6989586621679458456]) (t :: [a6989586621679458456]) = IsPrefixOf t t
- data IsSuffixOfSym0 (l :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type))
- data IsSuffixOfSym1 (l :: [a6989586621679458455]) (l :: TyFun [a6989586621679458455] Bool)
- type IsSuffixOfSym2 (t :: [a6989586621679458455]) (t :: [a6989586621679458455]) = IsSuffixOf t t
- data IsInfixOfSym0 (l :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type))
- data IsInfixOfSym1 (l :: [a6989586621679458454]) (l :: TyFun [a6989586621679458454] Bool)
- type IsInfixOfSym2 (t :: [a6989586621679458454]) (t :: [a6989586621679458454]) = IsInfixOf t t
- data ElemSym0 (l :: TyFun a6989586621679458453 (TyFun [a6989586621679458453] Bool -> Type))
- data ElemSym1 (l :: a6989586621679458453) (l :: TyFun [a6989586621679458453] Bool)
- type ElemSym2 (t :: a6989586621679458453) (t :: [a6989586621679458453]) = Elem t t
- data NotElemSym0 (l :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type))
- data NotElemSym1 (l :: a6989586621679458452) (l :: TyFun [a6989586621679458452] Bool)
- type NotElemSym2 (t :: a6989586621679458452) (t :: [a6989586621679458452]) = NotElem t t
- data LookupSym0 (l :: TyFun a6989586621679458381 (TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> Type))
- data LookupSym1 (l :: a6989586621679458381) (l :: TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382))
- type LookupSym2 (t :: a6989586621679458381) (t :: [(a6989586621679458381, b6989586621679458382)]) = Lookup t t
- data FindSym0 (l :: TyFun (TyFun a6989586621679458403 Bool -> Type) (TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> Type))
- data FindSym1 (l :: TyFun a6989586621679458403 Bool -> Type) (l :: TyFun [a6989586621679458403] (Maybe a6989586621679458403))
- type FindSym2 (t :: TyFun a6989586621679458403 Bool -> Type) (t :: [a6989586621679458403]) = Find t t
- data FilterSym0 (l :: TyFun (TyFun a6989586621679458404 Bool -> Type) (TyFun [a6989586621679458404] [a6989586621679458404] -> Type))
- data FilterSym1 (l :: TyFun a6989586621679458404 Bool -> Type) (l :: TyFun [a6989586621679458404] [a6989586621679458404])
- type FilterSym2 (t :: TyFun a6989586621679458404 Bool -> Type) (t :: [a6989586621679458404]) = Filter t t
- data PartitionSym0 (l :: TyFun (TyFun a6989586621679458380 Bool -> Type) (TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> Type))
- data PartitionSym1 (l :: TyFun a6989586621679458380 Bool -> Type) (l :: TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]))
- type PartitionSym2 (t :: TyFun a6989586621679458380 Bool -> Type) (t :: [a6989586621679458380]) = Partition t t
- data (!!@#@$) (l :: TyFun [a6989586621679458373] (TyFun Nat a6989586621679458373 -> Type))
- data (l :: [a6989586621679458373]) !!@#@$$ (l :: TyFun Nat a6989586621679458373)
- type (!!@#@$$$) (t :: [a6989586621679458373]) (t :: Nat) = (!!) t t
- data ElemIndexSym0 (l :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type))
- data ElemIndexSym1 (l :: a6989586621679458402) (l :: TyFun [a6989586621679458402] (Maybe Nat))
- type ElemIndexSym2 (t :: a6989586621679458402) (t :: [a6989586621679458402]) = ElemIndex t t
- data ElemIndicesSym0 (l :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type))
- data ElemIndicesSym1 (l :: a6989586621679458401) (l :: TyFun [a6989586621679458401] [Nat])
- type ElemIndicesSym2 (t :: a6989586621679458401) (t :: [a6989586621679458401]) = ElemIndices t t
- data FindIndexSym0 (l :: TyFun (TyFun a6989586621679458400 Bool -> Type) (TyFun [a6989586621679458400] (Maybe Nat) -> Type))
- data FindIndexSym1 (l :: TyFun a6989586621679458400 Bool -> Type) (l :: TyFun [a6989586621679458400] (Maybe Nat))
- type FindIndexSym2 (t :: TyFun a6989586621679458400 Bool -> Type) (t :: [a6989586621679458400]) = FindIndex t t
- data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679458399 Bool -> Type) (TyFun [a6989586621679458399] [Nat] -> Type))
- data FindIndicesSym1 (l :: TyFun a6989586621679458399 Bool -> Type) (l :: TyFun [a6989586621679458399] [Nat])
- type FindIndicesSym2 (t :: TyFun a6989586621679458399 Bool -> Type) (t :: [a6989586621679458399]) = FindIndices t t
- data ZipSym0 (l :: TyFun [a6989586621679458450] (TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> Type))
- data ZipSym1 (l :: [a6989586621679458450]) (l :: TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)])
- type ZipSym2 (t :: [a6989586621679458450]) (t :: [b6989586621679458451]) = Zip t t
- data Zip3Sym0 (l :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type))
- data Zip3Sym1 (l :: [a6989586621679458447]) (l :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type))
- data Zip3Sym2 (l :: [a6989586621679458447]) (l :: [b6989586621679458448]) (l :: TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)])
- type Zip3Sym3 (t :: [a6989586621679458447]) (t :: [b6989586621679458448]) (t :: [c6989586621679458449]) = Zip3 t t t
- data ZipWithSym0 (l :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type))
- data ZipWithSym1 (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (l :: TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type))
- data ZipWithSym2 (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (l :: [a6989586621679458444]) (l :: TyFun [b6989586621679458445] [c6989586621679458446])
- type ZipWithSym3 (t :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (t :: [a6989586621679458444]) (t :: [b6989586621679458445]) = ZipWith t t t
- data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type))
- data ZipWith3Sym1 (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type))
- data ZipWith3Sym2 (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (l :: [a6989586621679458440]) (l :: TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type))
- data ZipWith3Sym3 (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (l :: [a6989586621679458440]) (l :: [b6989586621679458441]) (l :: TyFun [c6989586621679458442] [d6989586621679458443])
- type ZipWith3Sym4 (t :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (t :: [a6989586621679458440]) (t :: [b6989586621679458441]) (t :: [c6989586621679458442]) = ZipWith3 t t t t
- data UnzipSym0 (l :: TyFun [(a6989586621679458438, b6989586621679458439)] ([a6989586621679458438], [b6989586621679458439]))
- type UnzipSym1 (t :: [(a6989586621679458438, b6989586621679458439)]) = Unzip t
- data Unzip3Sym0 (l :: TyFun [(a6989586621679458435, b6989586621679458436, c6989586621679458437)] ([a6989586621679458435], [b6989586621679458436], [c6989586621679458437]))
- type Unzip3Sym1 (t :: [(a6989586621679458435, b6989586621679458436, c6989586621679458437)]) = Unzip3 t
- data Unzip4Sym0 (l :: TyFun [(a6989586621679458431, b6989586621679458432, c6989586621679458433, d6989586621679458434)] ([a6989586621679458431], [b6989586621679458432], [c6989586621679458433], [d6989586621679458434]))
- type Unzip4Sym1 (t :: [(a6989586621679458431, b6989586621679458432, c6989586621679458433, d6989586621679458434)]) = Unzip4 t
- data Unzip5Sym0 (l :: TyFun [(a6989586621679458426, b6989586621679458427, c6989586621679458428, d6989586621679458429, e6989586621679458430)] ([a6989586621679458426], [b6989586621679458427], [c6989586621679458428], [d6989586621679458429], [e6989586621679458430]))
- type Unzip5Sym1 (t :: [(a6989586621679458426, b6989586621679458427, c6989586621679458428, d6989586621679458429, e6989586621679458430)]) = Unzip5 t
- data Unzip6Sym0 (l :: TyFun [(a6989586621679458420, b6989586621679458421, c6989586621679458422, d6989586621679458423, e6989586621679458424, f6989586621679458425)] ([a6989586621679458420], [b6989586621679458421], [c6989586621679458422], [d6989586621679458423], [e6989586621679458424], [f6989586621679458425]))
- type Unzip6Sym1 (t :: [(a6989586621679458420, b6989586621679458421, c6989586621679458422, d6989586621679458423, e6989586621679458424, f6989586621679458425)]) = Unzip6 t
- data Unzip7Sym0 (l :: TyFun [(a6989586621679458413, b6989586621679458414, c6989586621679458415, d6989586621679458416, e6989586621679458417, f6989586621679458418, g6989586621679458419)] ([a6989586621679458413], [b6989586621679458414], [c6989586621679458415], [d6989586621679458416], [e6989586621679458417], [f6989586621679458418], [g6989586621679458419]))
- type Unzip7Sym1 (t :: [(a6989586621679458413, b6989586621679458414, c6989586621679458415, d6989586621679458416, e6989586621679458417, f6989586621679458418, g6989586621679458419)]) = Unzip7 t
- data UnlinesSym0 (l :: TyFun [Symbol] Symbol)
- type UnlinesSym1 (t :: [Symbol]) = Unlines t
- data UnwordsSym0 (l :: TyFun [Symbol] Symbol)
- type UnwordsSym1 (t :: [Symbol]) = Unwords t
- data NubSym0 (l :: TyFun [a6989586621679458372] [a6989586621679458372])
- type NubSym1 (t :: [a6989586621679458372]) = Nub t
- data DeleteSym0 (l :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type))
- data DeleteSym1 (l :: a6989586621679458412) (l :: TyFun [a6989586621679458412] [a6989586621679458412])
- type DeleteSym2 (t :: a6989586621679458412) (t :: [a6989586621679458412]) = Delete t t
- data (\\@#@$) (l :: TyFun [a6989586621679458411] (TyFun [a6989586621679458411] [a6989586621679458411] -> Type))
- data (l :: [a6989586621679458411]) \\@#@$$ (l :: TyFun [a6989586621679458411] [a6989586621679458411])
- type (\\@#@$$$) (t :: [a6989586621679458411]) (t :: [a6989586621679458411]) = (\\) t t
- data UnionSym0 (l :: TyFun [a6989586621679458368] (TyFun [a6989586621679458368] [a6989586621679458368] -> Type))
- data UnionSym1 (l :: [a6989586621679458368]) (l :: TyFun [a6989586621679458368] [a6989586621679458368])
- type UnionSym2 (t :: [a6989586621679458368]) (t :: [a6989586621679458368]) = Union t t
- data IntersectSym0 (l :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type))
- data IntersectSym1 (l :: [a6989586621679458398]) (l :: TyFun [a6989586621679458398] [a6989586621679458398])
- type IntersectSym2 (t :: [a6989586621679458398]) (t :: [a6989586621679458398]) = Intersect t t
- data InsertSym0 (l :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type))
- data InsertSym1 (l :: a6989586621679458385) (l :: TyFun [a6989586621679458385] [a6989586621679458385])
- type InsertSym2 (t :: a6989586621679458385) (t :: [a6989586621679458385]) = Insert t t
- data SortSym0 (l :: TyFun [a6989586621679458384] [a6989586621679458384])
- type SortSym1 (t :: [a6989586621679458384]) = Sort t
- data NubBySym0 (l :: TyFun (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (TyFun [a6989586621679458371] [a6989586621679458371] -> Type))
- data NubBySym1 (l :: TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458371] [a6989586621679458371])
- type NubBySym2 (t :: TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (t :: [a6989586621679458371]) = NubBy t t
- data DeleteBySym0 (l :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type))
- data DeleteBySym1 (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (l :: TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type))
- data DeleteBySym2 (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (l :: a6989586621679458410) (l :: TyFun [a6989586621679458410] [a6989586621679458410])
- type DeleteBySym3 (t :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (t :: a6989586621679458410) (t :: [a6989586621679458410]) = DeleteBy t t t
- data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type))
- data DeleteFirstsBySym1 (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type))
- data DeleteFirstsBySym2 (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (l :: [a6989586621679458409]) (l :: TyFun [a6989586621679458409] [a6989586621679458409])
- type DeleteFirstsBySym3 (t :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (t :: [a6989586621679458409]) (t :: [a6989586621679458409]) = DeleteFirstsBy t t t
- data UnionBySym0 (l :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type))
- data UnionBySym1 (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type))
- data UnionBySym2 (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (l :: [a6989586621679458369]) (l :: TyFun [a6989586621679458369] [a6989586621679458369])
- type UnionBySym3 (t :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (t :: [a6989586621679458369]) (t :: [a6989586621679458369]) = UnionBy t t t
- data IntersectBySym0 (l :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type))
- data IntersectBySym1 (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type))
- data IntersectBySym2 (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (l :: [a6989586621679458397]) (l :: TyFun [a6989586621679458397] [a6989586621679458397])
- type IntersectBySym3 (t :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (t :: [a6989586621679458397]) (t :: [a6989586621679458397]) = IntersectBy t t t
- data GroupBySym0 (l :: TyFun (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (TyFun [a6989586621679458383] [[a6989586621679458383]] -> Type))
- data GroupBySym1 (l :: TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458383] [[a6989586621679458383]])
- type GroupBySym2 (t :: TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (t :: [a6989586621679458383]) = GroupBy t t
- data SortBySym0 (l :: TyFun (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (TyFun [a6989586621679458408] [a6989586621679458408] -> Type))
- data SortBySym1 (l :: TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679458408] [a6989586621679458408])
- type SortBySym2 (t :: TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (t :: [a6989586621679458408]) = SortBy t t
- data InsertBySym0 (l :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type))
- data InsertBySym1 (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (l :: TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type))
- data InsertBySym2 (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (l :: a6989586621679458407) (l :: TyFun [a6989586621679458407] [a6989586621679458407])
- type InsertBySym3 (t :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (t :: a6989586621679458407) (t :: [a6989586621679458407]) = InsertBy t t t
- data MaximumBySym0 (l :: TyFun (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (TyFun [a6989586621679458406] a6989586621679458406 -> Type))
- data MaximumBySym1 (l :: TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679458406] a6989586621679458406)
- type MaximumBySym2 (t :: TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (t :: [a6989586621679458406]) = MaximumBy t t
- data MinimumBySym0 (l :: TyFun (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (TyFun [a6989586621679458405] a6989586621679458405 -> Type))
- data MinimumBySym1 (l :: TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679458405] a6989586621679458405)
- type MinimumBySym2 (t :: TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (t :: [a6989586621679458405]) = MinimumBy t t
- data GenericLengthSym0 (l :: TyFun [a6989586621679458367] i6989586621679458366)
- type GenericLengthSym1 (t :: [a6989586621679458367]) = GenericLength t
The singleton for lists
data family Sing (a :: k) infixr 5 #
The singleton kind-indexed data family.
Instances
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 ((:) _ 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 _ '[] = '[] | |
| Intersperse sep ((:) x xs) = Apply (Apply (:@#@$) x) (Apply (Apply PrependToAllSym0 sep) xs) |
sIntersperse :: forall (t :: a) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply IntersperseSym0 t) t :: [a]) #
type family Intercalate (a :: [a]) (a :: [[a]]) :: [a] where ... #
Equations
| Intercalate xs xss = Apply ConcatSym0 (Apply (Apply IntersperseSym0 xs) xss) |
sIntercalate :: forall (t :: [a]) (t :: [[a]]). Sing t -> Sing t -> Sing (Apply (Apply IntercalateSym0 t) t :: [a]) #
sTranspose :: forall (t :: [[a]]). Sing t -> Sing (Apply TransposeSym0 t :: [[a]]) #
type family Subsequences (a :: [a]) :: [[a]] where ... #
Equations
| Subsequences xs = Apply (Apply (:@#@$) '[]) (Apply NonEmptySubsequencesSym0 xs) |
sSubsequences :: forall (t :: [a]). Sing t -> Sing (Apply SubsequencesSym0 t :: [[a]]) #
type family Permutations (a :: [a]) :: [[a]] where ... #
sPermutations :: forall (t :: [a]). Sing t -> Sing (Apply PermutationsSym0 t :: [[a]]) #
Reducing lists (folds)
sFoldl :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldlSym0 t) t) t :: b) #
sFoldl' :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply Foldl'Sym0 t) t) t :: b) #
sFoldl1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldl1Sym0 t) t :: a) #
sFoldl1' :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldl1'Sym0 t) t :: a) #
sFoldr :: forall (t :: TyFun a (TyFun b b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldrSym0 t) t) t :: b) #
type family Foldr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| Foldr1 _ '[x] = x | |
| Foldr1 f ((:) x ((:) wild_6989586621679458955 wild_6989586621679458957)) = Apply (Apply f x) (Apply (Apply Foldr1Sym0 f) (Let6989586621679469753XsSym4 f x wild_6989586621679458955 wild_6989586621679458957)) | |
| Foldr1 _ '[] = Apply ErrorSym0 "Data.Singletons.List.foldr1: empty list" |
sFoldr1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Foldr1Sym0 t) t :: a) #
Special folds
sConcatMap :: forall (t :: TyFun a [b] -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply ConcatMapSym0 t) t :: [b]) #
sAny :: forall (t :: TyFun a Bool -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply AnySym0 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 (Let6989586621679467803Sum'Sym1 l) l) (FromInteger 0) |
type family Product (a :: [a]) :: a where ... #
Equations
| Product l = Apply (Apply (Let6989586621679467779ProdSym1 l) l) (FromInteger 1) |
Building lists
Scans
sScanl :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ScanlSym0 t) t) t :: [b]) #
sScanl1 :: forall (t :: TyFun a (TyFun a a -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply Scanl1Sym0 t) t :: [a]) #
sScanr :: forall (t :: TyFun a (TyFun b b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ScanrSym0 t) t) t :: [b]) #
type family Scanr1 (a :: TyFun a (TyFun a a -> Type) -> Type) (a :: [a]) :: [a] where ... #
Equations
| Scanr1 _ '[] = '[] | |
| Scanr1 _ '[x] = Apply (Apply (:@#@$) x) '[] | |
| Scanr1 f ((:) x ((:) wild_6989586621679458975 wild_6989586621679458977)) = Case_6989586621679469465 f x wild_6989586621679458975 wild_6989586621679458977 (Let6989586621679469446Scrutinee_6989586621679458969Sym4 f x wild_6989586621679458975 wild_6989586621679458977) |
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_6989586621679467766 n x (Let6989586621679467758Scrutinee_6989586621679459071Sym2 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_6989586621679469094 f b (Let6989586621679469086Scrutinee_6989586621679458979Sym2 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 _ '[] = Apply (Apply Tuple2Sym0 Let6989586621679468079XsSym0) Let6989586621679468079XsSym0 | |
| Span p ((:) x xs') = Case_6989586621679468109 p x xs' (Let6989586621679468096Scrutinee_6989586621679459051Sym3 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 _ '[] = Apply (Apply Tuple2Sym0 Let6989586621679467986XsSym0) Let6989586621679467986XsSym0 | |
| Break p ((:) x xs') = Case_6989586621679468016 p x xs' (Let6989586621679468003Scrutinee_6989586621679459053Sym3 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 '[] ((:) _ _) = TrueSym0 | |
| IsPrefixOf ((:) _ _) '[] = 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) infix 4 #
sNotElem :: forall (t :: a) (t :: [a]). SEq a => Sing t -> Sing t -> Sing (Apply (Apply NotElemSym0 t) t :: Bool) infix 4 #
type family Lookup (a :: a) (a :: [(a, b)]) :: Maybe b where ... #
Equations
| Lookup _key '[] = NothingSym0 | |
| Lookup key ((:) '(x, y) xys) = Case_6989586621679467907 key x y xys (Let6989586621679467888Scrutinee_6989586621679459067Sym4 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_6989586621679468338 = Apply (Apply (Apply (.@#@$) ListToMaybeSym0) (Apply FilterSym0 p)) a_6989586621679468338 |
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
(%!!) :: forall (t :: [a]) (t :: Nat). Sing t -> Sing t -> Sing (Apply (Apply (!!@#@$) t) t :: a) infixl 9 #
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_6989586621679468944 = Apply (Apply FindIndicesSym0 (Apply (==@#@$) x)) a_6989586621679468944 |
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_6989586621679468957 = Apply (Apply (Apply (.@#@$) ListToMaybeSym0) (Apply FindIndicesSym0 p)) a_6989586621679468957 |
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 '[] '[] ((:) _ _) = '[] | |
| Zip3 '[] ((:) _ _) '[] = '[] | |
| Zip3 '[] ((:) _ _) ((:) _ _) = '[] | |
| Zip3 ((:) _ _) '[] '[] = '[] | |
| Zip3 ((:) _ _) '[] ((:) _ _) = '[] | |
| Zip3 ((:) _ _) ((:) _ _) '[] = '[] |
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 _ '[] '[] '[] = '[] | |
| ZipWith3 _ '[] '[] ((:) _ _) = '[] | |
| ZipWith3 _ '[] ((:) _ _) '[] = '[] | |
| ZipWith3 _ '[] ((:) _ _) ((:) _ _) = '[] | |
| ZipWith3 _ ((:) _ _) '[] '[] = '[] | |
| ZipWith3 _ ((:) _ _) '[] ((:) _ _) = '[] | |
| ZipWith3 _ ((:) _ _) ((:) _ _) '[] = '[] |
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
Functions on Symbols
"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_6989586621679468427 = Apply (Apply SortBySym0 CompareSym0) a_6989586621679468427 |
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_6989586621679468490 a_6989586621679468492 = Apply (Apply (Apply FoldlSym0 (Apply FlipSym0 (Apply DeleteBySym0 eq))) a_6989586621679468490) a_6989586621679468492 |
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 _ '[] '[] = '[] | |
| IntersectBy _ '[] ((:) _ _) = '[] | |
| IntersectBy _ ((:) _ _) '[] = '[] | |
| IntersectBy eq ((:) wild_6989586621679459037 wild_6989586621679459039) ((:) wild_6989586621679459041 wild_6989586621679459043) = Apply (Apply FilterSym0 (Apply (Apply (Apply (Apply (Apply Lambda_6989586621679469643Sym0 eq) wild_6989586621679459037) wild_6989586621679459039) wild_6989586621679459041) wild_6989586621679459043)) (Let6989586621679469592XsSym5 eq wild_6989586621679459037 wild_6989586621679459039 wild_6989586621679459041 wild_6989586621679459043) |
sIntersectBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply IntersectBySym0 t) t) t :: [a]) #
sGroupBy :: forall (t :: TyFun a (TyFun a Bool -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply GroupBySym0 t) t :: [[a]]) #
User-supplied comparison (replacing an Ord context)
The function is assumed to define a total ordering.
sSortBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply SortBySym0 t) t :: [a]) #
type family InsertBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: a) (a :: [a]) :: [a] where ... #
sInsertBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: a) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply InsertBySym0 t) t) t :: [a]) #
type family MaximumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| MaximumBy _ '[] = Apply ErrorSym0 "Data.Singletons.List.maximumBy: empty list" | |
| MaximumBy cmp ((:) wild_6989586621679459023 wild_6989586621679459025) = Apply (Apply Foldl1Sym0 (Let6989586621679469809MaxBySym3 cmp wild_6989586621679459023 wild_6989586621679459025)) (Let6989586621679469796XsSym3 cmp wild_6989586621679459023 wild_6989586621679459025) |
sMaximumBy :: forall (t :: TyFun a (TyFun a Ordering -> Type) -> Type) (t :: [a]). Sing t -> Sing t -> Sing (Apply (Apply MaximumBySym0 t) t :: a) #
type family MinimumBy (a :: TyFun a (TyFun a Ordering -> Type) -> Type) (a :: [a]) :: a where ... #
Equations
| MinimumBy _ '[] = Apply ErrorSym0 "Data.Singletons.List.minimumBy: empty list" | |
| MinimumBy cmp ((:) wild_6989586621679459029 wild_6989586621679459031) = Apply (Apply Foldl1Sym0 (Let6989586621679469893MinBySym3 cmp wild_6989586621679459029 wild_6989586621679459031)) (Let6989586621679469880XsSym3 cmp wild_6989586621679459029 wild_6989586621679459031) |
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 ((:) _ xs) = Apply (Apply (+@#@$) (FromInteger 1)) (Apply GenericLengthSym0 xs) |
sGenericLength :: forall (t :: [a]). SNum i => Sing t -> Sing (Apply GenericLengthSym0 t :: i) #
Defunctionalization symbols
data (:@#@$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type)) #
Instances
| SuppressUnusedWarnings ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) (l :: a3530822107858468865) # | |
data (l :: a3530822107858468865) :@#@$$ (l :: TyFun [a3530822107858468865] [a3530822107858468865]) #
Instances
| SuppressUnusedWarnings ((:@#@$$) :: a3530822107858468865 -> TyFun [a3530822107858468865] [a3530822107858468865] -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply ((:@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.Instances | |
type (++@#@$$$) (t :: [a6989586621679435603]) (t :: [a6989586621679435603]) = (++) t t #
data (l :: [a6989586621679435603]) ++@#@$$ (l :: TyFun [a6989586621679435603] [a6989586621679435603]) #
Instances
| SuppressUnusedWarnings ((++@#@$$) :: [a6989586621679435603] -> TyFun [a6989586621679435603] [a6989586621679435603] -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply ((++@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
data (++@#@$) (l :: TyFun [a6989586621679435603] (TyFun [a6989586621679435603] [a6989586621679435603] -> Type)) #
Instances
| SuppressUnusedWarnings ((++@#@$) :: TyFun [a6989586621679435603] (TyFun [a6989586621679435603] [a6989586621679435603] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply ((++@#@$) :: TyFun [a6989586621679435603] (TyFun [a6989586621679435603] [a6989586621679435603] -> Type) -> *) (l :: [a6989586621679435603]) # | |
data HeadSym0 (l :: TyFun [a6989586621679458494] a6989586621679458494) #
Instances
| SuppressUnusedWarnings (HeadSym0 :: TyFun [a6989586621679458494] a6989586621679458494 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (HeadSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
data LastSym0 (l :: TyFun [a6989586621679458493] a6989586621679458493) #
Instances
| SuppressUnusedWarnings (LastSym0 :: TyFun [a6989586621679458493] a6989586621679458493 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (LastSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
data TailSym0 (l :: TyFun [a6989586621679458492] [a6989586621679458492]) #
Instances
| SuppressUnusedWarnings (TailSym0 :: TyFun [a6989586621679458492] [a6989586621679458492] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TailSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
data InitSym0 (l :: TyFun [a6989586621679458491] [a6989586621679458491]) #
Instances
| SuppressUnusedWarnings (InitSym0 :: TyFun [a6989586621679458491] [a6989586621679458491] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InitSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
data NullSym0 (l :: TyFun [a6989586621679458490] Bool) #
Instances
| SuppressUnusedWarnings (NullSym0 :: TyFun [a6989586621679458490] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NullSym0 :: TyFun [a] Bool -> *) (l :: [a]) # | |
data LengthSym0 (l :: TyFun [a6989586621679458376] Nat) #
Instances
| SuppressUnusedWarnings (LengthSym0 :: TyFun [a6989586621679458376] Nat -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (LengthSym0 :: TyFun [a] Nat -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type LengthSym1 (t :: [a6989586621679458376]) = Length t #
data MapSym0 (l :: TyFun (TyFun a6989586621679435604 b6989586621679435605 -> Type) (TyFun [a6989586621679435604] [b6989586621679435605] -> Type)) #
Instances
| SuppressUnusedWarnings (MapSym0 :: TyFun (TyFun a6989586621679435604 b6989586621679435605 -> Type) (TyFun [a6989586621679435604] [b6989586621679435605] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (MapSym0 :: TyFun (TyFun a6989586621679435604 b6989586621679435605 -> Type) (TyFun [a6989586621679435604] [b6989586621679435605] -> Type) -> *) (l :: TyFun a6989586621679435604 b6989586621679435605 -> Type) # | |
data MapSym1 (l :: TyFun a6989586621679435604 b6989586621679435605 -> Type) (l :: TyFun [a6989586621679435604] [b6989586621679435605]) #
Instances
| SuppressUnusedWarnings (MapSym1 :: (TyFun a6989586621679435604 b6989586621679435605 -> Type) -> TyFun [a6989586621679435604] [b6989586621679435605] -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (MapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) # | |
type MapSym2 (t :: TyFun a6989586621679435604 b6989586621679435605 -> Type) (t :: [a6989586621679435604]) = Map t t #
data ReverseSym0 (l :: TyFun [a6989586621679458489] [a6989586621679458489]) #
Instances
| SuppressUnusedWarnings (ReverseSym0 :: TyFun [a6989586621679458489] [a6989586621679458489] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ReverseSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ReverseSym1 (t :: [a6989586621679458489]) = Reverse t #
data IntersperseSym0 (l :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type)) #
Instances
| SuppressUnusedWarnings (IntersperseSym0 :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersperseSym0 :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type) -> *) (l :: a6989586621679458488) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersperseSym0 :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type) -> *) (l :: a6989586621679458488) = IntersperseSym1 l | |
data IntersperseSym1 (l :: a6989586621679458488) (l :: TyFun [a6989586621679458488] [a6989586621679458488]) #
Instances
| SuppressUnusedWarnings (IntersperseSym1 :: a6989586621679458488 -> TyFun [a6989586621679458488] [a6989586621679458488] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersperseSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IntersperseSym2 (t :: a6989586621679458488) (t :: [a6989586621679458488]) = Intersperse t t #
data IntercalateSym0 (l :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type)) #
Instances
| SuppressUnusedWarnings (IntercalateSym0 :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntercalateSym0 :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type) -> *) (l :: [a6989586621679458487]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntercalateSym0 :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type) -> *) (l :: [a6989586621679458487]) = IntercalateSym1 l | |
data IntercalateSym1 (l :: [a6989586621679458487]) (l :: TyFun [[a6989586621679458487]] [a6989586621679458487]) #
Instances
| SuppressUnusedWarnings (IntercalateSym1 :: [a6989586621679458487] -> TyFun [[a6989586621679458487]] [a6989586621679458487] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntercalateSym1 l1 :: TyFun [[a]] [a] -> *) (l2 :: [[a]]) # | |
Defined in Data.Singletons.Prelude.List | |
type IntercalateSym2 (t :: [a6989586621679458487]) (t :: [[a6989586621679458487]]) = Intercalate t t #
data TransposeSym0 (l :: TyFun [[a6989586621679458374]] [[a6989586621679458374]]) #
Instances
| SuppressUnusedWarnings (TransposeSym0 :: TyFun [[a6989586621679458374]] [[a6989586621679458374]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TransposeSym0 :: TyFun [[a]] [[a]] -> *) (l :: [[a]]) # | |
Defined in Data.Singletons.Prelude.List | |
type TransposeSym1 (t :: [[a6989586621679458374]]) = Transpose t #
data SubsequencesSym0 (l :: TyFun [a6989586621679458486] [[a6989586621679458486]]) #
Instances
| SuppressUnusedWarnings (SubsequencesSym0 :: TyFun [a6989586621679458486] [[a6989586621679458486]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SubsequencesSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type SubsequencesSym1 (t :: [a6989586621679458486]) = Subsequences t #
data PermutationsSym0 (l :: TyFun [a6989586621679458483] [[a6989586621679458483]]) #
Instances
| SuppressUnusedWarnings (PermutationsSym0 :: TyFun [a6989586621679458483] [[a6989586621679458483]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (PermutationsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type PermutationsSym1 (t :: [a6989586621679458483]) = Permutations t #
data FoldlSym0 (l :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (FoldlSym0 :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type) -> *) (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type) -> *) (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) = FoldlSym1 l | |
data FoldlSym1 (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (l :: TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type)) #
Instances
| SuppressUnusedWarnings (FoldlSym1 :: (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) -> TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldlSym1 l1 :: TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> *) (l2 :: b6989586621679269790) # | |
data FoldlSym2 (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (l :: b6989586621679269790) (l :: TyFun [a6989586621679269789] b6989586621679269790) #
Instances
| SuppressUnusedWarnings (FoldlSym2 :: (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) -> b6989586621679269790 -> TyFun [a6989586621679269789] b6989586621679269790 -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldlSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) # | |
type FoldlSym3 (t :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (t :: b6989586621679269790) (t :: [a6989586621679269789]) = Foldl t t t #
data Foldl'Sym0 (l :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Foldl'Sym0 :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type) -> *) (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type) -> *) (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) = Foldl'Sym1 l | |
data Foldl'Sym1 (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (l :: TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type)) #
Instances
| SuppressUnusedWarnings (Foldl'Sym1 :: (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) -> TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> *) (l2 :: b6989586621679458482) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> *) (l2 :: b6989586621679458482) = Foldl'Sym2 l1 l2 | |
data Foldl'Sym2 (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (l :: b6989586621679458482) (l :: TyFun [a6989586621679458481] b6989586621679458482) #
Instances
| SuppressUnusedWarnings (Foldl'Sym2 :: (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) -> b6989586621679458482 -> TyFun [a6989586621679458481] b6989586621679458482 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl'Sym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Foldl'Sym3 (t :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (t :: b6989586621679458482) (t :: [a6989586621679458481]) = Foldl' t t t #
data Foldl1Sym0 (l :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type)) #
Instances
| SuppressUnusedWarnings (Foldl1Sym0 :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type) -> *) (l :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type) -> *) (l :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) = Foldl1Sym1 l | |
data Foldl1Sym1 (l :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (l :: TyFun [a6989586621679458480] a6989586621679458480) #
Instances
| SuppressUnusedWarnings (Foldl1Sym1 :: (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) -> TyFun [a6989586621679458480] a6989586621679458480 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Foldl1Sym2 (t :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (t :: [a6989586621679458480]) = Foldl1 t t #
data Foldl1'Sym0 (l :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type)) #
Instances
| SuppressUnusedWarnings (Foldl1'Sym0 :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type) -> *) (l :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type) -> *) (l :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) = Foldl1'Sym1 l | |
data Foldl1'Sym1 (l :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (l :: TyFun [a6989586621679458479] a6989586621679458479) #
Instances
| SuppressUnusedWarnings (Foldl1'Sym1 :: (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) -> TyFun [a6989586621679458479] a6989586621679458479 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldl1'Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Foldl1'Sym2 (t :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (t :: [a6989586621679458479]) = Foldl1' t t #
data FoldrSym0 (l :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (FoldrSym0 :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Base type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) = FoldrSym1 l | |
data FoldrSym1 (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (l :: TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type)) #
Instances
| SuppressUnusedWarnings (FoldrSym1 :: (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) -> TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldrSym1 l1 :: TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> *) (l2 :: b6989586621679435607) # | |
data FoldrSym2 (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (l :: b6989586621679435607) (l :: TyFun [a6989586621679435606] b6989586621679435607) #
Instances
| SuppressUnusedWarnings (FoldrSym2 :: (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) -> b6989586621679435607 -> TyFun [a6989586621679435606] b6989586621679435607 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (FoldrSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) # | |
type FoldrSym3 (t :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (t :: b6989586621679435607) (t :: [a6989586621679435606]) = Foldr t t t #
data Foldr1Sym0 (l :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type)) #
Instances
| SuppressUnusedWarnings (Foldr1Sym0 :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type) -> *) (l :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type) -> *) (l :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) = Foldr1Sym1 l | |
data Foldr1Sym1 (l :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (l :: TyFun [a6989586621679458478] a6989586621679458478) #
Instances
| SuppressUnusedWarnings (Foldr1Sym1 :: (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) -> TyFun [a6989586621679458478] a6989586621679458478 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Foldr1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Foldr1Sym2 (t :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (t :: [a6989586621679458478]) = Foldr1 t t #
data ConcatSym0 (l :: TyFun [[a6989586621679458477]] [a6989586621679458477]) #
Instances
| SuppressUnusedWarnings (ConcatSym0 :: TyFun [[a6989586621679458477]] [a6989586621679458477] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ConcatSym0 :: TyFun [[a]] [a] -> *) (l :: [[a]]) # | |
Defined in Data.Singletons.Prelude.List | |
type ConcatSym1 (t :: [[a6989586621679458477]]) = Concat t #
data ConcatMapSym0 (l :: TyFun (TyFun a6989586621679458475 [b6989586621679458476] -> Type) (TyFun [a6989586621679458475] [b6989586621679458476] -> Type)) #
Instances
| SuppressUnusedWarnings (ConcatMapSym0 :: TyFun (TyFun a6989586621679458475 [b6989586621679458476] -> Type) (TyFun [a6989586621679458475] [b6989586621679458476] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ConcatMapSym0 :: TyFun (TyFun a6989586621679458475 [b6989586621679458476] -> Type) (TyFun [a6989586621679458475] [b6989586621679458476] -> Type) -> *) (l :: TyFun a6989586621679458475 [b6989586621679458476] -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data ConcatMapSym1 (l :: TyFun a6989586621679458475 [b6989586621679458476] -> Type) (l :: TyFun [a6989586621679458475] [b6989586621679458476]) #
Instances
| SuppressUnusedWarnings (ConcatMapSym1 :: (TyFun a6989586621679458475 [b6989586621679458476] -> Type) -> TyFun [a6989586621679458475] [b6989586621679458476] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ConcatMapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ConcatMapSym2 (t :: TyFun a6989586621679458475 [b6989586621679458476] -> Type) (t :: [a6989586621679458475]) = ConcatMap t t #
data AndSym0 (l :: TyFun [Bool] Bool) #
Instances
| SuppressUnusedWarnings AndSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply AndSym0 (l :: [Bool]) # | |
Defined in Data.Singletons.Prelude.List | |
data OrSym0 (l :: TyFun [Bool] Bool) #
Instances
| SuppressUnusedWarnings OrSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply OrSym0 (l :: [Bool]) # | |
Defined in Data.Singletons.Prelude.List | |
data AnySym0 (l :: TyFun (TyFun a6989586621679458473 Bool -> Type) (TyFun [a6989586621679458473] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (AnySym0 :: TyFun (TyFun a6989586621679458473 Bool -> Type) (TyFun [a6989586621679458473] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (AnySym0 :: TyFun (TyFun a6989586621679458473 Bool -> Type) (TyFun [a6989586621679458473] Bool -> Type) -> *) (l :: TyFun a6989586621679458473 Bool -> Type) # | |
data AnySym1 (l :: TyFun a6989586621679458473 Bool -> Type) (l :: TyFun [a6989586621679458473] Bool) #
type AnySym2 (t :: TyFun a6989586621679458473 Bool -> Type) (t :: [a6989586621679458473]) = Any t t #
data AllSym0 (l :: TyFun (TyFun a6989586621679458474 Bool -> Type) (TyFun [a6989586621679458474] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (AllSym0 :: TyFun (TyFun a6989586621679458474 Bool -> Type) (TyFun [a6989586621679458474] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (AllSym0 :: TyFun (TyFun a6989586621679458474 Bool -> Type) (TyFun [a6989586621679458474] Bool -> Type) -> *) (l :: TyFun a6989586621679458474 Bool -> Type) # | |
data AllSym1 (l :: TyFun a6989586621679458474 Bool -> Type) (l :: TyFun [a6989586621679458474] Bool) #
type AllSym2 (t :: TyFun a6989586621679458474 Bool -> Type) (t :: [a6989586621679458474]) = All t t #
data SumSym0 (l :: TyFun [a6989586621679458378] a6989586621679458378) #
Instances
| SuppressUnusedWarnings (SumSym0 :: TyFun [a6989586621679458378] a6989586621679458378 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SumSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
data ProductSym0 (l :: TyFun [a6989586621679458377] a6989586621679458377) #
Instances
| SuppressUnusedWarnings (ProductSym0 :: TyFun [a6989586621679458377] a6989586621679458377 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ProductSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ProductSym1 (t :: [a6989586621679458377]) = Product t #
data MaximumSym0 (l :: TyFun [a6989586621679458387] a6989586621679458387) #
Instances
| SuppressUnusedWarnings (MaximumSym0 :: TyFun [a6989586621679458387] a6989586621679458387 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MaximumSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type MaximumSym1 (t :: [a6989586621679458387]) = Maximum t #
data MinimumSym0 (l :: TyFun [a6989586621679458386] a6989586621679458386) #
Instances
| SuppressUnusedWarnings (MinimumSym0 :: TyFun [a6989586621679458386] a6989586621679458386 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MinimumSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type MinimumSym1 (t :: [a6989586621679458386]) = Minimum t #
data ScanlSym0 (l :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ScanlSym0 :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type) -> *) (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type) -> *) (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) = ScanlSym1 l | |
data ScanlSym1 (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (l :: TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type)) #
Instances
| SuppressUnusedWarnings (ScanlSym1 :: (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) -> TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanlSym1 l1 :: TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> *) (l2 :: b6989586621679458471) # | |
data ScanlSym2 (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (l :: b6989586621679458471) (l :: TyFun [a6989586621679458472] [b6989586621679458471]) #
Instances
| SuppressUnusedWarnings (ScanlSym2 :: (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) -> b6989586621679458471 -> TyFun [a6989586621679458472] [b6989586621679458471] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanlSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) # | |
type ScanlSym3 (t :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (t :: b6989586621679458471) (t :: [a6989586621679458472]) = Scanl t t t #
data Scanl1Sym0 (l :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type)) #
Instances
| SuppressUnusedWarnings (Scanl1Sym0 :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type) -> *) (l :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type) -> *) (l :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) = Scanl1Sym1 l | |
data Scanl1Sym1 (l :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (l :: TyFun [a6989586621679458470] [a6989586621679458470]) #
Instances
| SuppressUnusedWarnings (Scanl1Sym1 :: (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) -> TyFun [a6989586621679458470] [a6989586621679458470] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Scanl1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Scanl1Sym2 (t :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (t :: [a6989586621679458470]) = Scanl1 t t #
data ScanrSym0 (l :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ScanrSym0 :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) = ScanrSym1 l | |
data ScanrSym1 (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (l :: TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type)) #
Instances
| SuppressUnusedWarnings (ScanrSym1 :: (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) -> TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanrSym1 l1 :: TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> *) (l2 :: b6989586621679458469) # | |
data ScanrSym2 (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (l :: b6989586621679458469) (l :: TyFun [a6989586621679458468] [b6989586621679458469]) #
Instances
| SuppressUnusedWarnings (ScanrSym2 :: (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) -> b6989586621679458469 -> TyFun [a6989586621679458468] [b6989586621679458469] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ScanrSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) # | |
type ScanrSym3 (t :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (t :: b6989586621679458469) (t :: [a6989586621679458468]) = Scanr t t t #
data Scanr1Sym0 (l :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type)) #
Instances
| SuppressUnusedWarnings (Scanr1Sym0 :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type) -> *) (l :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type) -> *) (l :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) = Scanr1Sym1 l | |
data Scanr1Sym1 (l :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (l :: TyFun [a6989586621679458467] [a6989586621679458467]) #
Instances
| SuppressUnusedWarnings (Scanr1Sym1 :: (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) -> TyFun [a6989586621679458467] [a6989586621679458467] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Scanr1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type Scanr1Sym2 (t :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (t :: [a6989586621679458467]) = Scanr1 t t #
data MapAccumLSym0 (l :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (MapAccumLSym0 :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) = MapAccumLSym1 l | |
data MapAccumLSym1 (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (l :: TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type)) #
Instances
| SuppressUnusedWarnings (MapAccumLSym1 :: (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) -> TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> *) (l2 :: acc6989586621679458464) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> *) (l2 :: acc6989586621679458464) = MapAccumLSym2 l1 l2 | |
data MapAccumLSym2 (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (l :: acc6989586621679458464) (l :: TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466])) #
Instances
| SuppressUnusedWarnings (MapAccumLSym2 :: (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) -> acc6989586621679458464 -> TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumLSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) # | |
Defined in Data.Singletons.Prelude.List | |
type MapAccumLSym3 (t :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (t :: acc6989586621679458464) (t :: [x6989586621679458465]) = MapAccumL t t t #
data MapAccumRSym0 (l :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (MapAccumRSym0 :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) = MapAccumRSym1 l | |
data MapAccumRSym1 (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (l :: TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type)) #
Instances
| SuppressUnusedWarnings (MapAccumRSym1 :: (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) -> TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> *) (l2 :: acc6989586621679458461) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> *) (l2 :: acc6989586621679458461) = MapAccumRSym2 l1 l2 | |
data MapAccumRSym2 (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (l :: acc6989586621679458461) (l :: TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463])) #
Instances
| SuppressUnusedWarnings (MapAccumRSym2 :: (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) -> acc6989586621679458461 -> TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MapAccumRSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) # | |
Defined in Data.Singletons.Prelude.List | |
type MapAccumRSym3 (t :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (t :: acc6989586621679458461) (t :: [x6989586621679458462]) = MapAccumR t t t #
data ReplicateSym0 (l :: TyFun Nat (TyFun a6989586621679458375 [a6989586621679458375] -> Type)) #
Instances
| SuppressUnusedWarnings (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679458375 [a6989586621679458375] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679458375 [a6989586621679458375] -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List | |
data ReplicateSym1 (l :: Nat) (l :: TyFun a6989586621679458375 [a6989586621679458375]) #
Instances
| SuppressUnusedWarnings (ReplicateSym1 :: Nat -> TyFun a6989586621679458375 [a6989586621679458375] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.List | |
type ReplicateSym2 (t :: Nat) (t :: a6989586621679458375) = Replicate t t #
data UnfoldrSym0 (l :: TyFun (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (TyFun b6989586621679458459 [a6989586621679458460] -> Type)) #
Instances
| SuppressUnusedWarnings (UnfoldrSym0 :: TyFun (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (TyFun b6989586621679458459 [a6989586621679458460] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnfoldrSym0 :: TyFun (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (TyFun b6989586621679458459 [a6989586621679458460] -> Type) -> *) (l :: TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data UnfoldrSym1 (l :: TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (l :: TyFun b6989586621679458459 [a6989586621679458460]) #
Instances
| SuppressUnusedWarnings (UnfoldrSym1 :: (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) -> TyFun b6989586621679458459 [a6989586621679458460] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnfoldrSym1 l1 :: TyFun b [a] -> *) (l2 :: b) # | |
Defined in Data.Singletons.Prelude.List | |
type UnfoldrSym2 (t :: TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (t :: b6989586621679458459) = Unfoldr t t #
data TakeSym0 (l :: TyFun Nat (TyFun [a6989586621679458391] [a6989586621679458391] -> Type)) #
Instances
| SuppressUnusedWarnings (TakeSym0 :: TyFun Nat (TyFun [a6989586621679458391] [a6989586621679458391] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TakeSym0 :: TyFun Nat (TyFun [a6989586621679458391] [a6989586621679458391] -> Type) -> *) (l :: Nat) # | |
data TakeSym1 (l :: Nat) (l :: TyFun [a6989586621679458391] [a6989586621679458391]) #
Instances
| SuppressUnusedWarnings (TakeSym1 :: Nat -> TyFun [a6989586621679458391] [a6989586621679458391] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
data DropSym0 (l :: TyFun Nat (TyFun [a6989586621679458390] [a6989586621679458390] -> Type)) #
Instances
| SuppressUnusedWarnings (DropSym0 :: TyFun Nat (TyFun [a6989586621679458390] [a6989586621679458390] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropSym0 :: TyFun Nat (TyFun [a6989586621679458390] [a6989586621679458390] -> Type) -> *) (l :: Nat) # | |
data DropSym1 (l :: Nat) (l :: TyFun [a6989586621679458390] [a6989586621679458390]) #
Instances
| SuppressUnusedWarnings (DropSym1 :: Nat -> TyFun [a6989586621679458390] [a6989586621679458390] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
data SplitAtSym0 (l :: TyFun Nat (TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> Type)) #
Instances
| SuppressUnusedWarnings (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List | |
data SplitAtSym1 (l :: Nat) (l :: TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389])) #
Instances
| SuppressUnusedWarnings (SplitAtSym1 :: Nat -> TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type SplitAtSym2 (t :: Nat) (t :: [a6989586621679458389]) = SplitAt t t #
data TakeWhileSym0 (l :: TyFun (TyFun a6989586621679458396 Bool -> Type) (TyFun [a6989586621679458396] [a6989586621679458396] -> Type)) #
Instances
| SuppressUnusedWarnings (TakeWhileSym0 :: TyFun (TyFun a6989586621679458396 Bool -> Type) (TyFun [a6989586621679458396] [a6989586621679458396] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679458396 Bool -> Type) (TyFun [a6989586621679458396] [a6989586621679458396] -> Type) -> *) (l :: TyFun a6989586621679458396 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data TakeWhileSym1 (l :: TyFun a6989586621679458396 Bool -> Type) (l :: TyFun [a6989586621679458396] [a6989586621679458396]) #
Instances
| SuppressUnusedWarnings (TakeWhileSym1 :: (TyFun a6989586621679458396 Bool -> Type) -> TyFun [a6989586621679458396] [a6989586621679458396] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TakeWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type TakeWhileSym2 (t :: TyFun a6989586621679458396 Bool -> Type) (t :: [a6989586621679458396]) = TakeWhile t t #
data DropWhileSym0 (l :: TyFun (TyFun a6989586621679458395 Bool -> Type) (TyFun [a6989586621679458395] [a6989586621679458395] -> Type)) #
Instances
| SuppressUnusedWarnings (DropWhileSym0 :: TyFun (TyFun a6989586621679458395 Bool -> Type) (TyFun [a6989586621679458395] [a6989586621679458395] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679458395 Bool -> Type) (TyFun [a6989586621679458395] [a6989586621679458395] -> Type) -> *) (l :: TyFun a6989586621679458395 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data DropWhileSym1 (l :: TyFun a6989586621679458395 Bool -> Type) (l :: TyFun [a6989586621679458395] [a6989586621679458395]) #
Instances
| SuppressUnusedWarnings (DropWhileSym1 :: (TyFun a6989586621679458395 Bool -> Type) -> TyFun [a6989586621679458395] [a6989586621679458395] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DropWhileSym2 (t :: TyFun a6989586621679458395 Bool -> Type) (t :: [a6989586621679458395]) = DropWhile t t #
data DropWhileEndSym0 (l :: TyFun (TyFun a6989586621679458394 Bool -> Type) (TyFun [a6989586621679458394] [a6989586621679458394] -> Type)) #
Instances
| SuppressUnusedWarnings (DropWhileEndSym0 :: TyFun (TyFun a6989586621679458394 Bool -> Type) (TyFun [a6989586621679458394] [a6989586621679458394] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropWhileEndSym0 :: TyFun (TyFun a6989586621679458394 Bool -> Type) (TyFun [a6989586621679458394] [a6989586621679458394] -> Type) -> *) (l :: TyFun a6989586621679458394 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data DropWhileEndSym1 (l :: TyFun a6989586621679458394 Bool -> Type) (l :: TyFun [a6989586621679458394] [a6989586621679458394]) #
Instances
| SuppressUnusedWarnings (DropWhileEndSym1 :: (TyFun a6989586621679458394 Bool -> Type) -> TyFun [a6989586621679458394] [a6989586621679458394] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DropWhileEndSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DropWhileEndSym2 (t :: TyFun a6989586621679458394 Bool -> Type) (t :: [a6989586621679458394]) = DropWhileEnd t t #
data SpanSym0 (l :: TyFun (TyFun a6989586621679458393 Bool -> Type) (TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> Type)) #
Instances
| SuppressUnusedWarnings (SpanSym0 :: TyFun (TyFun a6989586621679458393 Bool -> Type) (TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SpanSym0 :: TyFun (TyFun a6989586621679458393 Bool -> Type) (TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> Type) -> *) (l :: TyFun a6989586621679458393 Bool -> Type) # | |
data SpanSym1 (l :: TyFun a6989586621679458393 Bool -> Type) (l :: TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393])) #
Instances
| SuppressUnusedWarnings (SpanSym1 :: (TyFun a6989586621679458393 Bool -> Type) -> TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SpanSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
type SpanSym2 (t :: TyFun a6989586621679458393 Bool -> Type) (t :: [a6989586621679458393]) = Span t t #
data BreakSym0 (l :: TyFun (TyFun a6989586621679458392 Bool -> Type) (TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> Type)) #
Instances
| SuppressUnusedWarnings (BreakSym0 :: TyFun (TyFun a6989586621679458392 Bool -> Type) (TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (BreakSym0 :: TyFun (TyFun a6989586621679458392 Bool -> Type) (TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> Type) -> *) (l :: TyFun a6989586621679458392 Bool -> Type) # | |
data BreakSym1 (l :: TyFun a6989586621679458392 Bool -> Type) (l :: TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392])) #
Instances
| SuppressUnusedWarnings (BreakSym1 :: (TyFun a6989586621679458392 Bool -> Type) -> TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (BreakSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
type BreakSym2 (t :: TyFun a6989586621679458392 Bool -> Type) (t :: [a6989586621679458392]) = Break t t #
data GroupSym0 (l :: TyFun [a6989586621679458388] [[a6989586621679458388]]) #
Instances
| SuppressUnusedWarnings (GroupSym0 :: TyFun [a6989586621679458388] [[a6989586621679458388]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GroupSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
data InitsSym0 (l :: TyFun [a6989586621679458458] [[a6989586621679458458]]) #
Instances
| SuppressUnusedWarnings (InitsSym0 :: TyFun [a6989586621679458458] [[a6989586621679458458]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InitsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
data TailsSym0 (l :: TyFun [a6989586621679458457] [[a6989586621679458457]]) #
Instances
| SuppressUnusedWarnings (TailsSym0 :: TyFun [a6989586621679458457] [[a6989586621679458457]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TailsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
data IsPrefixOfSym0 (l :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (IsPrefixOfSym0 :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type) -> *) (l :: [a6989586621679458456]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type) -> *) (l :: [a6989586621679458456]) = IsPrefixOfSym1 l | |
data IsPrefixOfSym1 (l :: [a6989586621679458456]) (l :: TyFun [a6989586621679458456] Bool) #
Instances
| SuppressUnusedWarnings (IsPrefixOfSym1 :: [a6989586621679458456] -> TyFun [a6989586621679458456] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsPrefixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IsPrefixOfSym2 (t :: [a6989586621679458456]) (t :: [a6989586621679458456]) = IsPrefixOf t t #
data IsSuffixOfSym0 (l :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (IsSuffixOfSym0 :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type) -> *) (l :: [a6989586621679458455]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type) -> *) (l :: [a6989586621679458455]) = IsSuffixOfSym1 l | |
data IsSuffixOfSym1 (l :: [a6989586621679458455]) (l :: TyFun [a6989586621679458455] Bool) #
Instances
| SuppressUnusedWarnings (IsSuffixOfSym1 :: [a6989586621679458455] -> TyFun [a6989586621679458455] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsSuffixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IsSuffixOfSym2 (t :: [a6989586621679458455]) (t :: [a6989586621679458455]) = IsSuffixOf t t #
data IsInfixOfSym0 (l :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (IsInfixOfSym0 :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsInfixOfSym0 :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type) -> *) (l :: [a6989586621679458454]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsInfixOfSym0 :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type) -> *) (l :: [a6989586621679458454]) = IsInfixOfSym1 l | |
data IsInfixOfSym1 (l :: [a6989586621679458454]) (l :: TyFun [a6989586621679458454] Bool) #
Instances
| SuppressUnusedWarnings (IsInfixOfSym1 :: [a6989586621679458454] -> TyFun [a6989586621679458454] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IsInfixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IsInfixOfSym2 (t :: [a6989586621679458454]) (t :: [a6989586621679458454]) = IsInfixOf t t #
data ElemSym0 (l :: TyFun a6989586621679458453 (TyFun [a6989586621679458453] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (ElemSym0 :: TyFun a6989586621679458453 (TyFun [a6989586621679458453] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemSym0 :: TyFun a6989586621679458453 (TyFun [a6989586621679458453] Bool -> Type) -> *) (l :: a6989586621679458453) # | |
data ElemSym1 (l :: a6989586621679458453) (l :: TyFun [a6989586621679458453] Bool) #
Instances
| SuppressUnusedWarnings (ElemSym1 :: a6989586621679458453 -> TyFun [a6989586621679458453] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
data NotElemSym0 (l :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type)) #
Instances
| SuppressUnusedWarnings (NotElemSym0 :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NotElemSym0 :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type) -> *) (l :: a6989586621679458452) # | |
Defined in Data.Singletons.Prelude.List type Apply (NotElemSym0 :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type) -> *) (l :: a6989586621679458452) = NotElemSym1 l | |
data NotElemSym1 (l :: a6989586621679458452) (l :: TyFun [a6989586621679458452] Bool) #
Instances
| SuppressUnusedWarnings (NotElemSym1 :: a6989586621679458452 -> TyFun [a6989586621679458452] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NotElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type NotElemSym2 (t :: a6989586621679458452) (t :: [a6989586621679458452]) = NotElem t t #
data LookupSym0 (l :: TyFun a6989586621679458381 (TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> Type)) #
Instances
| SuppressUnusedWarnings (LookupSym0 :: TyFun a6989586621679458381 (TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (LookupSym0 :: TyFun a6989586621679458381 (TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> Type) -> *) (l :: a6989586621679458381) # | |
Defined in Data.Singletons.Prelude.List | |
data LookupSym1 (l :: a6989586621679458381) (l :: TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382)) #
Instances
| SuppressUnusedWarnings (LookupSym1 :: a6989586621679458381 -> TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (LookupSym1 l1 :: TyFun [(a, b)] (Maybe b) -> *) (l2 :: [(a, b)]) # | |
Defined in Data.Singletons.Prelude.List | |
type LookupSym2 (t :: a6989586621679458381) (t :: [(a6989586621679458381, b6989586621679458382)]) = Lookup t t #
data FindSym0 (l :: TyFun (TyFun a6989586621679458403 Bool -> Type) (TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> Type)) #
Instances
| SuppressUnusedWarnings (FindSym0 :: TyFun (TyFun a6989586621679458403 Bool -> Type) (TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindSym0 :: TyFun (TyFun a6989586621679458403 Bool -> Type) (TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> Type) -> *) (l :: TyFun a6989586621679458403 Bool -> Type) # | |
data FindSym1 (l :: TyFun a6989586621679458403 Bool -> Type) (l :: TyFun [a6989586621679458403] (Maybe a6989586621679458403)) #
Instances
| SuppressUnusedWarnings (FindSym1 :: (TyFun a6989586621679458403 Bool -> Type) -> TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindSym1 l1 :: TyFun [a] (Maybe a) -> *) (l2 :: [a]) # | |
type FindSym2 (t :: TyFun a6989586621679458403 Bool -> Type) (t :: [a6989586621679458403]) = Find t t #
data FilterSym0 (l :: TyFun (TyFun a6989586621679458404 Bool -> Type) (TyFun [a6989586621679458404] [a6989586621679458404] -> Type)) #
Instances
| SuppressUnusedWarnings (FilterSym0 :: TyFun (TyFun a6989586621679458404 Bool -> Type) (TyFun [a6989586621679458404] [a6989586621679458404] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FilterSym0 :: TyFun (TyFun a6989586621679458404 Bool -> Type) (TyFun [a6989586621679458404] [a6989586621679458404] -> Type) -> *) (l :: TyFun a6989586621679458404 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data FilterSym1 (l :: TyFun a6989586621679458404 Bool -> Type) (l :: TyFun [a6989586621679458404] [a6989586621679458404]) #
Instances
| SuppressUnusedWarnings (FilterSym1 :: (TyFun a6989586621679458404 Bool -> Type) -> TyFun [a6989586621679458404] [a6989586621679458404] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FilterSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type FilterSym2 (t :: TyFun a6989586621679458404 Bool -> Type) (t :: [a6989586621679458404]) = Filter t t #
data PartitionSym0 (l :: TyFun (TyFun a6989586621679458380 Bool -> Type) (TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> Type)) #
Instances
| SuppressUnusedWarnings (PartitionSym0 :: TyFun (TyFun a6989586621679458380 Bool -> Type) (TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679458380 Bool -> Type) (TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> Type) -> *) (l :: TyFun a6989586621679458380 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data PartitionSym1 (l :: TyFun a6989586621679458380 Bool -> Type) (l :: TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380])) #
Instances
| SuppressUnusedWarnings (PartitionSym1 :: (TyFun a6989586621679458380 Bool -> Type) -> TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (PartitionSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type PartitionSym2 (t :: TyFun a6989586621679458380 Bool -> Type) (t :: [a6989586621679458380]) = Partition t t #
data (!!@#@$) (l :: TyFun [a6989586621679458373] (TyFun Nat a6989586621679458373 -> Type)) #
Instances
| SuppressUnusedWarnings ((!!@#@$) :: TyFun [a6989586621679458373] (TyFun Nat a6989586621679458373 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply ((!!@#@$) :: TyFun [a6989586621679458373] (TyFun Nat a6989586621679458373 -> Type) -> *) (l :: [a6989586621679458373]) # | |
data (l :: [a6989586621679458373]) !!@#@$$ (l :: TyFun Nat a6989586621679458373) #
type (!!@#@$$$) (t :: [a6989586621679458373]) (t :: Nat) = (!!) t t #
data ElemIndexSym0 (l :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type)) #
Instances
| SuppressUnusedWarnings (ElemIndexSym0 :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemIndexSym0 :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type) -> *) (l :: a6989586621679458402) # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndexSym0 :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type) -> *) (l :: a6989586621679458402) = ElemIndexSym1 l | |
data ElemIndexSym1 (l :: a6989586621679458402) (l :: TyFun [a6989586621679458402] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings (ElemIndexSym1 :: a6989586621679458402 -> TyFun [a6989586621679458402] (Maybe Nat) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ElemIndexSym2 (t :: a6989586621679458402) (t :: [a6989586621679458402]) = ElemIndex t t #
data ElemIndicesSym0 (l :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type)) #
Instances
| SuppressUnusedWarnings (ElemIndicesSym0 :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemIndicesSym0 :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type) -> *) (l :: a6989586621679458401) # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndicesSym0 :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type) -> *) (l :: a6989586621679458401) = ElemIndicesSym1 l | |
data ElemIndicesSym1 (l :: a6989586621679458401) (l :: TyFun [a6989586621679458401] [Nat]) #
Instances
| SuppressUnusedWarnings (ElemIndicesSym1 :: a6989586621679458401 -> TyFun [a6989586621679458401] [Nat] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ElemIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type ElemIndicesSym2 (t :: a6989586621679458401) (t :: [a6989586621679458401]) = ElemIndices t t #
data FindIndexSym0 (l :: TyFun (TyFun a6989586621679458400 Bool -> Type) (TyFun [a6989586621679458400] (Maybe Nat) -> Type)) #
Instances
| SuppressUnusedWarnings (FindIndexSym0 :: TyFun (TyFun a6989586621679458400 Bool -> Type) (TyFun [a6989586621679458400] (Maybe Nat) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindIndexSym0 :: TyFun (TyFun a6989586621679458400 Bool -> Type) (TyFun [a6989586621679458400] (Maybe Nat) -> Type) -> *) (l :: TyFun a6989586621679458400 Bool -> Type) # | |
data FindIndexSym1 (l :: TyFun a6989586621679458400 Bool -> Type) (l :: TyFun [a6989586621679458400] (Maybe Nat)) #
Instances
| SuppressUnusedWarnings (FindIndexSym1 :: (TyFun a6989586621679458400 Bool -> Type) -> TyFun [a6989586621679458400] (Maybe Nat) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type FindIndexSym2 (t :: TyFun a6989586621679458400 Bool -> Type) (t :: [a6989586621679458400]) = FindIndex t t #
data FindIndicesSym0 (l :: TyFun (TyFun a6989586621679458399 Bool -> Type) (TyFun [a6989586621679458399] [Nat] -> Type)) #
Instances
| SuppressUnusedWarnings (FindIndicesSym0 :: TyFun (TyFun a6989586621679458399 Bool -> Type) (TyFun [a6989586621679458399] [Nat] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindIndicesSym0 :: TyFun (TyFun a6989586621679458399 Bool -> Type) (TyFun [a6989586621679458399] [Nat] -> Type) -> *) (l :: TyFun a6989586621679458399 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data FindIndicesSym1 (l :: TyFun a6989586621679458399 Bool -> Type) (l :: TyFun [a6989586621679458399] [Nat]) #
Instances
| SuppressUnusedWarnings (FindIndicesSym1 :: (TyFun a6989586621679458399 Bool -> Type) -> TyFun [a6989586621679458399] [Nat] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (FindIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type FindIndicesSym2 (t :: TyFun a6989586621679458399 Bool -> Type) (t :: [a6989586621679458399]) = FindIndices t t #
data ZipSym0 (l :: TyFun [a6989586621679458450] (TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipSym0 :: TyFun [a6989586621679458450] (TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipSym0 :: TyFun [a6989586621679458450] (TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> Type) -> *) (l :: [a6989586621679458450]) # | |
Defined in Data.Singletons.Prelude.List | |
data ZipSym1 (l :: [a6989586621679458450]) (l :: TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)]) #
Instances
| SuppressUnusedWarnings (ZipSym1 :: [a6989586621679458450] -> TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipSym1 l1 :: TyFun [b] [(a, b)] -> *) (l2 :: [b]) # | |
data Zip3Sym0 (l :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Zip3Sym0 :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip3Sym0 :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type) -> *) (l :: [a6989586621679458447]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym0 :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type) -> *) (l :: [a6989586621679458447]) = (Zip3Sym1 l :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) | |
data Zip3Sym1 (l :: [a6989586621679458447]) (l :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type)) #
Instances
| SuppressUnusedWarnings (Zip3Sym1 :: [a6989586621679458447] -> TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) (l2 :: [b6989586621679458448]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) (l2 :: [b6989586621679458448]) = (Zip3Sym2 l1 l2 :: TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> *) | |
data Zip3Sym2 (l :: [a6989586621679458447]) (l :: [b6989586621679458448]) (l :: TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)]) #
Instances
| SuppressUnusedWarnings (Zip3Sym2 :: [a6989586621679458447] -> [b6989586621679458448] -> TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Zip3Sym2 l1 l2 :: TyFun [c] [(a, b, c)] -> *) (l3 :: [c]) # | |
type Zip3Sym3 (t :: [a6989586621679458447]) (t :: [b6989586621679458448]) (t :: [c6989586621679458449]) = Zip3 t t t #
data ZipWithSym0 (l :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWithSym0 :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) = ZipWithSym1 l | |
data ZipWithSym1 (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (l :: TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWithSym1 :: (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) -> TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> *) (l2 :: [a6989586621679458444]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> *) (l2 :: [a6989586621679458444]) = ZipWithSym2 l1 l2 | |
data ZipWithSym2 (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (l :: [a6989586621679458444]) (l :: TyFun [b6989586621679458445] [c6989586621679458446]) #
Instances
| SuppressUnusedWarnings (ZipWithSym2 :: (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) -> [a6989586621679458444] -> TyFun [b6989586621679458445] [c6989586621679458446] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWithSym2 l1 l2 :: TyFun [b] [c] -> *) (l3 :: [b]) # | |
Defined in Data.Singletons.Prelude.List | |
type ZipWithSym3 (t :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (t :: [a6989586621679458444]) (t :: [b6989586621679458445]) = ZipWith t t t #
data ZipWith3Sym0 (l :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith3Sym0 :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) = ZipWith3Sym1 l | |
data ZipWith3Sym1 (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (l :: TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith3Sym1 :: (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) -> TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> *) (l2 :: [a6989586621679458440]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> *) (l2 :: [a6989586621679458440]) = ZipWith3Sym2 l1 l2 | |
data ZipWith3Sym2 (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (l :: [a6989586621679458440]) (l :: TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type)) #
Instances
| SuppressUnusedWarnings (ZipWith3Sym2 :: (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) -> [a6989586621679458440] -> TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> *) (l3 :: [b6989586621679458441]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> *) (l3 :: [b6989586621679458441]) = ZipWith3Sym3 l1 l2 l3 | |
data ZipWith3Sym3 (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (l :: [a6989586621679458440]) (l :: [b6989586621679458441]) (l :: TyFun [c6989586621679458442] [d6989586621679458443]) #
Instances
| SuppressUnusedWarnings (ZipWith3Sym3 :: (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) -> [a6989586621679458440] -> [b6989586621679458441] -> TyFun [c6989586621679458442] [d6989586621679458443] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (ZipWith3Sym3 l1 l2 l3 :: TyFun [c] [d] -> *) (l4 :: [c]) # | |
Defined in Data.Singletons.Prelude.List | |
type ZipWith3Sym4 (t :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (t :: [a6989586621679458440]) (t :: [b6989586621679458441]) (t :: [c6989586621679458442]) = ZipWith3 t t t t #
data UnzipSym0 (l :: TyFun [(a6989586621679458438, b6989586621679458439)] ([a6989586621679458438], [b6989586621679458439])) #
Instances
| SuppressUnusedWarnings (UnzipSym0 :: TyFun [(a6989586621679458438, b6989586621679458439)] ([a6989586621679458438], [b6989586621679458439]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnzipSym0 :: TyFun [(a, b)] ([a], [b]) -> *) (l :: [(a, b)]) # | |
data Unzip3Sym0 (l :: TyFun [(a6989586621679458435, b6989586621679458436, c6989586621679458437)] ([a6989586621679458435], [b6989586621679458436], [c6989586621679458437])) #
Instances
| SuppressUnusedWarnings (Unzip3Sym0 :: TyFun [(a6989586621679458435, b6989586621679458436, c6989586621679458437)] ([a6989586621679458435], [b6989586621679458436], [c6989586621679458437]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip3Sym0 :: TyFun [(a, b, c)] ([a], [b], [c]) -> *) (l :: [(a, b, c)]) # | |
Defined in Data.Singletons.Prelude.List | |
type Unzip3Sym1 (t :: [(a6989586621679458435, b6989586621679458436, c6989586621679458437)]) = Unzip3 t #
data Unzip4Sym0 (l :: TyFun [(a6989586621679458431, b6989586621679458432, c6989586621679458433, d6989586621679458434)] ([a6989586621679458431], [b6989586621679458432], [c6989586621679458433], [d6989586621679458434])) #
Instances
| SuppressUnusedWarnings (Unzip4Sym0 :: TyFun [(a6989586621679458431, b6989586621679458432, c6989586621679458433, d6989586621679458434)] ([a6989586621679458431], [b6989586621679458432], [c6989586621679458433], [d6989586621679458434]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) = Unzip4 l | |
type Unzip4Sym1 (t :: [(a6989586621679458431, b6989586621679458432, c6989586621679458433, d6989586621679458434)]) = Unzip4 t #
data Unzip5Sym0 (l :: TyFun [(a6989586621679458426, b6989586621679458427, c6989586621679458428, d6989586621679458429, e6989586621679458430)] ([a6989586621679458426], [b6989586621679458427], [c6989586621679458428], [d6989586621679458429], [e6989586621679458430])) #
Instances
| SuppressUnusedWarnings (Unzip5Sym0 :: TyFun [(a6989586621679458426, b6989586621679458427, c6989586621679458428, d6989586621679458429, e6989586621679458430)] ([a6989586621679458426], [b6989586621679458427], [c6989586621679458428], [d6989586621679458429], [e6989586621679458430]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) = Unzip5 l | |
type Unzip5Sym1 (t :: [(a6989586621679458426, b6989586621679458427, c6989586621679458428, d6989586621679458429, e6989586621679458430)]) = Unzip5 t #
data Unzip6Sym0 (l :: TyFun [(a6989586621679458420, b6989586621679458421, c6989586621679458422, d6989586621679458423, e6989586621679458424, f6989586621679458425)] ([a6989586621679458420], [b6989586621679458421], [c6989586621679458422], [d6989586621679458423], [e6989586621679458424], [f6989586621679458425])) #
Instances
| SuppressUnusedWarnings (Unzip6Sym0 :: TyFun [(a6989586621679458420, b6989586621679458421, c6989586621679458422, d6989586621679458423, e6989586621679458424, f6989586621679458425)] ([a6989586621679458420], [b6989586621679458421], [c6989586621679458422], [d6989586621679458423], [e6989586621679458424], [f6989586621679458425]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) = Unzip6 l | |
type Unzip6Sym1 (t :: [(a6989586621679458420, b6989586621679458421, c6989586621679458422, d6989586621679458423, e6989586621679458424, f6989586621679458425)]) = Unzip6 t #
data Unzip7Sym0 (l :: TyFun [(a6989586621679458413, b6989586621679458414, c6989586621679458415, d6989586621679458416, e6989586621679458417, f6989586621679458418, g6989586621679458419)] ([a6989586621679458413], [b6989586621679458414], [c6989586621679458415], [d6989586621679458416], [e6989586621679458417], [f6989586621679458418], [g6989586621679458419])) #
Instances
| SuppressUnusedWarnings (Unzip7Sym0 :: TyFun [(a6989586621679458413, b6989586621679458414, c6989586621679458415, d6989586621679458416, e6989586621679458417, f6989586621679458418, g6989586621679458419)] ([a6989586621679458413], [b6989586621679458414], [c6989586621679458415], [d6989586621679458416], [e6989586621679458417], [f6989586621679458418], [g6989586621679458419]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) = Unzip7 l | |
type Unzip7Sym1 (t :: [(a6989586621679458413, b6989586621679458414, c6989586621679458415, d6989586621679458416, e6989586621679458417, f6989586621679458418, g6989586621679458419)]) = Unzip7 t #
data UnlinesSym0 (l :: TyFun [Symbol] Symbol) #
Instances
| SuppressUnusedWarnings UnlinesSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply UnlinesSym0 (l :: [Symbol]) # | |
Defined in Data.Singletons.Prelude.List | |
type UnlinesSym1 (t :: [Symbol]) = Unlines t #
data UnwordsSym0 (l :: TyFun [Symbol] Symbol) #
Instances
| SuppressUnusedWarnings UnwordsSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply UnwordsSym0 (l :: [Symbol]) # | |
Defined in Data.Singletons.Prelude.List | |
type UnwordsSym1 (t :: [Symbol]) = Unwords t #
data NubSym0 (l :: TyFun [a6989586621679458372] [a6989586621679458372]) #
Instances
| SuppressUnusedWarnings (NubSym0 :: TyFun [a6989586621679458372] [a6989586621679458372] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NubSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
data DeleteSym0 (l :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteSym0 :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteSym0 :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type) -> *) (l :: a6989586621679458412) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteSym0 :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type) -> *) (l :: a6989586621679458412) = DeleteSym1 l | |
data DeleteSym1 (l :: a6989586621679458412) (l :: TyFun [a6989586621679458412] [a6989586621679458412]) #
Instances
| SuppressUnusedWarnings (DeleteSym1 :: a6989586621679458412 -> TyFun [a6989586621679458412] [a6989586621679458412] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DeleteSym2 (t :: a6989586621679458412) (t :: [a6989586621679458412]) = Delete t t #
data (\\@#@$) (l :: TyFun [a6989586621679458411] (TyFun [a6989586621679458411] [a6989586621679458411] -> Type)) #
Instances
| SuppressUnusedWarnings ((\\@#@$) :: TyFun [a6989586621679458411] (TyFun [a6989586621679458411] [a6989586621679458411] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply ((\\@#@$) :: TyFun [a6989586621679458411] (TyFun [a6989586621679458411] [a6989586621679458411] -> Type) -> *) (l :: [a6989586621679458411]) # | |
data (l :: [a6989586621679458411]) \\@#@$$ (l :: TyFun [a6989586621679458411] [a6989586621679458411]) #
Instances
| SuppressUnusedWarnings ((\\@#@$$) :: [a6989586621679458411] -> TyFun [a6989586621679458411] [a6989586621679458411] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply ((\\@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
type (\\@#@$$$) (t :: [a6989586621679458411]) (t :: [a6989586621679458411]) = (\\) t t #
data UnionSym0 (l :: TyFun [a6989586621679458368] (TyFun [a6989586621679458368] [a6989586621679458368] -> Type)) #
Instances
| SuppressUnusedWarnings (UnionSym0 :: TyFun [a6989586621679458368] (TyFun [a6989586621679458368] [a6989586621679458368] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionSym0 :: TyFun [a6989586621679458368] (TyFun [a6989586621679458368] [a6989586621679458368] -> Type) -> *) (l :: [a6989586621679458368]) # | |
data UnionSym1 (l :: [a6989586621679458368]) (l :: TyFun [a6989586621679458368] [a6989586621679458368]) #
Instances
| SuppressUnusedWarnings (UnionSym1 :: [a6989586621679458368] -> TyFun [a6989586621679458368] [a6989586621679458368] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
data IntersectSym0 (l :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type)) #
Instances
| SuppressUnusedWarnings (IntersectSym0 :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectSym0 :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type) -> *) (l :: [a6989586621679458398]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectSym0 :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type) -> *) (l :: [a6989586621679458398]) = IntersectSym1 l | |
data IntersectSym1 (l :: [a6989586621679458398]) (l :: TyFun [a6989586621679458398] [a6989586621679458398]) #
Instances
| SuppressUnusedWarnings (IntersectSym1 :: [a6989586621679458398] -> TyFun [a6989586621679458398] [a6989586621679458398] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IntersectSym2 (t :: [a6989586621679458398]) (t :: [a6989586621679458398]) = Intersect t t #
data InsertSym0 (l :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type)) #
Instances
| SuppressUnusedWarnings (InsertSym0 :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertSym0 :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type) -> *) (l :: a6989586621679458385) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertSym0 :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type) -> *) (l :: a6989586621679458385) = InsertSym1 l | |
data InsertSym1 (l :: a6989586621679458385) (l :: TyFun [a6989586621679458385] [a6989586621679458385]) #
Instances
| SuppressUnusedWarnings (InsertSym1 :: a6989586621679458385 -> TyFun [a6989586621679458385] [a6989586621679458385] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type InsertSym2 (t :: a6989586621679458385) (t :: [a6989586621679458385]) = Insert t t #
data SortSym0 (l :: TyFun [a6989586621679458384] [a6989586621679458384]) #
Instances
| SuppressUnusedWarnings (SortSym0 :: TyFun [a6989586621679458384] [a6989586621679458384] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SortSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
data NubBySym0 (l :: TyFun (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (TyFun [a6989586621679458371] [a6989586621679458371] -> Type)) #
Instances
| SuppressUnusedWarnings (NubBySym0 :: TyFun (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (TyFun [a6989586621679458371] [a6989586621679458371] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NubBySym0 :: TyFun (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (TyFun [a6989586621679458371] [a6989586621679458371] -> Type) -> *) (l :: TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data NubBySym1 (l :: TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458371] [a6989586621679458371]) #
Instances
| SuppressUnusedWarnings (NubBySym1 :: (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) -> TyFun [a6989586621679458371] [a6989586621679458371] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (NubBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
type NubBySym2 (t :: TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (t :: [a6989586621679458371]) = NubBy t t #
data DeleteBySym0 (l :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteBySym0 :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) = DeleteBySym1 l | |
data DeleteBySym1 (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (l :: TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteBySym1 :: (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) -> TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteBySym1 l1 :: TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> *) (l2 :: a6989586621679458410) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym1 l1 :: TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> *) (l2 :: a6989586621679458410) = DeleteBySym2 l1 l2 | |
data DeleteBySym2 (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (l :: a6989586621679458410) (l :: TyFun [a6989586621679458410] [a6989586621679458410]) #
Instances
| SuppressUnusedWarnings (DeleteBySym2 :: (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) -> a6989586621679458410 -> TyFun [a6989586621679458410] [a6989586621679458410] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DeleteBySym3 (t :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (t :: a6989586621679458410) (t :: [a6989586621679458410]) = DeleteBy t t t #
data DeleteFirstsBySym0 (l :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) = DeleteFirstsBySym1 l | |
data DeleteFirstsBySym1 (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type)) #
Instances
| SuppressUnusedWarnings (DeleteFirstsBySym1 :: (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) -> TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> *) (l2 :: [a6989586621679458409]) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> *) (l2 :: [a6989586621679458409]) = DeleteFirstsBySym2 l1 l2 | |
data DeleteFirstsBySym2 (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (l :: [a6989586621679458409]) (l :: TyFun [a6989586621679458409] [a6989586621679458409]) #
Instances
| SuppressUnusedWarnings (DeleteFirstsBySym2 :: (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) -> [a6989586621679458409] -> TyFun [a6989586621679458409] [a6989586621679458409] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (DeleteFirstsBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type DeleteFirstsBySym3 (t :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (t :: [a6989586621679458409]) (t :: [a6989586621679458409]) = DeleteFirstsBy t t t #
data UnionBySym0 (l :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (UnionBySym0 :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) = UnionBySym1 l | |
data UnionBySym1 (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type)) #
Instances
| SuppressUnusedWarnings (UnionBySym1 :: (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) -> TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionBySym1 l1 :: TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> *) (l2 :: [a6989586621679458369]) # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym1 l1 :: TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> *) (l2 :: [a6989586621679458369]) = UnionBySym2 l1 l2 | |
data UnionBySym2 (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (l :: [a6989586621679458369]) (l :: TyFun [a6989586621679458369] [a6989586621679458369]) #
Instances
| SuppressUnusedWarnings (UnionBySym2 :: (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) -> [a6989586621679458369] -> TyFun [a6989586621679458369] [a6989586621679458369] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (UnionBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type UnionBySym3 (t :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (t :: [a6989586621679458369]) (t :: [a6989586621679458369]) = UnionBy t t t #
data IntersectBySym0 (l :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (IntersectBySym0 :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) = IntersectBySym1 l | |
data IntersectBySym1 (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type)) #
Instances
| SuppressUnusedWarnings (IntersectBySym1 :: (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) -> TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> *) (l2 :: [a6989586621679458397]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> *) (l2 :: [a6989586621679458397]) = IntersectBySym2 l1 l2 | |
data IntersectBySym2 (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (l :: [a6989586621679458397]) (l :: TyFun [a6989586621679458397] [a6989586621679458397]) #
Instances
| SuppressUnusedWarnings (IntersectBySym2 :: (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) -> [a6989586621679458397] -> TyFun [a6989586621679458397] [a6989586621679458397] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (IntersectBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type IntersectBySym3 (t :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (t :: [a6989586621679458397]) (t :: [a6989586621679458397]) = IntersectBy t t t #
data GroupBySym0 (l :: TyFun (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (TyFun [a6989586621679458383] [[a6989586621679458383]] -> Type)) #
Instances
| SuppressUnusedWarnings (GroupBySym0 :: TyFun (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (TyFun [a6989586621679458383] [[a6989586621679458383]] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (TyFun [a6989586621679458383] [[a6989586621679458383]] -> Type) -> *) (l :: TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data GroupBySym1 (l :: TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (l :: TyFun [a6989586621679458383] [[a6989586621679458383]]) #
Instances
| SuppressUnusedWarnings (GroupBySym1 :: (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) -> TyFun [a6989586621679458383] [[a6989586621679458383]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GroupBySym1 l1 :: TyFun [a] [[a]] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type GroupBySym2 (t :: TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (t :: [a6989586621679458383]) = GroupBy t t #
data SortBySym0 (l :: TyFun (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (TyFun [a6989586621679458408] [a6989586621679458408] -> Type)) #
Instances
| SuppressUnusedWarnings (SortBySym0 :: TyFun (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (TyFun [a6989586621679458408] [a6989586621679458408] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SortBySym0 :: TyFun (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (TyFun [a6989586621679458408] [a6989586621679458408] -> Type) -> *) (l :: TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data SortBySym1 (l :: TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679458408] [a6989586621679458408]) #
Instances
| SuppressUnusedWarnings (SortBySym1 :: (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) -> TyFun [a6989586621679458408] [a6989586621679458408] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (SortBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type SortBySym2 (t :: TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (t :: [a6989586621679458408]) = SortBy t t #
data InsertBySym0 (l :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (InsertBySym0 :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) = InsertBySym1 l | |
data InsertBySym1 (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (l :: TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type)) #
Instances
| SuppressUnusedWarnings (InsertBySym1 :: (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) -> TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertBySym1 l1 :: TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> *) (l2 :: a6989586621679458407) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym1 l1 :: TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> *) (l2 :: a6989586621679458407) = InsertBySym2 l1 l2 | |
data InsertBySym2 (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (l :: a6989586621679458407) (l :: TyFun [a6989586621679458407] [a6989586621679458407]) #
Instances
| SuppressUnusedWarnings (InsertBySym2 :: (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) -> a6989586621679458407 -> TyFun [a6989586621679458407] [a6989586621679458407] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (InsertBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type InsertBySym3 (t :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (t :: a6989586621679458407) (t :: [a6989586621679458407]) = InsertBy t t t #
data MaximumBySym0 (l :: TyFun (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (TyFun [a6989586621679458406] a6989586621679458406 -> Type)) #
Instances
| SuppressUnusedWarnings (MaximumBySym0 :: TyFun (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (TyFun [a6989586621679458406] a6989586621679458406 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MaximumBySym0 :: TyFun (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (TyFun [a6989586621679458406] a6989586621679458406 -> Type) -> *) (l :: TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data MaximumBySym1 (l :: TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679458406] a6989586621679458406) #
Instances
| SuppressUnusedWarnings (MaximumBySym1 :: (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) -> TyFun [a6989586621679458406] a6989586621679458406 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MaximumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type MaximumBySym2 (t :: TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (t :: [a6989586621679458406]) = MaximumBy t t #
data MinimumBySym0 (l :: TyFun (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (TyFun [a6989586621679458405] a6989586621679458405 -> Type)) #
Instances
| SuppressUnusedWarnings (MinimumBySym0 :: TyFun (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (TyFun [a6989586621679458405] a6989586621679458405 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MinimumBySym0 :: TyFun (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (TyFun [a6989586621679458405] a6989586621679458405 -> Type) -> *) (l :: TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
data MinimumBySym1 (l :: TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (l :: TyFun [a6989586621679458405] a6989586621679458405) #
Instances
| SuppressUnusedWarnings (MinimumBySym1 :: (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) -> TyFun [a6989586621679458405] a6989586621679458405 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (MinimumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type MinimumBySym2 (t :: TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (t :: [a6989586621679458405]) = MinimumBy t t #
data GenericLengthSym0 (l :: TyFun [a6989586621679458367] i6989586621679458366) #
Instances
| SuppressUnusedWarnings (GenericLengthSym0 :: TyFun [a6989586621679458367] i6989586621679458366 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (GenericLengthSym0 :: TyFun [a] k2 -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
type GenericLengthSym1 (t :: [a6989586621679458367]) = GenericLength t #