| Copyright | (C) 2013 Richard Eisenberg |
|---|---|
| License | BSD-style (see LICENSE) |
| Maintainer | Richard Eisenberg (rae@cs.brynmawr.edu) |
| Stability | experimental |
| Portability | non-portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Data.Singletons.TH
Contents
Description
This module contains everything you need to derive your own singletons via Template Haskell.
TURN ON -XScopedTypeVariables IN YOUR MODULE IF YOU WANT THIS TO WORK.
Synopsis
- singletons :: DsMonad q => q [Dec] -> q [Dec]
- singletonsOnly :: DsMonad q => q [Dec] -> q [Dec]
- genSingletons :: DsMonad q => [Name] -> q [Dec]
- promote :: DsMonad q => q [Dec] -> q [Dec]
- promoteOnly :: DsMonad q => q [Dec] -> q [Dec]
- genDefunSymbols :: DsMonad q => [Name] -> q [Dec]
- genPromotions :: DsMonad q => [Name] -> q [Dec]
- promoteEqInstances :: DsMonad q => [Name] -> q [Dec]
- promoteEqInstance :: DsMonad q => Name -> q [Dec]
- singEqInstances :: DsMonad q => [Name] -> q [Dec]
- singEqInstance :: DsMonad q => Name -> q [Dec]
- singEqInstancesOnly :: DsMonad q => [Name] -> q [Dec]
- singEqInstanceOnly :: DsMonad q => Name -> q [Dec]
- singDecideInstances :: DsMonad q => [Name] -> q [Dec]
- singDecideInstance :: DsMonad q => Name -> q [Dec]
- promoteOrdInstances :: DsMonad q => [Name] -> q [Dec]
- promoteOrdInstance :: DsMonad q => Name -> q [Dec]
- singOrdInstances :: DsMonad q => [Name] -> q [Dec]
- singOrdInstance :: DsMonad q => Name -> q [Dec]
- promoteBoundedInstances :: DsMonad q => [Name] -> q [Dec]
- promoteBoundedInstance :: DsMonad q => Name -> q [Dec]
- singBoundedInstances :: DsMonad q => [Name] -> q [Dec]
- singBoundedInstance :: DsMonad q => Name -> q [Dec]
- promoteEnumInstances :: DsMonad q => [Name] -> q [Dec]
- promoteEnumInstance :: DsMonad q => Name -> q [Dec]
- singEnumInstances :: DsMonad q => [Name] -> q [Dec]
- singEnumInstance :: DsMonad q => Name -> q [Dec]
- promoteShowInstances :: DsMonad q => [Name] -> q [Dec]
- promoteShowInstance :: DsMonad q => Name -> q [Dec]
- singShowInstances :: DsMonad q => [Name] -> q [Dec]
- singShowInstance :: DsMonad q => Name -> q [Dec]
- cases :: DsMonad q => Name -> q Exp -> q Exp -> q Exp
- sCases :: DsMonad q => Name -> q Exp -> q Exp -> q Exp
- data family Sing (a :: k)
- module Data.Singletons
- class PEq a where
- type family If (cond :: Bool) (tru :: k) (fls :: k) :: k where ...
- sIf :: Sing a -> Sing b -> Sing c -> Sing (If a b c)
- type family (a :: Bool) && (b :: Bool) :: Bool where ...
- (%&&) :: Sing a -> Sing b -> Sing (a && b)
- class SEq k where
- class PEq a => POrd (a :: Type) where
- class SEq a => SOrd a where
- type family ThenCmp (a :: Ordering) (a :: Ordering) :: Ordering where ...
- sThenCmp :: forall (t :: Ordering) (t :: Ordering). Sing t -> Sing t -> Sing (Apply (Apply ThenCmpSym0 t) t :: Ordering)
- 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)
- class SDecide k where
- data (a :: k) :~: (b :: k) :: forall k. k -> k -> * where
- data Void
- type Refuted a = a -> Void
- data Decision a
- class PBounded (a :: Type) where
- class SBounded a where
- class PEnum (a :: Type) where
- class SEnum a where
- class PShow (a :: Type) where
- class SShow a where
- type family ShowString (a :: Symbol) (a :: Symbol) :: Symbol where ...
- sShowString :: forall (t :: Symbol) (t :: Symbol). Sing t -> Sing t -> Sing (Apply (Apply ShowStringSym0 t) t :: Symbol)
- type family ShowParen (a :: Bool) (a :: TyFun Symbol Symbol -> Type) (a :: Symbol) :: Symbol where ...
- sShowParen :: forall (t :: Bool) (t :: TyFun Symbol Symbol -> Type) (t :: Symbol). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ShowParenSym0 t) t) t :: Symbol)
- type family ShowSpace (a :: Symbol) :: Symbol where ...
- sShowSpace :: forall (t :: Symbol). Sing t -> Sing (Apply ShowSpaceSym0 t :: Symbol)
- type family ShowChar (a :: Symbol) (a :: Symbol) :: Symbol where ...
- sShowChar :: forall (t :: Symbol) (t :: Symbol). Sing t -> Sing t -> Sing (Apply (Apply ShowCharSym0 t) t :: Symbol)
- type family ShowCommaSpace (a :: Symbol) :: Symbol where ...
- sShowCommaSpace :: forall (t :: Symbol). Sing t -> Sing (Apply ShowCommaSpaceSym0 t :: Symbol)
- type family ((a :: TyFun b c -> Type) :. (a :: TyFun a b -> Type)) (a :: a) :: c where ...
- (%.) :: forall (t :: TyFun b c -> Type) (t :: TyFun a b -> Type) (t :: a). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (.@#@$) t) t) t :: c)
- data SomeSing k where
- type family Error (str :: k0) :: k where ...
- sError :: Sing (str :: Symbol) -> a
- data ErrorSym0 (l :: TyFun k06989586621679393131 k6989586621679393132)
- type ErrorSym1 (t :: k06989586621679393131) = Error t
- type family Undefined :: k where ...
- sUndefined :: a
- type UndefinedSym0 = Undefined
- type TrueSym0 = True
- type FalseSym0 = False
- data (==@#@$) (l :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type))
- data (l :: a6989586621679303786) ==@#@$$ (l :: TyFun a6989586621679303786 Bool)
- type (==@#@$$$) (t :: a6989586621679303786) (t :: a6989586621679303786) = (==) t t
- data (>@#@$) (l :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type))
- data (l :: a6989586621679315171) >@#@$$ (l :: TyFun a6989586621679315171 Bool)
- type (>@#@$$$) (t :: a6989586621679315171) (t :: a6989586621679315171) = (>) t t
- type LTSym0 = LT
- type EQSym0 = EQ
- type GTSym0 = GT
- type Tuple0Sym0 = '()
- data Tuple2Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type))
- data Tuple2Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866))
- type Tuple2Sym2 (t :: a3530822107858468865) (t :: b3530822107858468866) = '(t, t)
- data Tuple3Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type))
- data Tuple3Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type))
- data Tuple3Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867))
- type Tuple3Sym3 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) = '(t, t, t)
- data Tuple4Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type))
- data Tuple4Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type))
- data Tuple4Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type))
- data Tuple4Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868))
- type Tuple4Sym4 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) = '(t, t, t, t)
- data Tuple5Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type))
- data Tuple5Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type))
- data Tuple5Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type))
- data Tuple5Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type))
- data Tuple5Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869))
- type Tuple5Sym5 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) = '(t, t, t, t, t)
- data Tuple6Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type))
- data Tuple6Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type))
- data Tuple6Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type))
- data Tuple6Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type))
- data Tuple6Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type))
- data Tuple6Sym5 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870))
- type Tuple6Sym6 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) (t :: f3530822107858468870) = '(t, t, t, t, t, t)
- data Tuple7Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type))
- data Tuple7Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type))
- data Tuple7Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type))
- data Tuple7Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type))
- data Tuple7Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type))
- data Tuple7Sym5 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type))
- data Tuple7Sym6 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: f3530822107858468870) (l :: TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871))
- type Tuple7Sym7 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) (t :: f3530822107858468870) (t :: g3530822107858468871) = '(t, t, t, t, t, t, t)
- data CompareSym0 (l :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type))
- data CompareSym1 (l :: a6989586621679315171) (l :: TyFun a6989586621679315171 Ordering)
- type CompareSym2 (t :: a6989586621679315171) (t :: a6989586621679315171) = Compare t t
- data ThenCmpSym0 (l :: TyFun Ordering (TyFun Ordering Ordering -> Type))
- data ThenCmpSym1 (l :: Ordering) (l :: TyFun Ordering Ordering)
- type ThenCmpSym2 (t :: Ordering) (t :: Ordering) = ThenCmp t 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
- type MinBoundSym0 = MinBound
- type MaxBoundSym0 = MaxBound
- data ShowsPrecSym0 (l :: TyFun Nat (TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> Type))
- data ShowsPrecSym1 (l :: Nat) (l :: TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type))
- data ShowsPrecSym2 (l :: Nat) (l :: a6989586621679693692) (l :: TyFun Symbol Symbol)
- type ShowsPrecSym3 (t :: Nat) (t :: a6989586621679693692) (t :: Symbol) = ShowsPrec t t t
- data ShowStringSym0 (l :: TyFun Symbol (TyFun Symbol Symbol -> Type))
- data ShowStringSym1 (l :: Symbol) (l :: TyFun Symbol Symbol)
- type ShowStringSym2 (t :: Symbol) (t :: Symbol) = ShowString t t
- data ShowParenSym0 (l :: TyFun Bool (TyFun (TyFun Symbol Symbol -> Type) (TyFun Symbol Symbol -> Type) -> Type))
- data ShowParenSym1 (l :: Bool) (l :: TyFun (TyFun Symbol Symbol -> Type) (TyFun Symbol Symbol -> Type))
- data ShowParenSym2 (l :: Bool) (l :: TyFun Symbol Symbol -> Type) (l :: TyFun Symbol Symbol)
- data ShowSpaceSym0 (l :: TyFun Symbol Symbol)
- type ShowSpaceSym1 (t :: Symbol) = ShowSpace t
- data ShowCharSym0 (l :: TyFun Symbol (TyFun Symbol Symbol -> Type))
- data ShowCharSym1 (l :: Symbol) (l :: TyFun Symbol Symbol)
- type ShowCharSym2 (t :: Symbol) (t :: Symbol) = ShowChar t t
- data ShowCommaSpaceSym0 (l :: TyFun Symbol Symbol)
- type ShowCommaSpaceSym1 (t :: Symbol) = ShowCommaSpace t
- data (.@#@$) (l :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type))
- data (l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) .@#@$$ (l :: TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type))
- data ((l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) .@#@$$$ (l :: TyFun a6989586621679435599 b6989586621679435597 -> Type)) (l :: TyFun a6989586621679435599 c6989586621679435598)
- type (.@#@$$$$) (t :: TyFun b6989586621679435597 c6989586621679435598 -> Type) (t :: TyFun a6989586621679435599 b6989586621679435597 -> Type) (t :: a6989586621679435599) = (:.) t t t
- data (:@#@$) (l :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type))
- data (l :: a3530822107858468865) :@#@$$ (l :: TyFun [a3530822107858468865] [a3530822107858468865])
- type (:@#@$$$) (t :: a3530822107858468865) (t :: [a3530822107858468865]) = (:) t t
- class SuppressUnusedWarnings (t :: k) where
Primary Template Haskell generation functions
singletons :: DsMonad q => q [Dec] -> q [Dec] #
Make promoted and singleton versions of all declarations given, retaining the original declarations. See https://github.com/goldfirere/singletons/blob/master/README.md for further explanation.
singletonsOnly :: DsMonad q => q [Dec] -> q [Dec] #
Make promoted and singleton versions of all declarations given, discarding the original declarations. Note that a singleton based on a datatype needs the original datatype, so this will fail if it sees any datatype declarations. Classes, instances, and functions are all fine.
genSingletons :: DsMonad q => [Name] -> q [Dec] #
Generate singleton definitions from a type that is already defined. For example, the singletons package itself uses
$(genSingletons [''Bool, ''Maybe, ''Either, ''[]])
to generate singletons for Prelude types.
promote :: DsMonad q => q [Dec] -> q [Dec] #
Promote every declaration given to the type level, retaining the originals.
promoteOnly :: DsMonad q => q [Dec] -> q [Dec] #
Promote each declaration, discarding the originals. Note that a promoted datatype uses the same definition as an original datatype, so this will not work with datatypes. Classes, instances, and functions are all fine.
genDefunSymbols :: DsMonad q => [Name] -> q [Dec] #
Generate defunctionalization symbols for existing type family
genPromotions :: DsMonad q => [Name] -> q [Dec] #
Generate promoted definitions from a type that is already defined. This is generally only useful with classes.
Functions to generate equality instances
promoteEqInstances :: DsMonad q => [Name] -> q [Dec] #
Produce instances for (==) (type-level equality) from the given types
promoteEqInstance :: DsMonad q => Name -> q [Dec] #
Produce an instance for (==) (type-level equality) from the given type
singEqInstances :: DsMonad q => [Name] -> q [Dec] #
Create instances of SEq and type-level (==) for each type in the list
singEqInstance :: DsMonad q => Name -> q [Dec] #
Create instance of SEq and type-level (==) for the given type
singEqInstancesOnly :: DsMonad q => [Name] -> q [Dec] #
Create instances of SEq (only -- no instance for (==), which SEq generally
relies on) for each type in the list
singEqInstanceOnly :: DsMonad q => Name -> q [Dec] #
Create instances of SEq (only -- no instance for (==), which SEq generally
relies on) for the given type
singDecideInstances :: DsMonad q => [Name] -> q [Dec] #
Create instances of SDecide for each type in the list.
singDecideInstance :: DsMonad q => Name -> q [Dec] #
Create instance of SDecide for the given type.
Functions to generate Ord instances
promoteOrdInstances :: DsMonad q => [Name] -> q [Dec] #
Produce instances for POrd from the given types
promoteOrdInstance :: DsMonad q => Name -> q [Dec] #
Produce an instance for POrd from the given type
singOrdInstances :: DsMonad q => [Name] -> q [Dec] #
Create instances of SOrd for the given types
singOrdInstance :: DsMonad q => Name -> q [Dec] #
Create instance of SOrd for the given type
Functions to generate Bounded instances
promoteBoundedInstances :: DsMonad q => [Name] -> q [Dec] #
Produce instances for PBounded from the given types
promoteBoundedInstance :: DsMonad q => Name -> q [Dec] #
Produce an instance for PBounded from the given type
singBoundedInstances :: DsMonad q => [Name] -> q [Dec] #
Create instances of SBounded for the given types
singBoundedInstance :: DsMonad q => Name -> q [Dec] #
Create instance of SBounded for the given type
Functions to generate Enum instances
promoteEnumInstances :: DsMonad q => [Name] -> q [Dec] #
Produce instances for PEnum from the given types
promoteEnumInstance :: DsMonad q => Name -> q [Dec] #
Produce an instance for PEnum from the given type
singEnumInstances :: DsMonad q => [Name] -> q [Dec] #
Create instances of SEnum for the given types
singEnumInstance :: DsMonad q => Name -> q [Dec] #
Create instance of SEnum for the given type
Functions to generate Show instances
promoteShowInstances :: DsMonad q => [Name] -> q [Dec] #
Produce instances for PShow from the given types
promoteShowInstance :: DsMonad q => Name -> q [Dec] #
Produce an instance for PShow from the given type
singShowInstances :: DsMonad q => [Name] -> q [Dec] #
Create instances of SShow for the given types
(Not to be confused with showSingInstances.)
singShowInstance :: DsMonad q => Name -> q [Dec] #
Create instance of SShow for the given type
(Not to be confused with showShowInstance.)
Utility functions
Arguments
| :: DsMonad q | |
| => Name | The head of the type of the scrutinee. (Like |
| -> q Exp | The scrutinee, in a Template Haskell quote |
| -> q Exp | The body, in a Template Haskell quote |
| -> q Exp |
The function cases generates a case expression where each right-hand side
is identical. This may be useful if the type-checker requires knowledge of which
constructor is used to satisfy equality or type-class constraints, but where
each constructor is treated the same.
Arguments
| :: DsMonad q | |
| => Name | The head of the type the scrutinee's type is based on.
(Like |
| -> q Exp | The scrutinee, in a Template Haskell quote |
| -> q Exp | The body, in a Template Haskell quote |
| -> q Exp |
The function sCases generates a case expression where each right-hand side
is identical. This may be useful if the type-checker requires knowledge of which
constructor is used to satisfy equality or type-class constraints, but where
each constructor is treated the same. For sCases, unlike cases, the
scrutinee is a singleton. But make sure to pass in the name of the original
datatype, preferring ''Maybe over ''SMaybe.
Basic singleton definitions
The singleton kind-indexed data family.
Instances
module Data.Singletons
Auxiliary definitions
These definitions might be mentioned in code generated by Template Haskell, so they must be in scope.
The promoted analogue of Eq. If you supply no definition for '(==)',
then it defaults to a use of '(DTE.==)', from Data.Type.Equality.
type family If (cond :: Bool) (tru :: k) (fls :: k) :: k where ... #
Type-level If. If True a b ==> a; If False a b ==> b
The singleton analogue of Eq. Unlike the definition for Eq, it is required
that instances define a body for '(%==)'. You may also supply a body for '(%/=)'.
Minimal complete definition
Methods
(%==) :: forall (a :: k) (b :: k). Sing a -> Sing b -> Sing (a == b) infix 4 #
Boolean equality on singletons
(%/=) :: forall (a :: k) (b :: k). Sing a -> Sing b -> Sing (a /= b) infix 4 #
Boolean disequality on singletons
(%/=) :: forall (a :: k) (b :: k). (a /= b) ~ Not (a == b) => Sing a -> Sing b -> Sing (a /= b) infix 4 #
Boolean disequality on singletons
Instances
| SEq Bool # | |
| SEq Ordering # | |
| SEq Type # | |
| SEq Nat # | |
| SEq Symbol # | |
| SEq () # | |
| SEq Void # | |
| (SEq a, SEq [a]) => SEq [a] # | |
| SEq a => SEq (Maybe a) # | |
| (SEq a, SEq [a]) => SEq (NonEmpty a) # | |
| (SEq a, SEq b) => SEq (Either a b) # | |
| (SEq a, SEq b) => SEq (a, b) # | |
| (SEq a, SEq b, SEq c) => SEq (a, b, c) # | |
| (SEq a, SEq b, SEq c, SEq d) => SEq (a, b, c, d) # | |
| (SEq a, SEq b, SEq c, SEq d, SEq e) => SEq (a, b, c, d, e) # | |
| (SEq a, SEq b, SEq c, SEq d, SEq e, SEq f) => SEq (a, b, c, d, e, f) # | |
| (SEq a, SEq b, SEq c, SEq d, SEq e, SEq f, SEq g) => SEq (a, b, c, d, e, f, g) # | |
class PEq a => POrd (a :: Type) #
Associated Types
type Compare (arg :: a) (arg :: a) :: Ordering #
type (arg :: a) < (arg :: a) :: Bool #
type (arg :: a) <= (arg :: a) :: Bool #
type (arg :: a) > (arg :: a) :: Bool #
type (arg :: a) >= (arg :: a) :: Bool #
Methods
sCompare :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply CompareSym0 t) t :: Ordering) #
(%<) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (<@#@$) t) t :: Bool) infix 4 #
(%<=) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (<=@#@$) t) t :: Bool) infix 4 #
(%>) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (>@#@$) t) t :: Bool) infix 4 #
(%>=) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (>=@#@$) t) t :: Bool) infix 4 #
sMax :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply MaxSym0 t) t :: a) #
sMin :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply MinSym0 t) t :: a) #
sCompare :: forall (t :: a) (t :: a). ((Apply (Apply CompareSym0 t) t :: Ordering) ~ Apply (Apply Compare_6989586621679316629Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply CompareSym0 t) t :: Ordering) #
(%<) :: forall (t :: a) (t :: a). ((Apply (Apply (<@#@$) t) t :: Bool) ~ Apply (Apply TFHelper_6989586621679316662Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply (<@#@$) t) t :: Bool) infix 4 #
(%<=) :: forall (t :: a) (t :: a). ((Apply (Apply (<=@#@$) t) t :: Bool) ~ Apply (Apply TFHelper_6989586621679316695Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply (<=@#@$) t) t :: Bool) infix 4 #
(%>) :: forall (t :: a) (t :: a). ((Apply (Apply (>@#@$) t) t :: Bool) ~ Apply (Apply TFHelper_6989586621679316728Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply (>@#@$) t) t :: Bool) infix 4 #
(%>=) :: forall (t :: a) (t :: a). ((Apply (Apply (>=@#@$) t) t :: Bool) ~ Apply (Apply TFHelper_6989586621679316761Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply (>=@#@$) t) t :: Bool) infix 4 #
sMax :: forall (t :: a) (t :: a). ((Apply (Apply MaxSym0 t) t :: a) ~ Apply (Apply Max_6989586621679316794Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply MaxSym0 t) t :: a) #
sMin :: forall (t :: a) (t :: a). ((Apply (Apply MinSym0 t) t :: a) ~ Apply (Apply Min_6989586621679316827Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply MinSym0 t) t :: a) #
Instances
sThenCmp :: forall (t :: Ordering) (t :: Ordering). Sing t -> Sing t -> Sing (Apply (Apply ThenCmpSym0 t) t :: Ordering) #
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) #
Members of the SDecide "kind" class support decidable equality. Instances
of this class are generated alongside singleton definitions for datatypes that
derive an Eq instance.
Minimal complete definition
Methods
(%~) :: forall (a :: k) (b :: k). Sing a -> Sing b -> Decision (a :~: b) infix 4 #
Compute a proof or disproof of equality, given two singletons.
Instances
| SDecide Bool # | |
| SDecide Ordering # | |
| SDecide Type # | |
| SDecide Nat # | |
| SDecide Symbol # | |
| SDecide () # | |
| SDecide Void # | |
| (SDecide a, SDecide [a]) => SDecide [a] # | |
| SDecide a => SDecide (Maybe a) # | |
| (SDecide a, SDecide [a]) => SDecide (NonEmpty a) # | |
| (SDecide a, SDecide b) => SDecide (Either a b) # | |
| (SDecide a, SDecide b) => SDecide (a, b) # | |
| (SDecide a, SDecide b, SDecide c) => SDecide (a, b, c) # | |
| (SDecide a, SDecide b, SDecide c, SDecide d) => SDecide (a, b, c, d) # | |
| (SDecide a, SDecide b, SDecide c, SDecide d, SDecide e) => SDecide (a, b, c, d, e) # | |
| (SDecide a, SDecide b, SDecide c, SDecide d, SDecide e, SDecide f) => SDecide (a, b, c, d, e, f) # | |
| (SDecide a, SDecide b, SDecide c, SDecide d, SDecide e, SDecide f, SDecide g) => SDecide (a, b, c, d, e, f, g) # | |
data (a :: k) :~: (b :: k) :: forall k. k -> k -> * where infix 4 #
Propositional equality. If a :~: b is inhabited by some terminating
value, then the type a is the same as the type b. To use this equality
in practice, pattern-match on the a :~: b to get out the Refl constructor;
in the body of the pattern-match, the compiler knows that a ~ b.
Since: base-4.7.0.0
Instances
| TestCoercion ((:~:) a :: k -> *) | Since: base-4.7.0.0 |
Defined in Data.Type.Coercion | |
| TestEquality ((:~:) a :: k -> *) | Since: base-4.7.0.0 |
Defined in Data.Type.Equality | |
| a ~ b => Bounded (a :~: b) | Since: base-4.7.0.0 |
| a ~ b => Enum (a :~: b) | Since: base-4.7.0.0 |
Defined in Data.Type.Equality Methods succ :: (a :~: b) -> a :~: b # pred :: (a :~: b) -> a :~: b # fromEnum :: (a :~: b) -> Int # enumFrom :: (a :~: b) -> [a :~: b] # enumFromThen :: (a :~: b) -> (a :~: b) -> [a :~: b] # enumFromTo :: (a :~: b) -> (a :~: b) -> [a :~: b] # enumFromThenTo :: (a :~: b) -> (a :~: b) -> (a :~: b) -> [a :~: b] # | |
| Eq (a :~: b) | |
| (a ~ b, Data a) => Data (a :~: b) | Since: base-4.7.0.0 |
Defined in Data.Data Methods gfoldl :: (forall d b0. Data d => c (d -> b0) -> d -> c b0) -> (forall g. g -> c g) -> (a :~: b) -> c (a :~: b) # gunfold :: (forall b0 r. Data b0 => c (b0 -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (a :~: b) # toConstr :: (a :~: b) -> Constr # dataTypeOf :: (a :~: b) -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c (a :~: b)) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (a :~: b)) # gmapT :: (forall b0. Data b0 => b0 -> b0) -> (a :~: b) -> a :~: b # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> (a :~: b) -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> (a :~: b) -> r # gmapQ :: (forall d. Data d => d -> u) -> (a :~: b) -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> (a :~: b) -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> (a :~: b) -> m (a :~: b) # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> (a :~: b) -> m (a :~: b) # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> (a :~: b) -> m (a :~: b) # | |
| Ord (a :~: b) | |
Defined in Data.Type.Equality | |
| a ~ b => Read (a :~: b) | Since: base-4.7.0.0 |
| Show (a :~: b) | |
Uninhabited data type
Since: base-4.8.0.0
Instances
| Eq Void | Since: base-4.8.0.0 |
| Data Void | Since: base-4.8.0.0 |
Defined in Data.Void Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Void -> c Void # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Void # dataTypeOf :: Void -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c Void) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Void) # gmapT :: (forall b. Data b => b -> b) -> Void -> Void # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Void -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Void -> r # gmapQ :: (forall d. Data d => d -> u) -> Void -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> Void -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Void -> m Void # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Void -> m Void # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Void -> m Void # | |
| Ord Void | Since: base-4.8.0.0 |
| Read Void | Reading a Since: base-4.8.0.0 |
| Show Void | Since: base-4.8.0.0 |
| Ix Void | Since: base-4.8.0.0 |
| Generic Void | |
| Semigroup Void | Since: base-4.9.0.0 |
| Exception Void | Since: base-4.8.0.0 |
Defined in Data.Void Methods toException :: Void -> SomeException # fromException :: SomeException -> Maybe Void # displayException :: Void -> String # | |
| SingKind Void # | |
| SDecide Void # | |
| PEq Void # | |
| SEq Void # | |
| SOrd Void # | |
Defined in Data.Singletons.Prelude.Ord Methods sCompare :: Sing t -> Sing t -> Sing (Apply (Apply CompareSym0 t) t) # (%<) :: Sing t -> Sing t -> Sing (Apply (Apply (<@#@$) t) t) # (%<=) :: Sing t -> Sing t -> Sing (Apply (Apply (<=@#@$) t) t) # (%>) :: Sing t -> Sing t -> Sing (Apply (Apply (>@#@$) t) t) # (%>=) :: Sing t -> Sing t -> Sing (Apply (Apply (>=@#@$) t) t) # sMax :: Sing t -> Sing t -> Sing (Apply (Apply MaxSym0 t) t) # sMin :: Sing t -> Sing t -> Sing (Apply (Apply MinSym0 t) t) # | |
| POrd Void # | |
| ShowSing Void # | |
Defined in Data.Singletons.ShowSing Methods showsSingPrec :: Int -> Sing a -> ShowS # | |
| SShow Void # | |
| PShow Void # | |
| Show (Sing z) # | |
| SuppressUnusedWarnings (AbsurdSym0 :: TyFun Void a6989586621679296691 -> *) # | |
Defined in Data.Singletons.Prelude.Void Methods suppressUnusedWarnings :: () # | |
| type Rep Void | Since: base-4.8.0.0 |
| type Demote Void # | |
Defined in Data.Singletons.Prelude.Instances | |
| data Sing (z :: Void) # | |
Defined in Data.Singletons.Prelude.Instances | |
| type Show_ (arg :: Void) # | |
Defined in Data.Singletons.Prelude.Show | |
| type (a :: Void) == (b :: Void) # | |
Defined in Data.Singletons.Prelude.Eq | |
| type (x :: Void) /= (y :: Void) # | |
| type Compare (a1 :: Void) (a2 :: Void) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type (arg1 :: Void) < (arg2 :: Void) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type (arg1 :: Void) <= (arg2 :: Void) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type (arg1 :: Void) > (arg2 :: Void) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type (arg1 :: Void) >= (arg2 :: Void) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type Max (arg1 :: Void) (arg2 :: Void) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type Min (arg1 :: Void) (arg2 :: Void) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type ShowList (arg1 :: [Void]) arg2 # | |
Defined in Data.Singletons.Prelude.Show | |
| type ShowsPrec a1 (a2 :: Void) a3 # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply (AbsurdSym0 :: TyFun Void k2 -> *) (l :: Void) # | |
Defined in Data.Singletons.Prelude.Void | |
A Decision about a type a is either a proof of existence or a proof that a
cannot exist.
Instances
| PBounded Bool # | |
Defined in Data.Singletons.Prelude.Enum | |
| PBounded Ordering # | |
Defined in Data.Singletons.Prelude.Enum | |
| PBounded () # | |
Defined in Data.Singletons.Prelude.Enum | |
| PBounded (a, b) # | |
Defined in Data.Singletons.Prelude.Enum | |
| PBounded (a, b, c) # | |
Defined in Data.Singletons.Prelude.Enum | |
| PBounded (a, b, c, d) # | |
Defined in Data.Singletons.Prelude.Enum | |
| PBounded (a, b, c, d, e) # | |
Defined in Data.Singletons.Prelude.Enum | |
| PBounded (a, b, c, d, e, f) # | |
Defined in Data.Singletons.Prelude.Enum | |
| PBounded (a, b, c, d, e, f, g) # | |
Defined in Data.Singletons.Prelude.Enum | |
Instances
| SBounded Bool # | |
Defined in Data.Singletons.Prelude.Enum | |
| SBounded Ordering # | |
Defined in Data.Singletons.Prelude.Enum | |
| SBounded () # | |
Defined in Data.Singletons.Prelude.Enum | |
| (SBounded a, SBounded b) => SBounded (a, b) # | |
Defined in Data.Singletons.Prelude.Enum | |
| (SBounded a, SBounded b, SBounded c) => SBounded (a, b, c) # | |
Defined in Data.Singletons.Prelude.Enum | |
| (SBounded a, SBounded b, SBounded c, SBounded d) => SBounded (a, b, c, d) # | |
Defined in Data.Singletons.Prelude.Enum | |
| (SBounded a, SBounded b, SBounded c, SBounded d, SBounded e) => SBounded (a, b, c, d, e) # | |
Defined in Data.Singletons.Prelude.Enum | |
| (SBounded a, SBounded b, SBounded c, SBounded d, SBounded e, SBounded f) => SBounded (a, b, c, d, e, f) # | |
Defined in Data.Singletons.Prelude.Enum | |
| (SBounded a, SBounded b, SBounded c, SBounded d, SBounded e, SBounded f, SBounded g) => SBounded (a, b, c, d, e, f, g) # | |
Defined in Data.Singletons.Prelude.Enum | |
Instances
| PEnum Bool # | |
Defined in Data.Singletons.Prelude.Enum | |
| PEnum Ordering # | |
Defined in Data.Singletons.Prelude.Enum | |
| PEnum Nat # | |
Defined in Data.Singletons.Prelude.Enum | |
| PEnum () # | |
Defined in Data.Singletons.Prelude.Enum | |
Methods
sToEnum :: forall (t :: Nat). Sing t -> Sing (Apply ToEnumSym0 t :: a) #
sFromEnum :: forall (t :: a). Sing t -> Sing (Apply FromEnumSym0 t :: Nat) #
Instances
Associated Types
type ShowsPrec (arg :: Nat) (arg :: a) (arg :: Symbol) :: Symbol #
Instances
| PShow Bool # | |
| PShow Ordering # | |
| PShow Nat # | Note that this instance is really, really slow, since it uses an inefficient, inductive definition of division behind the hood. |
| PShow Symbol # | |
| PShow () # | |
| PShow Void # | |
| PShow [a] # | |
| PShow (Maybe a) # | |
| PShow (NonEmpty a) # | |
| PShow (Either a b) # | |
| PShow (a, b) # | |
| PShow (a, b, c) # | |
| PShow (a, b, c, d) # | |
| PShow (a, b, c, d, e) # | |
| PShow (a, b, c, d, e, f) # | |
| PShow (a, b, c, d, e, f, g) # | |
Methods
sShowsPrec :: forall (t :: Nat) (t :: a) (t :: Symbol). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ShowsPrecSym0 t) t) t :: Symbol) #
sShow_ :: forall (t :: a). Sing t -> Sing (Apply Show_Sym0 t :: Symbol) #
sShowList :: forall (t :: [a]) (t :: Symbol). Sing t -> Sing t -> Sing (Apply (Apply ShowListSym0 t) t :: Symbol) #
sShowsPrec :: forall (t :: Nat) (t :: a) (t :: Symbol). ((Apply (Apply (Apply ShowsPrecSym0 t) t) t :: Symbol) ~ Apply (Apply (Apply ShowsPrec_6989586621679695764Sym0 t) t) t) => Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ShowsPrecSym0 t) t) t :: Symbol) #
sShow_ :: forall (t :: a). ((Apply Show_Sym0 t :: Symbol) ~ Apply Show__6989586621679695784Sym0 t) => Sing t -> Sing (Apply Show_Sym0 t :: Symbol) #
sShowList :: forall (t :: [a]) (t :: Symbol). ((Apply (Apply ShowListSym0 t) t :: Symbol) ~ Apply (Apply ShowList_6989586621679695802Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply ShowListSym0 t) t :: Symbol) #
Instances
| SShow Bool # | |
| SShow Ordering # | |
| SShow Nat # | |
| SShow Symbol # | |
| SShow () # | |
| SShow Void # | |
| SShow a => SShow [a] # | |
| SShow a => SShow (Maybe a) # | |
| (SShow a, SShow [a]) => SShow (NonEmpty a) # | |
| (SShow a, SShow b) => SShow (Either a b) # | |
| (SShow a, SShow b) => SShow (a, b) # | |
| (SShow a, SShow b, SShow c) => SShow (a, b, c) # | |
| (SShow a, SShow b, SShow c, SShow d) => SShow (a, b, c, d) # | |
| (SShow a, SShow b, SShow c, SShow d, SShow e) => SShow (a, b, c, d, e) # | |
| (SShow a, SShow b, SShow c, SShow d, SShow e, SShow f) => SShow (a, b, c, d, e, f) # | |
| (SShow a, SShow b, SShow c, SShow d, SShow e, SShow f, SShow g) => SShow (a, b, c, d, e, f, g) # | |
type family ShowString (a :: Symbol) (a :: Symbol) :: Symbol where ... #
Equations
| ShowString a_6989586621679695557 a_6989586621679695559 = Apply (Apply (<>@#@$) a_6989586621679695557) a_6989586621679695559 |
sShowString :: forall (t :: Symbol) (t :: Symbol). Sing t -> Sing t -> Sing (Apply (Apply ShowStringSym0 t) t :: Symbol) #
type family ShowParen (a :: Bool) (a :: TyFun Symbol Symbol -> Type) (a :: Symbol) :: Symbol where ... #
sShowParen :: forall (t :: Bool) (t :: TyFun Symbol Symbol -> Type) (t :: Symbol). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply ShowParenSym0 t) t) t :: Symbol) #
sShowSpace :: forall (t :: Symbol). Sing t -> Sing (Apply ShowSpaceSym0 t :: Symbol) #
sShowChar :: forall (t :: Symbol) (t :: Symbol). Sing t -> Sing t -> Sing (Apply (Apply ShowCharSym0 t) t :: Symbol) #
type family ShowCommaSpace (a :: Symbol) :: Symbol where ... #
Equations
| ShowCommaSpace a_6989586621679695572 = Apply (Apply ShowStringSym0 ", ") a_6989586621679695572 |
sShowCommaSpace :: forall (t :: Symbol). Sing t -> Sing (Apply ShowCommaSpaceSym0 t :: Symbol) #
(%.) :: forall (t :: TyFun b c -> Type) (t :: TyFun a b -> Type) (t :: a). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply (.@#@$) t) t) t :: c) infixr 9 #
An existentially-quantified singleton. This type is useful when you want a singleton type, but there is no way of knowing, at compile-time, what the type index will be. To make use of this type, you will generally have to use a pattern-match:
foo :: Bool -> ...
foo b = case toSing b of
SomeSing sb -> {- fancy dependently-typed code with sb -}An example like the one above may be easier to write using withSomeSing.
Instances
| SBounded k => Bounded (SomeSing k) # | |
| (SEnum k, SingKind k) => Enum (SomeSing k) # | |
Defined in Data.Singletons Methods succ :: SomeSing k -> SomeSing k # pred :: SomeSing k -> SomeSing k # fromEnum :: SomeSing k -> Int # enumFrom :: SomeSing k -> [SomeSing k] # enumFromThen :: SomeSing k -> SomeSing k -> [SomeSing k] # enumFromTo :: SomeSing k -> SomeSing k -> [SomeSing k] # enumFromThenTo :: SomeSing k -> SomeSing k -> SomeSing k -> [SomeSing k] # | |
| SEq k => Eq (SomeSing k) # | |
| SNum k => Num (SomeSing k) # | |
Defined in Data.Singletons | |
| SOrd k => Ord (SomeSing k) # | |
| ShowSing k => Show (SomeSing k) # | |
type family Error (str :: k0) :: k where ... #
The promotion of error. This version is more poly-kinded for
easier use.
data ErrorSym0 (l :: TyFun k06989586621679393131 k6989586621679393132) #
Instances
| SuppressUnusedWarnings (ErrorSym0 :: TyFun k06989586621679393131 k6989586621679393132 -> *) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| type Apply (ErrorSym0 :: TyFun k0 k2 -> *) (l :: k0) # | |
sUndefined :: a #
The singleton for undefined.
type UndefinedSym0 = Undefined #
data (==@#@$) (l :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type)) #
Instances
| SuppressUnusedWarnings ((==@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| type Apply ((==@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) (l :: a6989586621679303786) # | |
data (l :: a6989586621679303786) ==@#@$$ (l :: TyFun a6989586621679303786 Bool) #
Instances
| SuppressUnusedWarnings ((==@#@$$) :: a6989586621679303786 -> TyFun a6989586621679303786 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| type Apply ((==@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) # | |
type (==@#@$$$) (t :: a6989586621679303786) (t :: a6989586621679303786) = (==) t t #
data (>@#@$) (l :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type)) #
Instances
| SuppressUnusedWarnings ((>@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| type Apply ((>@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) (l :: a6989586621679315171) # | |
data (l :: a6989586621679315171) >@#@$$ (l :: TyFun a6989586621679315171 Bool) #
Instances
| SuppressUnusedWarnings ((>@#@$$) :: a6989586621679315171 -> TyFun a6989586621679315171 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| type Apply ((>@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) # | |
type Tuple0Sym0 = '() #
data Tuple2Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) = (Tuple2Sym1 l :: TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) | |
data Tuple2Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866)) #
Instances
| SuppressUnusedWarnings (Tuple2Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple2Sym1 l1 :: TyFun k1 (k2, k1) -> *) (l2 :: k1) # | |
Defined in Data.Singletons.Prelude.Instances | |
type Tuple2Sym2 (t :: a3530822107858468865) (t :: b3530822107858468866) = '(t, t) #
data Tuple3Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple3Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) | |
data Tuple3Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple3Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple3Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple3Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple3Sym2 l1 l2 :: TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) | |
data Tuple3Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867)) #
Instances
| SuppressUnusedWarnings (Tuple3Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple3Sym2 l1 l2 :: TyFun k3 (k2, k1, k3) -> *) (l3 :: k3) # | |
Defined in Data.Singletons.Prelude.Instances | |
type Tuple3Sym3 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) = '(t, t, t) #
data Tuple4Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple4Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) | |
data Tuple4Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple4Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple4Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple4Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) | |
data Tuple4Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple4Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple4Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) | |
data Tuple4Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868)) #
Instances
| SuppressUnusedWarnings (Tuple4Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple4Sym3 l1 l2 l3 :: TyFun k4 (k2, k1, k3, k4) -> *) (l4 :: k4) # | |
Defined in Data.Singletons.Prelude.Instances | |
type Tuple4Sym4 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) = '(t, t, t, t) #
data Tuple5Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple5Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) | |
data Tuple5Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple5Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple5Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) | |
data Tuple5Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple5Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) | |
data Tuple5Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple5Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (l4 :: d3530822107858468868) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (l4 :: d3530822107858468868) = (Tuple5Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) | |
data Tuple5Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869)) #
Instances
| SuppressUnusedWarnings (Tuple5Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple5Sym4 l1 l2 l3 l4 :: TyFun k5 (k2, k1, k3, k4, k5) -> *) (l5 :: k5) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym4 l1 l2 l3 l4 :: TyFun k5 (k2, k1, k3, k4, k5) -> *) (l5 :: k5) = (,,,,) l1 l2 l3 l4 l5 | |
type Tuple5Sym5 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) = '(t, t, t, t, t) #
data Tuple6Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple6Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple6Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple6Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) | |
data Tuple6Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple6Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple6Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) | |
data Tuple6Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple6Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) | |
data Tuple6Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple6Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) = (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) | |
data Tuple6Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple6Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (l5 :: e3530822107858468869) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (l5 :: e3530822107858468869) = (Tuple6Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) | |
data Tuple6Sym5 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870)) #
Instances
| SuppressUnusedWarnings (Tuple6Sym5 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple6Sym5 l1 l2 l3 l4 l5 :: TyFun k6 (k2, k1, k3, k4, k5, k6) -> *) (l6 :: k6) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym5 l1 l2 l3 l4 l5 :: TyFun k6 (k2, k1, k3, k4, k5, k6) -> *) (l6 :: k6) = (,,,,,) l1 l2 l3 l4 l5 l6 | |
type Tuple6Sym6 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) (t :: f3530822107858468870) = '(t, t, t, t, t, t) #
data Tuple7Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple7Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple7Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple7Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) | |
data Tuple7Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple7Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple7Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple7Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) | |
data Tuple7Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple7Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple7Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple7Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) | |
data Tuple7Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple7Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple7Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) = (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) | |
data Tuple7Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple7Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (l5 :: e3530822107858468869) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (l5 :: e3530822107858468869) = (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) | |
data Tuple7Sym5 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type)) #
Instances
| SuppressUnusedWarnings (Tuple7Sym5 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (l6 :: f3530822107858468870) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (l6 :: f3530822107858468870) = (Tuple7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) | |
data Tuple7Sym6 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: f3530822107858468870) (l :: TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871)) #
Instances
| SuppressUnusedWarnings (Tuple7Sym6 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> f3530822107858468870 -> TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| type Apply (Tuple7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun k7 (k2, k1, k3, k4, k5, k6, k7) -> *) (l7 :: k7) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun k7 (k2, k1, k3, k4, k5, k6, k7) -> *) (l7 :: k7) = (,,,,,,) l1 l2 l3 l4 l5 l6 l7 | |
type Tuple7Sym7 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) (t :: f3530822107858468870) (t :: g3530822107858468871) = '(t, t, t, t, t, t, t) #
data CompareSym0 (l :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type)) #
Instances
| SuppressUnusedWarnings (CompareSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| type Apply (CompareSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type) -> *) (l :: a6989586621679315171) # | |
Defined in Data.Singletons.Prelude.Ord type Apply (CompareSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type) -> *) (l :: a6989586621679315171) = CompareSym1 l | |
data CompareSym1 (l :: a6989586621679315171) (l :: TyFun a6989586621679315171 Ordering) #
Instances
| SuppressUnusedWarnings (CompareSym1 :: a6989586621679315171 -> TyFun a6989586621679315171 Ordering -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| type Apply (CompareSym1 l1 :: TyFun a Ordering -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.Ord | |
type CompareSym2 (t :: a6989586621679315171) (t :: a6989586621679315171) = Compare t t #
data ThenCmpSym0 (l :: TyFun Ordering (TyFun Ordering Ordering -> Type)) #
Instances
| SuppressUnusedWarnings ThenCmpSym0 # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| type Apply ThenCmpSym0 (l :: Ordering) # | |
Defined in Data.Singletons.Prelude.Ord | |
data ThenCmpSym1 (l :: Ordering) (l :: TyFun Ordering Ordering) #
Instances
| SuppressUnusedWarnings ThenCmpSym1 # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| type Apply (ThenCmpSym1 l1 :: TyFun Ordering Ordering -> *) (l2 :: Ordering) # | |
Defined in Data.Singletons.Prelude.Ord | |
type ThenCmpSym2 (t :: Ordering) (t :: Ordering) = ThenCmp t 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 #
type MinBoundSym0 = MinBound #
type MaxBoundSym0 = MaxBound #
data ShowsPrecSym0 (l :: TyFun Nat (TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings (ShowsPrecSym0 :: TyFun Nat (TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply (ShowsPrecSym0 :: TyFun Nat (TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> Type) -> *) (l :: Nat) # | |
data ShowsPrecSym1 (l :: Nat) (l :: TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type)) #
Instances
| SuppressUnusedWarnings (ShowsPrecSym1 :: Nat -> TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679693692) # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679693692) = ShowsPrecSym2 l1 l2 | |
data ShowsPrecSym2 (l :: Nat) (l :: a6989586621679693692) (l :: TyFun Symbol Symbol) #
Instances
| SuppressUnusedWarnings (ShowsPrecSym2 :: Nat -> a6989586621679693692 -> TyFun Symbol Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply (ShowsPrecSym2 l1 l2 :: TyFun Symbol Symbol -> *) (l3 :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
type ShowsPrecSym3 (t :: Nat) (t :: a6989586621679693692) (t :: Symbol) = ShowsPrec t t t #
data ShowStringSym0 (l :: TyFun Symbol (TyFun Symbol Symbol -> Type)) #
Instances
| SuppressUnusedWarnings ShowStringSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply ShowStringSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
data ShowStringSym1 (l :: Symbol) (l :: TyFun Symbol Symbol) #
Instances
| SuppressUnusedWarnings ShowStringSym1 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply (ShowStringSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
type ShowStringSym2 (t :: Symbol) (t :: Symbol) = ShowString t t #
data ShowParenSym0 (l :: TyFun Bool (TyFun (TyFun Symbol Symbol -> Type) (TyFun Symbol Symbol -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ShowParenSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply ShowParenSym0 (l :: Bool) # | |
Defined in Data.Singletons.Prelude.Show | |
data ShowParenSym1 (l :: Bool) (l :: TyFun (TyFun Symbol Symbol -> Type) (TyFun Symbol Symbol -> Type)) #
Instances
| SuppressUnusedWarnings ShowParenSym1 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply (ShowParenSym1 l1 :: TyFun (TyFun Symbol Symbol -> Type) (TyFun Symbol Symbol -> Type) -> *) (l2 :: TyFun Symbol Symbol -> Type) # | |
data ShowParenSym2 (l :: Bool) (l :: TyFun Symbol Symbol -> Type) (l :: TyFun Symbol Symbol) #
Instances
| SuppressUnusedWarnings ShowParenSym2 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply (ShowParenSym2 l1 l2 :: TyFun Symbol Symbol -> *) (l3 :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
data ShowSpaceSym0 (l :: TyFun Symbol Symbol) #
Instances
| SuppressUnusedWarnings ShowSpaceSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply ShowSpaceSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
type ShowSpaceSym1 (t :: Symbol) = ShowSpace t #
data ShowCharSym0 (l :: TyFun Symbol (TyFun Symbol Symbol -> Type)) #
Instances
| SuppressUnusedWarnings ShowCharSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply ShowCharSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
data ShowCharSym1 (l :: Symbol) (l :: TyFun Symbol Symbol) #
Instances
| SuppressUnusedWarnings ShowCharSym1 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply (ShowCharSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
type ShowCharSym2 (t :: Symbol) (t :: Symbol) = ShowChar t t #
data ShowCommaSpaceSym0 (l :: TyFun Symbol Symbol) #
Instances
| SuppressUnusedWarnings ShowCommaSpaceSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| type Apply ShowCommaSpaceSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
type ShowCommaSpaceSym1 (t :: Symbol) = ShowCommaSpace t #
data (.@#@$) (l :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type)) #
Instances
| SuppressUnusedWarnings ((.@#@$) :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply ((.@#@$) :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type) -> *) (l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) # | |
Defined in Data.Singletons.Prelude.Base type Apply ((.@#@$) :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type) -> *) (l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) = ((.@#@$$) l :: TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> *) | |
data (l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) .@#@$$ (l :: TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type)) #
Instances
| SuppressUnusedWarnings ((.@#@$$) :: (TyFun b6989586621679435597 c6989586621679435598 -> Type) -> TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply ((.@#@$$) l1 :: TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> *) (l2 :: TyFun a6989586621679435599 b6989586621679435597 -> Type) # | |
data ((l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) .@#@$$$ (l :: TyFun a6989586621679435599 b6989586621679435597 -> Type)) (l :: TyFun a6989586621679435599 c6989586621679435598) #
Instances
| SuppressUnusedWarnings ((.@#@$$$) :: (TyFun b6989586621679435597 c6989586621679435598 -> Type) -> (TyFun a6989586621679435599 b6989586621679435597 -> Type) -> TyFun a6989586621679435599 c6989586621679435598 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| type Apply (l1 .@#@$$$ l2 :: TyFun a c -> *) (l3 :: a) # | |
type (.@#@$$$$) (t :: TyFun b6989586621679435597 c6989586621679435598 -> Type) (t :: TyFun a6989586621679435599 b6989586621679435597 -> Type) (t :: a6989586621679435599) = (:.) t t t #
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 | |
class SuppressUnusedWarnings (t :: k) where #
This class (which users should never see) is to be instantiated in order to use an otherwise-unused data constructor, such as the "kind-inference" data constructor for defunctionalization symbols.
Minimal complete definition
Methods
suppressUnusedWarnings :: () #
Instances
| SuppressUnusedWarnings ShowParenSym2 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (&&@#@$$) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (||@#@$$) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowParenSym1 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ThenCmpSym1 # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (~>@#@$$) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (^@#@$$) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DivSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ModSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings QuotSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings RemSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings QuotRemSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DivModSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (<>@#@$$) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowCharSym1 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowStringSym1 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings NotSym0 # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (&&@#@$) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (||@#@$) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowParenSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings AndSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings OrSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings UnlinesSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings UnwordsSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ThenCmpSym0 # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (~>@#@$) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DemoteSym0 # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (^@#@$) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DivSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ModSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings QuotSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings RemSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings QuotRemSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DivModSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings KnownNatSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings Log2Sym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowCharSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowStringSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (<>@#@$) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings KnownSymbolSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowCommaSpaceSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowSpaceSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings XorSym0 # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubBySym1 :: (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) -> TyFun [a6989586621679458371] [a6989586621679458371] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PartitionSym1 :: (TyFun a6989586621679458380 Bool -> Type) -> TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (BreakSym1 :: (TyFun a6989586621679458392 Bool -> Type) -> TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SpanSym1 :: (TyFun a6989586621679458393 Bool -> Type) -> TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBySym1 :: (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) -> TyFun [a6989586621679458383] [[a6989586621679458383]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileSym1 :: (TyFun a6989586621679458395 Bool -> Type) -> TyFun [a6989586621679458395] [a6989586621679458395] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeWhileSym1 :: (TyFun a6989586621679458396 Bool -> Type) -> TyFun [a6989586621679458396] [a6989586621679458396] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FilterSym1 :: (TyFun a6989586621679458404 Bool -> Type) -> TyFun [a6989586621679458404] [a6989586621679458404] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindSym1 :: (TyFun a6989586621679458403 Bool -> Type) -> TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertBySym1 :: (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) -> TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertBySym2 :: (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) -> a6989586621679458407 -> TyFun [a6989586621679458407] [a6989586621679458407] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortBySym1 :: (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) -> TyFun [a6989586621679458408] [a6989586621679458408] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteBySym1 :: (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) -> TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteBySym2 :: (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) -> a6989586621679458410 -> TyFun [a6989586621679458410] [a6989586621679458410] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteFirstsBySym2 :: (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) -> [a6989586621679458409] -> TyFun [a6989586621679458409] [a6989586621679458409] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteFirstsBySym1 :: (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) -> TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnionBySym2 :: (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) -> [a6989586621679458369] -> TyFun [a6989586621679458369] [a6989586621679458369] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnionBySym1 :: (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) -> TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindIndicesSym1 :: (TyFun a6989586621679458399 Bool -> Type) -> TyFun [a6989586621679458399] [Nat] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindIndexSym1 :: (TyFun a6989586621679458400 Bool -> Type) -> TyFun [a6989586621679458400] (Maybe Nat) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanr1Sym1 :: (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) -> TyFun [a6989586621679458467] [a6989586621679458467] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanl1Sym1 :: (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) -> TyFun [a6989586621679458470] [a6989586621679458470] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AnySym1 :: (TyFun a6989586621679458473 Bool -> Type) -> TyFun [a6989586621679458473] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersectBySym2 :: (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) -> [a6989586621679458397] -> TyFun [a6989586621679458397] [a6989586621679458397] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersectBySym1 :: (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) -> TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AllSym1 :: (TyFun a6989586621679458474 Bool -> Type) -> TyFun [a6989586621679458474] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldr1Sym1 :: (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) -> TyFun [a6989586621679458478] a6989586621679458478 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl1Sym1 :: (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) -> TyFun [a6989586621679458480] a6989586621679458480 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaximumBySym1 :: (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) -> TyFun [a6989586621679458406] a6989586621679458406 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinimumBySym1 :: (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) -> TyFun [a6989586621679458405] a6989586621679458405 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl1'Sym1 :: (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) -> TyFun [a6989586621679458479] a6989586621679458479 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileEndSym1 :: (TyFun a6989586621679458394 Bool -> Type) -> TyFun [a6989586621679458394] [a6989586621679458394] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListWithSym2 :: (TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) -> [a6989586621679693676] -> TyFun Symbol Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListWithSym1 :: (TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) -> TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubBySym1 :: (TyFun a6989586621679791921 (TyFun a6989586621679791921 Bool -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791921) (NonEmpty a6989586621679791921) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBySym1 :: (TyFun a6989586621679791942 (TyFun a6989586621679791942 Bool -> Type) -> Type) -> TyFun [a6989586621679791942] [NonEmpty a6989586621679791942] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBy1Sym1 :: (TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791936) (NonEmpty (NonEmpty a6989586621679791936)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeWhileSym1 :: (TyFun a6989586621679791949 Bool -> Type) -> TyFun (NonEmpty a6989586621679791949) [a6989586621679791949] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileSym1 :: (TyFun a6989586621679791948 Bool -> Type) -> TyFun (NonEmpty a6989586621679791948) [a6989586621679791948] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SpanSym1 :: (TyFun a6989586621679791947 Bool -> Type) -> TyFun (NonEmpty a6989586621679791947) ([a6989586621679791947], [a6989586621679791947]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (BreakSym1 :: (TyFun a6989586621679791946 Bool -> Type) -> TyFun (NonEmpty a6989586621679791946) ([a6989586621679791946], [a6989586621679791946]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FilterSym1 :: (TyFun a6989586621679791945 Bool -> Type) -> TyFun (NonEmpty a6989586621679791945) [a6989586621679791945] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PartitionSym1 :: (TyFun a6989586621679791944 Bool -> Type) -> TyFun (NonEmpty a6989586621679791944) ([a6989586621679791944], [a6989586621679791944]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortBySym1 :: (TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791919) (NonEmpty a6989586621679791919) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanl1Sym1 :: (TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791956) (NonEmpty a6989586621679791956) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanr1Sym1 :: (TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791955) (NonEmpty a6989586621679791955) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UntilSym2 :: (TyFun a6989586621679987157 Bool -> Type) -> (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> TyFun a6989586621679987157 a6989586621679987157 -> *) # | |
Defined in Data.Promotion.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UntilSym1 :: (TyFun a6989586621679987157 Bool -> Type) -> TyFun (TyFun a6989586621679987157 a6989586621679987157 -> Type) (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((++@#@$$) :: [a6989586621679435603] -> TyFun [a6989586621679435603] [a6989586621679435603] -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((!!@#@$$) :: [a6989586621679458373] -> TyFun Nat a6989586621679458373 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnionSym1 :: [a6989586621679458368] -> TyFun [a6989586621679458368] [a6989586621679458368] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((\\@#@$$) :: [a6989586621679458411] -> TyFun [a6989586621679458411] [a6989586621679458411] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsPrefixOfSym1 :: [a6989586621679458456] -> TyFun [a6989586621679458456] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsInfixOfSym1 :: [a6989586621679458454] -> TyFun [a6989586621679458454] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersectSym1 :: [a6989586621679458398] -> TyFun [a6989586621679458398] [a6989586621679458398] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntercalateSym1 :: [a6989586621679458487] -> TyFun [[a6989586621679458487]] [a6989586621679458487] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsSuffixOfSym1 :: [a6989586621679458455] -> TyFun [a6989586621679458455] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListSym1 :: [a6989586621679693692] -> TyFun Symbol Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsPrefixOfSym1 :: [a6989586621679791931] -> TyFun (NonEmpty a6989586621679791931) Bool -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (StripPrefixSym1 :: [a6989586621679950188] -> TyFun [a6989586621679950188] (Maybe [a6989586621679950188]) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsPrecSym2 :: Nat -> a6989586621679693692 -> TyFun Symbol Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropSym1 :: Nat -> TyFun [a6989586621679458390] [a6989586621679458390] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeSym1 :: Nat -> TyFun [a6989586621679458391] [a6989586621679458391] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SplitAtSym1 :: Nat -> TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ReplicateSym1 :: Nat -> TyFun a6989586621679458375 [a6989586621679458375] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsPrecSym1 :: Nat -> TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeSym1 :: Nat -> TyFun (NonEmpty a6989586621679791952) [a6989586621679791952] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropSym1 :: Nat -> TyFun (NonEmpty a6989586621679791951) [a6989586621679791951] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SplitAtSym1 :: Nat -> TyFun (NonEmpty a6989586621679791950) ([a6989586621679791950], [a6989586621679791950]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((:@#@$$) :: a3530822107858468865 -> TyFun [a3530822107858468865] [a3530822107858468865] -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((:|@#@$$) :: a6989586621679067720 -> TyFun [a6989586621679067720] (NonEmpty a6989586621679067720) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Bool_Sym2 :: a6989586621679301220 -> a6989586621679301220 -> TyFun Bool a6989586621679301220 -> *) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Bool_Sym1 :: a6989586621679301220 -> TyFun a6989586621679301220 (TyFun Bool a6989586621679301220 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((==@#@$$) :: a6989586621679303786 -> TyFun a6989586621679303786 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((/=@#@$$) :: a6989586621679303786 -> TyFun a6989586621679303786 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<=@#@$$) :: a6989586621679315171 -> TyFun a6989586621679315171 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CompareSym1 :: a6989586621679315171 -> TyFun a6989586621679315171 Ordering -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinSym1 :: a6989586621679315171 -> TyFun a6989586621679315171 a6989586621679315171 -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaxSym1 :: a6989586621679315171 -> TyFun a6989586621679315171 a6989586621679315171 -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((>=@#@$$) :: a6989586621679315171 -> TyFun a6989586621679315171 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((>@#@$$) :: a6989586621679315171 -> TyFun a6989586621679315171 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<@#@$$) :: a6989586621679315171 -> TyFun a6989586621679315171 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromMaybeSym1 :: a6989586621679419780 -> TyFun (Maybe a6989586621679419780) a6989586621679419780 -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((-@#@$$) :: a6989586621679428050 -> TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((+@#@$$) :: a6989586621679428050 -> TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((*@#@$$) :: a6989586621679428050 -> TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SubtractSym1 :: a6989586621679430323 -> TyFun a6989586621679430323 a6989586621679430323 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AsTypeOfSym1 :: a6989586621679435593 -> TyFun a6989586621679435593 a6989586621679435593 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertSym1 :: a6989586621679458385 -> TyFun [a6989586621679458385] [a6989586621679458385] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteSym1 :: a6989586621679458412 -> TyFun [a6989586621679458412] [a6989586621679458412] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemIndicesSym1 :: a6989586621679458401 -> TyFun [a6989586621679458401] [Nat] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemIndexSym1 :: a6989586621679458402 -> TyFun [a6989586621679458402] (Maybe Nat) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NotElemSym1 :: a6989586621679458452 -> TyFun [a6989586621679458452] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemSym1 :: a6989586621679458453 -> TyFun [a6989586621679458453] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersperseSym1 :: a6989586621679458488 -> TyFun [a6989586621679458488] [a6989586621679458488] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsSym1 :: a6989586621679693677 -> TyFun Symbol Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersperseSym1 :: a6989586621679791954 -> TyFun (NonEmpty a6989586621679791954) (NonEmpty a6989586621679791954) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertSym1 :: a6989586621679791961 -> TyFun [a6989586621679791961] (NonEmpty a6989586621679791961) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<|@#@$$) :: a6989586621679791972 -> TyFun (NonEmpty a6989586621679791972) (NonEmpty a6989586621679791972) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConsSym1 :: a6989586621679791971 -> TyFun (NonEmpty a6989586621679791971) (NonEmpty a6989586621679791971) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromThenToSym1 :: a6989586621679868770 -> TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromThenToSym2 :: a6989586621679868770 -> a6989586621679868770 -> TyFun a6989586621679868770 [a6989586621679868770] -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromToSym1 :: a6989586621679868770 -> TyFun a6989586621679868770 [a6989586621679868770] -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SameKindSym1 :: k6989586621679026900 -> TyFun k6989586621679026900 Constraint -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((!!@#@$$) :: NonEmpty a6989586621679791930 -> TyFun Nat a6989586621679791930 -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubBySym0 :: TyFun (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (TyFun [a6989586621679458371] [a6989586621679458371] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PartitionSym0 :: TyFun (TyFun a6989586621679458380 Bool -> Type) (TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (BreakSym0 :: TyFun (TyFun a6989586621679458392 Bool -> Type) (TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SpanSym0 :: TyFun (TyFun a6989586621679458393 Bool -> Type) (TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBySym0 :: TyFun (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (TyFun [a6989586621679458383] [[a6989586621679458383]] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileSym0 :: TyFun (TyFun a6989586621679458395 Bool -> Type) (TyFun [a6989586621679458395] [a6989586621679458395] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeWhileSym0 :: TyFun (TyFun a6989586621679458396 Bool -> Type) (TyFun [a6989586621679458396] [a6989586621679458396] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FilterSym0 :: TyFun (TyFun a6989586621679458404 Bool -> Type) (TyFun [a6989586621679458404] [a6989586621679458404] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindSym0 :: TyFun (TyFun a6989586621679458403 Bool -> Type) (TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (SortBySym0 :: TyFun (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (TyFun [a6989586621679458408] [a6989586621679458408] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| 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 :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (FindIndicesSym0 :: TyFun (TyFun a6989586621679458399 Bool -> Type) (TyFun [a6989586621679458399] [Nat] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindIndexSym0 :: TyFun (TyFun a6989586621679458400 Bool -> Type) (TyFun [a6989586621679458400] (Maybe Nat) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanr1Sym0 :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanl1Sym0 :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AnySym0 :: TyFun (TyFun a6989586621679458473 Bool -> Type) (TyFun [a6989586621679458473] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (AllSym0 :: TyFun (TyFun a6989586621679458474 Bool -> Type) (TyFun [a6989586621679458474] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldr1Sym0 :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl1Sym0 :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaximumBySym0 :: TyFun (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (TyFun [a6989586621679458406] a6989586621679458406 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinimumBySym0 :: TyFun (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (TyFun [a6989586621679458405] a6989586621679458405 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl1'Sym0 :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileEndSym0 :: TyFun (TyFun a6989586621679458394 Bool -> Type) (TyFun [a6989586621679458394] [a6989586621679458394] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListWithSym0 :: TyFun (TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) (TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubBySym0 :: TyFun (TyFun a6989586621679791921 (TyFun a6989586621679791921 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791921) (NonEmpty a6989586621679791921) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBySym0 :: TyFun (TyFun a6989586621679791942 (TyFun a6989586621679791942 Bool -> Type) -> Type) (TyFun [a6989586621679791942] [NonEmpty a6989586621679791942] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBy1Sym0 :: TyFun (TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791936) (NonEmpty (NonEmpty a6989586621679791936)) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeWhileSym0 :: TyFun (TyFun a6989586621679791949 Bool -> Type) (TyFun (NonEmpty a6989586621679791949) [a6989586621679791949] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileSym0 :: TyFun (TyFun a6989586621679791948 Bool -> Type) (TyFun (NonEmpty a6989586621679791948) [a6989586621679791948] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SpanSym0 :: TyFun (TyFun a6989586621679791947 Bool -> Type) (TyFun (NonEmpty a6989586621679791947) ([a6989586621679791947], [a6989586621679791947]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (BreakSym0 :: TyFun (TyFun a6989586621679791946 Bool -> Type) (TyFun (NonEmpty a6989586621679791946) ([a6989586621679791946], [a6989586621679791946]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FilterSym0 :: TyFun (TyFun a6989586621679791945 Bool -> Type) (TyFun (NonEmpty a6989586621679791945) [a6989586621679791945] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PartitionSym0 :: TyFun (TyFun a6989586621679791944 Bool -> Type) (TyFun (NonEmpty a6989586621679791944) ([a6989586621679791944], [a6989586621679791944]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortBySym0 :: TyFun (TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679791919) (NonEmpty a6989586621679791919) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanl1Sym0 :: TyFun (TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791956) (NonEmpty a6989586621679791956) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanr1Sym0 :: TyFun (TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791955) (NonEmpty a6989586621679791955) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UntilSym0 :: TyFun (TyFun a6989586621679987157 Bool -> Type) (TyFun (TyFun a6989586621679987157 a6989586621679987157 -> Type) (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConcatSym0 :: TyFun [[a6989586621679458477]] [a6989586621679458477] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TransposeSym0 :: TyFun [[a6989586621679458374]] [[a6989586621679458374]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CatMaybesSym0 :: TyFun [Maybe a6989586621679419777] [a6989586621679419777] -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ListToMaybeSym0 :: TyFun [a6989586621679419778] (Maybe a6989586621679419778) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((++@#@$) :: TyFun [a6989586621679435603] (TyFun [a6989586621679435603] [a6989586621679435603] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((!!@#@$) :: TyFun [a6989586621679458373] (TyFun Nat a6989586621679458373 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LengthSym0 :: TyFun [a6989586621679458376] Nat -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ProductSym0 :: TyFun [a6989586621679458377] a6989586621679458377 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SumSym0 :: TyFun [a6989586621679458378] a6989586621679458378 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupSym0 :: TyFun [a6989586621679458388] [[a6989586621679458388]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortSym0 :: TyFun [a6989586621679458384] [a6989586621679458384] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnionSym0 :: TyFun [a6989586621679458368] (TyFun [a6989586621679458368] [a6989586621679458368] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((\\@#@$) :: TyFun [a6989586621679458411] (TyFun [a6989586621679458411] [a6989586621679458411] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubSym0 :: TyFun [a6989586621679458372] [a6989586621679458372] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsPrefixOfSym0 :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TailsSym0 :: TyFun [a6989586621679458457] [[a6989586621679458457]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InitsSym0 :: TyFun [a6989586621679458458] [[a6989586621679458458]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsInfixOfSym0 :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersectSym0 :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaximumSym0 :: TyFun [a6989586621679458387] a6989586621679458387 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinimumSym0 :: TyFun [a6989586621679458386] a6989586621679458386 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PermutationsSym0 :: TyFun [a6989586621679458483] [[a6989586621679458483]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SubsequencesSym0 :: TyFun [a6989586621679458486] [[a6989586621679458486]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntercalateSym0 :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ReverseSym0 :: TyFun [a6989586621679458489] [a6989586621679458489] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsSuffixOfSym0 :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NullSym0 :: TyFun [a6989586621679458490] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InitSym0 :: TyFun [a6989586621679458491] [a6989586621679458491] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TailSym0 :: TyFun [a6989586621679458492] [a6989586621679458492] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LastSym0 :: TyFun [a6989586621679458493] a6989586621679458493 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (HeadSym0 :: TyFun [a6989586621679458494] a6989586621679458494 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListSym0 :: TyFun [a6989586621679693692] (TyFun Symbol Symbol -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsPrefixOfSym0 :: TyFun [a6989586621679791931] (TyFun (NonEmpty a6989586621679791931) Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupSym0 :: TyFun [a6989586621679791943] [NonEmpty a6989586621679791943] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromListSym0 :: TyFun [a6989586621679791969] (NonEmpty a6989586621679791969) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InitsSym0 :: TyFun [a6989586621679791963] (NonEmpty [a6989586621679791963]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TailsSym0 :: TyFun [a6989586621679791962] (NonEmpty [a6989586621679791962]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NonEmpty_Sym0 :: TyFun [a6989586621679791980] (Maybe (NonEmpty a6989586621679791980)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (StripPrefixSym0 :: TyFun [a6989586621679950188] (TyFun [a6989586621679950188] (Maybe [a6989586621679950188]) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaybeToListSym0 :: TyFun (Maybe a6989586621679419779) [a6989586621679419779] -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromJustSym0 :: TyFun (Maybe a6989586621679419781) a6989586621679419781 -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsNothingSym0 :: TyFun (Maybe a6989586621679419782) Bool -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsJustSym0 :: TyFun (Maybe a6989586621679419783) Bool -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropSym0 :: TyFun Nat (TyFun [a6989586621679458390] [a6989586621679458390] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeSym0 :: TyFun Nat (TyFun [a6989586621679458391] [a6989586621679458391] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679458375 [a6989586621679458375] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsPrecSym0 :: TyFun Nat (TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791952) [a6989586621679791952] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791951) [a6989586621679791951] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SplitAtSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791950) ([a6989586621679791950], [a6989586621679791950]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromIntegerSym0 :: TyFun Nat a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ToEnumSym0 :: TyFun Nat a6989586621679868770 -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromStringSym0 :: TyFun Symbol a6989586621679427380 -> *) # | |
Defined in Data.Singletons.Prelude.IsString Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (JustSym0 :: TyFun a3530822107858468865 (Maybe a3530822107858468865) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((:|@#@$) :: TyFun a6989586621679067720 (TyFun [a6989586621679067720] (NonEmpty a6989586621679067720) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Bool_Sym0 :: TyFun a6989586621679301220 (TyFun a6989586621679301220 (TyFun Bool a6989586621679301220 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((==@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((/=@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<=@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CompareSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 a6989586621679315171 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaxSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 a6989586621679315171 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((>=@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((>@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromMaybeSym0 :: TyFun a6989586621679419780 (TyFun (Maybe a6989586621679419780) a6989586621679419780 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NegateSym0 :: TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((-@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((+@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SignumSym0 :: TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AbsSym0 :: TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((*@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SubtractSym0 :: TyFun a6989586621679430323 (TyFun a6989586621679430323 a6989586621679430323 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AsTypeOfSym0 :: TyFun a6989586621679435593 (TyFun a6989586621679435593 a6989586621679435593 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IdSym0 :: TyFun a6989586621679435602 a6989586621679435602 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertSym0 :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteSym0 :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemIndicesSym0 :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemIndexSym0 :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NotElemSym0 :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemSym0 :: TyFun a6989586621679458453 (TyFun [a6989586621679458453] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersperseSym0 :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Show_Sym0 :: TyFun a6989586621679693692 Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsSym0 :: TyFun a6989586621679693677 (TyFun Symbol Symbol -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersperseSym0 :: TyFun a6989586621679791954 (TyFun (NonEmpty a6989586621679791954) (NonEmpty a6989586621679791954) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertSym0 :: TyFun a6989586621679791961 (TyFun [a6989586621679791961] (NonEmpty a6989586621679791961) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<|@#@$) :: TyFun a6989586621679791972 (TyFun (NonEmpty a6989586621679791972) (NonEmpty a6989586621679791972) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConsSym0 :: TyFun a6989586621679791971 (TyFun (NonEmpty a6989586621679791971) (NonEmpty a6989586621679791971) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromThenToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromEnumSym0 :: TyFun a6989586621679868770 Nat -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PredSym0 :: TyFun a6989586621679868770 a6989586621679868770 -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SuccSym0 :: TyFun a6989586621679868770 a6989586621679868770 -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SameKindSym0 :: TyFun k6989586621679026900 (TyFun k6989586621679026900 Constraint -> *) -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (KindOfSym0 :: TyFun k6989586621679026903 * -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AbsurdSym0 :: TyFun Void a6989586621679296691 -> *) # | |
Defined in Data.Singletons.Prelude.Void Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubSym0 :: TyFun (NonEmpty a6989586621679791922) (NonEmpty a6989586621679791922) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((!!@#@$) :: TyFun (NonEmpty a6989586621679791930) (TyFun Nat a6989586621679791930 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Group1Sym0 :: TyFun (NonEmpty a6989586621679791937) (NonEmpty (NonEmpty a6989586621679791937)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ToListSym0 :: TyFun (NonEmpty a6989586621679791968) [a6989586621679791968] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ReverseSym0 :: TyFun (NonEmpty a6989586621679791953) (NonEmpty a6989586621679791953) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortSym0 :: TyFun (NonEmpty a6989586621679791970) (NonEmpty a6989586621679791970) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InitSym0 :: TyFun (NonEmpty a6989586621679791973) [a6989586621679791973] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LastSym0 :: TyFun (NonEmpty a6989586621679791974) a6989586621679791974 -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TailSym0 :: TyFun (NonEmpty a6989586621679791975) [a6989586621679791975] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (HeadSym0 :: TyFun (NonEmpty a6989586621679791976) a6989586621679791976 -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnconsSym0 :: TyFun (NonEmpty a6989586621679791979) (a6989586621679791979, Maybe (NonEmpty a6989586621679791979)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LengthSym0 :: TyFun (NonEmpty a6989586621679791983) Nat -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TransposeSym0 :: TyFun (NonEmpty (NonEmpty a6989586621679791920)) (NonEmpty (NonEmpty a6989586621679791920)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldlSym2 :: (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) -> b6989586621679269790 -> TyFun [a6989586621679269789] b6989586621679269790 -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldlSym1 :: (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) -> TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ComparingSym2 :: (TyFun b6989586621679315161 a6989586621679315160 -> Type) -> b6989586621679315161 -> TyFun b6989586621679315161 Ordering -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ComparingSym1 :: (TyFun b6989586621679315161 a6989586621679315160 -> Type) -> TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapMaybeSym1 :: (TyFun a6989586621679419775 (Maybe b6989586621679419776) -> Type) -> TyFun [a6989586621679419775] [b6989586621679419776] -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (($!@#@$$) :: (TyFun a6989586621679435589 b6989586621679435590 -> Type) -> TyFun a6989586621679435589 b6989586621679435590 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (($@#@$$) :: (TyFun a6989586621679435591 b6989586621679435592 -> Type) -> TyFun a6989586621679435591 b6989586621679435592 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapSym1 :: (TyFun a6989586621679435604 b6989586621679435605 -> Type) -> TyFun [a6989586621679435604] [b6989586621679435605] -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldrSym2 :: (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) -> b6989586621679435607 -> TyFun [a6989586621679435606] b6989586621679435607 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldrSym1 :: (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) -> TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldrSym1 :: (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) -> TyFun b6989586621679458459 [a6989586621679458460] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym1 :: (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) -> TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym2 :: (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) -> b6989586621679458469 -> TyFun [a6989586621679458468] [b6989586621679458469] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym1 :: (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) -> TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym2 :: (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) -> b6989586621679458471 -> TyFun [a6989586621679458472] [b6989586621679458471] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConcatMapSym1 :: (TyFun a6989586621679458475 [b6989586621679458476] -> Type) -> TyFun [a6989586621679458475] [b6989586621679458476] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl'Sym2 :: (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) -> b6989586621679458482 -> TyFun [a6989586621679458481] b6989586621679458482 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl'Sym1 :: (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) -> TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupWithSym1 :: (TyFun a6989586621679791941 b6989586621679791940 -> Type) -> TyFun [a6989586621679791941] [NonEmpty a6989586621679791941] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupAllWithSym1 :: (TyFun a6989586621679791939 b6989586621679791938 -> Type) -> TyFun [a6989586621679791939] [NonEmpty a6989586621679791939] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupWith1Sym1 :: (TyFun a6989586621679791935 b6989586621679791934 -> Type) -> TyFun (NonEmpty a6989586621679791935) (NonEmpty (NonEmpty a6989586621679791935)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapSym1 :: (TyFun a6989586621679791964 b6989586621679791965 -> Type) -> TyFun (NonEmpty a6989586621679791964) (NonEmpty b6989586621679791965) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortWithSym1 :: (TyFun a6989586621679791918 o6989586621679791917 -> Type) -> TyFun (NonEmpty a6989586621679791918) (NonEmpty a6989586621679791918) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupAllWith1Sym1 :: (TyFun a6989586621679791933 b6989586621679791932 -> Type) -> TyFun (NonEmpty a6989586621679791933) (NonEmpty (NonEmpty a6989586621679791933)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym2 :: (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) -> b6989586621679791959 -> TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym1 :: (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) -> TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym2 :: (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) -> b6989586621679791958 -> TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym1 :: (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) -> TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldrSym1 :: (TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) -> TyFun a6989586621679791977 (NonEmpty b6989586621679791978) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldSym1 :: (TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) -> TyFun a6989586621679791981 (NonEmpty b6989586621679791982) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipSym1 :: [a6989586621679458450] -> TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericIndexSym1 :: [a6989586621679950133] -> TyFun i6989586621679950132 a6989586621679950133 -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple2Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Maybe_Sym2 :: b6989586621679418662 -> (TyFun a6989586621679418663 b6989586621679418662 -> Type) -> TyFun (Maybe a6989586621679418663) b6989586621679418662 -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Maybe_Sym1 :: b6989586621679418662 -> TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SeqSym1 :: a6989586621679435587 -> TyFun b6989586621679435588 b6989586621679435588 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConstSym1 :: a6989586621679435600 -> TyFun b6989586621679435601 a6989586621679435600 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LookupSym1 :: a6989586621679458381 -> TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((&@#@$$) :: a6989586621679782850 -> TyFun (TyFun a6989586621679782850 b6989586621679782851 -> Type) b6989586621679782851 -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericReplicateSym1 :: i6989586621679950130 -> TyFun a6989586621679950131 [a6989586621679950131] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericSplitAtSym1 :: i6989586621679950134 -> TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericDropSym1 :: i6989586621679950136 -> TyFun [a6989586621679950137] [a6989586621679950137] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericTakeSym1 :: i6989586621679950138 -> TyFun [a6989586621679950139] [a6989586621679950139] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipSym1 :: NonEmpty a6989586621679791928 -> TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ApplySym1 :: (k16989586621679025039 ~> k26989586621679025040) -> TyFun k16989586621679025039 k26989586621679025040 -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((@@@#@$$) :: (k16989586621679031134 ~> k6989586621679031133) -> TyFun k16989586621679031134 k6989586621679031133 -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (ComparingSym0 :: TyFun (TyFun b6989586621679315161 a6989586621679315160 -> Type) (TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapMaybeSym0 :: TyFun (TyFun a6989586621679419775 (Maybe b6989586621679419776) -> Type) (TyFun [a6989586621679419775] [b6989586621679419776] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (($!@#@$) :: TyFun (TyFun a6989586621679435589 b6989586621679435590 -> Type) (TyFun a6989586621679435589 b6989586621679435590 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (($@#@$) :: TyFun (TyFun a6989586621679435591 b6989586621679435592 -> Type) (TyFun a6989586621679435591 b6989586621679435592 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapSym0 :: TyFun (TyFun a6989586621679435604 b6989586621679435605 -> Type) (TyFun [a6989586621679435604] [b6989586621679435605] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (UnfoldrSym0 :: TyFun (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (TyFun b6989586621679458459 [a6989586621679458460] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (ConcatMapSym0 :: TyFun (TyFun a6989586621679458475 [b6989586621679458476] -> Type) (TyFun [a6989586621679458475] [b6989586621679458476] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (GroupWithSym0 :: TyFun (TyFun a6989586621679791941 b6989586621679791940 -> Type) (TyFun [a6989586621679791941] [NonEmpty a6989586621679791941] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupAllWithSym0 :: TyFun (TyFun a6989586621679791939 b6989586621679791938 -> Type) (TyFun [a6989586621679791939] [NonEmpty a6989586621679791939] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupWith1Sym0 :: TyFun (TyFun a6989586621679791935 b6989586621679791934 -> Type) (TyFun (NonEmpty a6989586621679791935) (NonEmpty (NonEmpty a6989586621679791935)) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapSym0 :: TyFun (TyFun a6989586621679791964 b6989586621679791965 -> Type) (TyFun (NonEmpty a6989586621679791964) (NonEmpty b6989586621679791965) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortWithSym0 :: TyFun (TyFun a6989586621679791918 o6989586621679791917 -> Type) (TyFun (NonEmpty a6989586621679791918) (NonEmpty a6989586621679791918) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupAllWith1Sym0 :: TyFun (TyFun a6989586621679791933 b6989586621679791932 -> Type) (TyFun (NonEmpty a6989586621679791933) (NonEmpty (NonEmpty a6989586621679791933)) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym0 :: TyFun (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) (TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym0 :: TyFun (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) (TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldrSym0 :: TyFun (TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) (TyFun a6989586621679791977 (NonEmpty b6989586621679791978) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldSym0 :: TyFun (TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) (TyFun a6989586621679791981 (NonEmpty b6989586621679791982) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (RightsSym0 :: TyFun [Either a6989586621679940977 b6989586621679940978] [b6989586621679940978] -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LeftsSym0 :: TyFun [Either a6989586621679940979 b6989586621679940980] [a6989586621679940979] -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnzipSym0 :: TyFun [(a6989586621679458438, b6989586621679458439)] ([a6989586621679458438], [b6989586621679458439]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericLengthSym0 :: TyFun [a6989586621679458367] i6989586621679458366 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipSym0 :: TyFun [a6989586621679458450] (TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericIndexSym0 :: TyFun [a6989586621679950133] (TyFun i6989586621679950132 a6989586621679950133 -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsRightSym0 :: TyFun (Either a6989586621679940971 b6989586621679940972) Bool -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsLeftSym0 :: TyFun (Either a6989586621679940973 b6989586621679940974) Bool -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SwapSym0 :: TyFun (a6989586621679297381, b6989586621679297382) (b6989586621679297382, a6989586621679297381) -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SndSym0 :: TyFun (a6989586621679297389, b6989586621679297390) b6989586621679297390 -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FstSym0 :: TyFun (a6989586621679297391, b6989586621679297392) a6989586621679297391 -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LeftSym0 :: TyFun a6989586621679083011 (Either a6989586621679083011 b6989586621679083012) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (RightSym0 :: TyFun b6989586621679083012 (Either a6989586621679083011 b6989586621679083012) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ErrorSym0 :: TyFun k06989586621679393131 k6989586621679393132 -> *) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Maybe_Sym0 :: TyFun b6989586621679418662 (TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SeqSym0 :: TyFun a6989586621679435587 (TyFun b6989586621679435588 b6989586621679435588 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConstSym0 :: TyFun a6989586621679435600 (TyFun b6989586621679435601 a6989586621679435600 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LookupSym0 :: TyFun a6989586621679458381 (TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((&@#@$) :: TyFun a6989586621679782850 (TyFun (TyFun a6989586621679782850 b6989586621679782851 -> Type) b6989586621679782851 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericReplicateSym0 :: TyFun i6989586621679950130 (TyFun a6989586621679950131 [a6989586621679950131] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericSplitAtSym0 :: TyFun i6989586621679950134 (TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericDropSym0 :: TyFun i6989586621679950136 (TyFun [a6989586621679950137] [a6989586621679950137] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericTakeSym0 :: TyFun i6989586621679950138 (TyFun [a6989586621679950139] [a6989586621679950139] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnzipSym0 :: TyFun (NonEmpty (a6989586621679791923, b6989586621679791924)) (NonEmpty a6989586621679791923, NonEmpty b6989586621679791924) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipSym0 :: TyFun (NonEmpty a6989586621679791928) (TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ApplySym0 :: TyFun (k16989586621679025039 ~> k26989586621679025040) (TyFun k16989586621679025039 k26989586621679025040 -> Type) -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((@@@#@$) :: TyFun (k16989586621679031134 ~> k6989586621679031133) (TyFun k16989586621679031134 k6989586621679031133 -> *) -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CurrySym2 :: (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) -> a6989586621679297386 -> TyFun b6989586621679297387 c6989586621679297388 -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CurrySym1 :: (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) -> TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UncurrySym1 :: (TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) -> TyFun (a6989586621679297383, b6989586621679297384) c6989586621679297385 -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FlipSym2 :: (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) -> b6989586621679435595 -> TyFun a6989586621679435594 c6989586621679435596 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FlipSym1 :: (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) -> TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((.@#@$$$) :: (TyFun b6989586621679435597 c6989586621679435598 -> Type) -> (TyFun a6989586621679435599 b6989586621679435597 -> Type) -> TyFun a6989586621679435599 c6989586621679435598 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((.@#@$$) :: (TyFun b6989586621679435597 c6989586621679435598 -> Type) -> TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym1 :: (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) -> TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym2 :: (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) -> [a6989586621679458444] -> TyFun [b6989586621679458445] [c6989586621679458446] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (MapAccumRSym2 :: (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) -> acc6989586621679458461 -> TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (MapAccumLSym2 :: (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) -> acc6989586621679458464 -> TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (OnSym3 :: (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) -> (TyFun a6989586621679782854 b6989586621679782852 -> Type) -> a6989586621679782854 -> TyFun a6989586621679782854 c6989586621679782853 -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (OnSym2 :: (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) -> (TyFun a6989586621679782854 b6989586621679782852 -> Type) -> TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (OnSym1 :: (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) -> TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym2 :: (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) -> NonEmpty a6989586621679791925 -> TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym1 :: (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Either_Sym2 :: (TyFun a6989586621679939843 c6989586621679939844 -> Type) -> (TyFun b6989586621679939845 c6989586621679939844 -> Type) -> TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Either_Sym1 :: (TyFun a6989586621679939843 c6989586621679939844 -> Type) -> TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip3Sym1 :: [a6989586621679458447] -> TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip3Sym2 :: [a6989586621679458447] -> [b6989586621679458448] -> TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple3Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple3Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CurrySym0 :: TyFun (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) (TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UncurrySym0 :: TyFun (TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) (TyFun (a6989586621679297383, b6989586621679297384) c6989586621679297385 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FlipSym0 :: TyFun (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) (TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((.@#@$) :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| 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 :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (OnSym0 :: TyFun (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) (TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym0 :: TyFun (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Either_Sym0 :: TyFun (TyFun a6989586621679939843 c6989586621679939844 -> Type) (TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Unzip3Sym0 :: TyFun [(a6989586621679458435, b6989586621679458436, c6989586621679458437)] ([a6989586621679458435], [b6989586621679458436], [c6989586621679458437]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip3Sym0 :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| 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 :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (Zip4Sym3 :: [a6989586621679950184] -> [b6989586621679950185] -> [c6989586621679950186] -> TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip4Sym2 :: [a6989586621679950184] -> [b6989586621679950185] -> TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip4Sym1 :: [a6989586621679950184] -> TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple4Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple4Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple4Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (Unzip4Sym0 :: TyFun [(a6989586621679458431, b6989586621679458432, c6989586621679458433, d6989586621679458434)] ([a6989586621679458431], [b6989586621679458432], [c6989586621679458433], [d6989586621679458434]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip4Sym0 :: TyFun [a6989586621679950184] (TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym1 :: (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym2 :: (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950161] -> TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym3 :: (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950161] -> [b6989586621679950162] -> TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym4 :: (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950161] -> [b6989586621679950162] -> [c6989586621679950163] -> TyFun [d6989586621679950164] [e6989586621679950165] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym4 :: [a6989586621679950179] -> [b6989586621679950180] -> [c6989586621679950181] -> [d6989586621679950182] -> TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym3 :: [a6989586621679950179] -> [b6989586621679950180] -> [c6989586621679950181] -> TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym2 :: [a6989586621679950179] -> [b6989586621679950180] -> TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym1 :: [a6989586621679950179] -> TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym0 :: TyFun (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Unzip5Sym0 :: TyFun [(a6989586621679458426, b6989586621679458427, c6989586621679458428, d6989586621679458429, e6989586621679458430)] ([a6989586621679458426], [b6989586621679458427], [c6989586621679458428], [d6989586621679458429], [e6989586621679458430]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym0 :: TyFun [a6989586621679950179] (TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym1 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym2 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950155] -> TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym3 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950155] -> [b6989586621679950156] -> TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym4 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950155] -> [b6989586621679950156] -> [c6989586621679950157] -> TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym5 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950155] -> [b6989586621679950156] -> [c6989586621679950157] -> [d6989586621679950158] -> TyFun [e6989586621679950159] [f6989586621679950160] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym5 :: [a6989586621679950173] -> [b6989586621679950174] -> [c6989586621679950175] -> [d6989586621679950176] -> [e6989586621679950177] -> TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym4 :: [a6989586621679950173] -> [b6989586621679950174] -> [c6989586621679950175] -> [d6989586621679950176] -> TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym3 :: [a6989586621679950173] -> [b6989586621679950174] -> [c6989586621679950175] -> TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym2 :: [a6989586621679950173] -> [b6989586621679950174] -> TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym1 :: [a6989586621679950173] -> TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym5 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym0 :: TyFun (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Unzip6Sym0 :: TyFun [(a6989586621679458420, b6989586621679458421, c6989586621679458422, d6989586621679458423, e6989586621679458424, f6989586621679458425)] ([a6989586621679458420], [b6989586621679458421], [c6989586621679458422], [d6989586621679458423], [e6989586621679458424], [f6989586621679458425]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym0 :: TyFun [a6989586621679950173] (TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym1 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym2 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym3 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> [b6989586621679950149] -> TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym4 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> [b6989586621679950149] -> [c6989586621679950150] -> TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym5 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> [b6989586621679950149] -> [c6989586621679950150] -> [d6989586621679950151] -> TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym6 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> [b6989586621679950149] -> [c6989586621679950150] -> [d6989586621679950151] -> [e6989586621679950152] -> TyFun [f6989586621679950153] [g6989586621679950154] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym6 :: [a6989586621679950166] -> [b6989586621679950167] -> [c6989586621679950168] -> [d6989586621679950169] -> [e6989586621679950170] -> [f6989586621679950171] -> TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym5 :: [a6989586621679950166] -> [b6989586621679950167] -> [c6989586621679950168] -> [d6989586621679950169] -> [e6989586621679950170] -> TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym4 :: [a6989586621679950166] -> [b6989586621679950167] -> [c6989586621679950168] -> [d6989586621679950169] -> TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym3 :: [a6989586621679950166] -> [b6989586621679950167] -> [c6989586621679950168] -> TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym2 :: [a6989586621679950166] -> [b6989586621679950167] -> TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym1 :: [a6989586621679950166] -> TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym6 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> f3530822107858468870 -> TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym5 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym0 :: TyFun (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| 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 :: () # | |
| SuppressUnusedWarnings (Zip7Sym0 :: TyFun [a6989586621679950166] (TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym1 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym2 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym3 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym4 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> [c6989586621679950142] -> TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym5 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> [c6989586621679950142] -> [d6989586621679950143] -> TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym6 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> [c6989586621679950142] -> [d6989586621679950143] -> [e6989586621679950144] -> TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym7 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> [c6989586621679950142] -> [d6989586621679950143] -> [e6989586621679950144] -> [f6989586621679950145] -> TyFun [g6989586621679950146] [h6989586621679950147] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym0 :: TyFun (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |