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
Contents
Description
This module exports the basic definitions to use singletons. For routine
use, consider importing Prelude
, which exports constructors
for singletons based on types in the Prelude
.
You may also want to read the original papers presenting this library, available at http://cs.brynmawr.edu/~rae/papers/2012/singletons/paper.pdf and http://cs.brynmawr.edu/~rae/papers/2014/promotion/promotion.pdf.
Synopsis
- data family Sing (a :: k)
- (@@) :: forall (f :: k1 ~> k2) (t :: k1). Sing f -> Sing t -> Sing (f @@ t)
- class SingI (a :: k) where
- class SingKind k where
- type KindOf (a :: k) = k
- type SameKind (a :: k) (b :: k) = (() :: Constraint)
- data SingInstance (a :: k) where
- SingInstance :: SingI a => SingInstance a
- data SomeSing k where
- singInstance :: forall (a :: k). Sing a -> SingInstance a
- pattern Sing :: forall (a :: k). () => SingI a => Sing a
- withSingI :: Sing n -> (SingI n => r) -> r
- withSomeSing :: forall k r. SingKind k => Demote k -> (forall (a :: k). Sing a -> r) -> r
- pattern FromSing :: SingKind k => forall (a :: k). Sing a -> Demote k
- singByProxy :: SingI a => proxy a -> Sing a
- demote :: forall a. (SingKind (KindOf a), SingI a) => Demote (KindOf a)
- singByProxy# :: SingI a => Proxy# a -> Sing a
- withSing :: SingI a => (Sing a -> b) -> b
- singThat :: forall (a :: k). (SingKind k, SingI a) => (Demote k -> Bool) -> Maybe (Sing a)
- data TyFun :: * -> * -> *
- type (~>) a b = TyFun a b -> *
- type TyCon1 = (TyCon :: (k1 -> k2) -> k1 ~> k2)
- type TyCon2 = (TyCon :: (k1 -> k2 -> k3) -> k1 ~> (k2 ~> k3))
- type TyCon3 = (TyCon :: (k1 -> k2 -> k3 -> k4) -> k1 ~> (k2 ~> (k3 ~> k4)))
- type TyCon4 = (TyCon :: (k1 -> k2 -> k3 -> k4 -> k5) -> k1 ~> (k2 ~> (k3 ~> (k4 ~> k5))))
- type TyCon5 = (TyCon :: (k1 -> k2 -> k3 -> k4 -> k5 -> k6) -> k1 ~> (k2 ~> (k3 ~> (k4 ~> (k5 ~> k6)))))
- type TyCon6 = (TyCon :: (k1 -> k2 -> k3 -> k4 -> k5 -> k6 -> k7) -> k1 ~> (k2 ~> (k3 ~> (k4 ~> (k5 ~> (k6 ~> k7))))))
- type TyCon7 = (TyCon :: (k1 -> k2 -> k3 -> k4 -> k5 -> k6 -> k7 -> k8) -> k1 ~> (k2 ~> (k3 ~> (k4 ~> (k5 ~> (k6 ~> (k7 ~> k8)))))))
- type TyCon8 = (TyCon :: (k1 -> k2 -> k3 -> k4 -> k5 -> k6 -> k7 -> k8 -> k9) -> k1 ~> (k2 ~> (k3 ~> (k4 ~> (k5 ~> (k6 ~> (k7 ~> (k8 ~> k9))))))))
- data family TyCon :: (k1 -> k2) -> unmatchable_fun
- type family Apply (f :: k1 ~> k2) (x :: k1) :: k2
- type (@@) a b = Apply a b
- singFun1 :: forall f. SingFunction1 f -> Sing f
- singFun2 :: forall f. SingFunction2 f -> Sing f
- singFun3 :: forall f. SingFunction3 f -> Sing f
- singFun4 :: forall f. SingFunction4 f -> Sing f
- singFun5 :: forall f. SingFunction5 f -> Sing f
- singFun6 :: forall f. SingFunction6 f -> Sing f
- singFun7 :: forall f. SingFunction7 f -> Sing f
- singFun8 :: forall f. SingFunction8 f -> Sing f
- unSingFun1 :: forall f. Sing f -> SingFunction1 f
- unSingFun2 :: forall f. Sing f -> SingFunction2 f
- unSingFun3 :: forall f. Sing f -> SingFunction3 f
- unSingFun4 :: forall f. Sing f -> SingFunction4 f
- unSingFun5 :: forall f. Sing f -> SingFunction5 f
- unSingFun6 :: forall f. Sing f -> SingFunction6 f
- unSingFun7 :: forall f. Sing f -> SingFunction7 f
- unSingFun8 :: forall f. Sing f -> SingFunction8 f
- pattern SLambda2 :: forall f. SingFunction2 f -> Sing f
- pattern SLambda3 :: forall f. SingFunction3 f -> Sing f
- pattern SLambda4 :: forall f. SingFunction4 f -> Sing f
- pattern SLambda5 :: forall f. SingFunction5 f -> Sing f
- pattern SLambda6 :: forall f. SingFunction6 f -> Sing f
- pattern SLambda7 :: forall f. SingFunction7 f -> Sing f
- pattern SLambda8 :: forall f. SingFunction8 f -> Sing f
- type SingFunction1 f = forall t. Sing t -> Sing (f @@ t)
- type SingFunction2 f = forall t. Sing t -> SingFunction1 (f @@ t)
- type SingFunction3 f = forall t. Sing t -> SingFunction2 (f @@ t)
- type SingFunction4 f = forall t. Sing t -> SingFunction3 (f @@ t)
- type SingFunction5 f = forall t. Sing t -> SingFunction4 (f @@ t)
- type SingFunction6 f = forall t. Sing t -> SingFunction5 (f @@ t)
- type SingFunction7 f = forall t. Sing t -> SingFunction6 (f @@ t)
- type SingFunction8 f = forall t. Sing t -> SingFunction7 (f @@ t)
- data Proxy (t :: k) :: forall k. k -> * = Proxy
- data DemoteSym0 (l :: TyFun Type Type)
- type DemoteSym1 (t :: Type) = Demote t
- data SameKindSym0 l
- data SameKindSym1 (l :: k6989586621679024562) l
- type SameKindSym2 (t :: k6989586621679024562) (t :: k6989586621679024562) = SameKind t t
- data KindOfSym0 l
- type KindOfSym1 (t :: k6989586621679024565) = KindOf t
- data (~>@#@$) l
- data (l :: Type) ~>@#@$$ l
- type (~>@#@$$$) (t :: Type) (t :: Type) = (~>) t t
- data ApplySym0 (l :: TyFun ((~>) k16989586621679022701 k26989586621679022702) (TyFun k16989586621679022701 k26989586621679022702 -> Type))
- data ApplySym1 (l :: (~>) k16989586621679022701 k26989586621679022702) (l :: TyFun k16989586621679022701 k26989586621679022702)
- type ApplySym2 (t :: (~>) k16989586621679022701 k26989586621679022702) (t :: k16989586621679022701) = Apply t t
- data (@@@#@$) l
- data (l :: (~>) k16989586621679028796 k6989586621679028795) @@@#@$$ l
- type (@@@#@$$$) (t :: (~>) k16989586621679028796 k6989586621679028795) (t :: k16989586621679028796) = (@@) t t
Main singleton definitions
data family Sing (a :: k) Source #
The singleton kind-indexed data family.
Instances
(@@) :: forall (f :: k1 ~> k2) (t :: k1). Sing f -> Sing t -> Sing (f @@ t) infixl 9 Source #
An infix synonym for applySing
class SingI (a :: k) where Source #
A SingI
constraint is essentially an implicitly-passed singleton.
If you need to satisfy this constraint with an explicit singleton, please
see withSingI
or the Sing
pattern synonym.
Minimal complete definition
Methods
Produce the singleton explicitly. You will likely need the ScopedTypeVariables
extension to use this method the way you want.
Instances
class SingKind k where Source #
The SingKind
class is a kind class. It classifies all kinds
for which singletons are defined. The class supports converting between a singleton
type and the base (unrefined) type which it is built from.
For a SingKind
instance to be well behaved, it should obey the following laws:
toSing
.fromSing
≡SomeSing
(\x ->withSomeSing
xfromSing
) ≡id
The final law can also be expressed in terms of the FromSing
pattern
synonym:
(\(FromSing
sing) ->FromSing
sing) ≡id
Associated Types
type Demote k = (r :: *) | r -> k Source #
Get a base type from the promoted kind. For example,
Demote Bool
will be the type Bool
. Rarely, the type and kind do not
match. For example, Demote Nat
is Natural
.
Methods
fromSing :: Sing (a :: k) -> Demote k Source #
Convert a singleton to its unrefined version.
toSing :: Demote k -> SomeSing k Source #
Convert an unrefined type to an existentially-quantified singleton type.
Instances
Working with singletons
type KindOf (a :: k) = k Source #
Convenient synonym to refer to the kind of a type variable:
type KindOf (a :: k) = k
type SameKind (a :: k) (b :: k) = (() :: Constraint) Source #
Force GHC to unify the kinds of a
and b
. Note that SameKind a b
is
different from KindOf a ~ KindOf b
in that the former makes the kinds
unify immediately, whereas the latter is a proposition that GHC considers
as possibly false.
data SingInstance (a :: k) where Source #
A SingInstance
wraps up a SingI
instance for explicit handling.
Constructors
SingInstance :: SingI a => SingInstance a |
data SomeSing k where Source #
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) # | |
singInstance :: forall (a :: k). Sing a -> SingInstance a Source #
Get an implicit singleton (a SingI
instance) from an explicit one.
pattern Sing :: forall (a :: k). () => SingI a => Sing a Source #
An explicitly bidirectional pattern synonym for implicit singletons.
As an expression: Constructs a singleton Sing a
given a
implicit singleton constraint SingI a
.
As a pattern: Matches on an explicit Sing a
witness bringing
an implicit SingI a
constraint into scope.
withSingI :: Sing n -> (SingI n => r) -> r Source #
Convenience function for creating a context with an implicit singleton available.
Arguments
:: SingKind k | |
=> Demote k | The original datatype |
-> (forall (a :: k). Sing a -> r) | Function expecting a singleton |
-> r |
Convert a normal datatype (like Bool
) to a singleton for that datatype,
passing it into a continuation.
pattern FromSing :: SingKind k => forall (a :: k). Sing a -> Demote k Source #
An explicitly bidirectional pattern synonym for going between a singleton and the corresponding demoted term.
As an expression: this takes a singleton to its demoted (base) type.
>>>
:t FromSing \@Bool
FromSing \@Bool :: Sing a -> Bool>>>
FromSing SFalse
False
As a pattern: It extracts a singleton from its demoted (base) type.
singAnd ::Bool
->Bool
->SomeSing
Bool
singAnd (FromSing
singBool1) (FromSing
singBool2) =SomeSing
(singBool1 %&& singBool2)
instead of writing it with withSomeSing
:
singAnd bool1 bool2 =withSomeSing
bool1 $ singBool1 ->withSomeSing
bool2 $ singBool2 ->SomeSing
(singBool1 %&& singBool2)
singByProxy :: SingI a => proxy a -> Sing a Source #
Allows creation of a singleton when a proxy is at hand.
demote :: forall a. (SingKind (KindOf a), SingI a) => Demote (KindOf a) Source #
A convenience function that takes a type as input and demotes it to its
value-level counterpart as output. This uses SingKind
and SingI
behind
the scenes, so
.demote
= fromSing
sing
This function is intended to be used with TypeApplications
. For example:
>>>
demote @True
True
>>>
demote @(Nothing :: Maybe Ordering)
Nothing
singByProxy# :: SingI a => Proxy# a -> Sing a Source #
Allows creation of a singleton when a proxy#
is at hand.
withSing :: SingI a => (Sing a -> b) -> b Source #
A convenience function useful when we need to name a singleton value
multiple times. Without this function, each use of sing
could potentially
refer to a different singleton, and one has to use type signatures (often
with ScopedTypeVariables
) to ensure that they are the same.
singThat :: forall (a :: k). (SingKind k, SingI a) => (Demote k -> Bool) -> Maybe (Sing a) Source #
A convenience function that names a singleton satisfying a certain
property. If the singleton does not satisfy the property, then the function
returns Nothing
. The property is expressed in terms of the underlying
representation of the singleton.
Defunctionalization
data TyFun :: * -> * -> * Source #
Representation of the kind of a type-level function. The difference between term-level arrows and this type-level arrow is that at the term level applications can be unsaturated, whereas at the type level all applications have to be fully saturated.
Instances
(SingKind k1, SingKind k2) => SingKind (k1 ~> k2) Source # | Note that this instance's |
SuppressUnusedWarnings ShowParenSym2 Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (&&@#@$$) Source # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (||@#@$$) Source # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ShowParenSym1 Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ThenCmpSym1 Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (~>@#@$$) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (^@#@$$) Source # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings DivSym1 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ModSym1 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings QuotSym1 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings RemSym1 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings QuotRemSym1 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings DivModSym1 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (<>@#@$$) Source # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ShowCharSym1 Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ShowStringSym1 Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings NotSym0 Source # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (&&@#@$) Source # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (||@#@$) Source # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ShowParenSym0 Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings AndSym0 Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings OrSym0 Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings UnlinesSym0 Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings UnwordsSym0 Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ThenCmpSym0 Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (~>@#@$) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings DemoteSym0 Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (^@#@$) Source # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings DivSym0 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ModSym0 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings QuotSym0 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings RemSym0 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings QuotRemSym0 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings DivModSym0 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings KnownNatSym0 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings Log2Sym0 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ShowCharSym0 Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ShowStringSym0 Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (<>@#@$) Source # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings KnownSymbolSym0 Source # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ShowCommaSpaceSym0 Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ShowSpaceSym0 Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings XorSym0 Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NubBySym1 :: (TyFun a6989586621679444958 (TyFun a6989586621679444958 Bool -> Type) -> Type) -> TyFun [a6989586621679444958] [a6989586621679444958] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (PartitionSym1 :: (TyFun a6989586621679444967 Bool -> Type) -> TyFun [a6989586621679444967] ([a6989586621679444967], [a6989586621679444967]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (BreakSym1 :: (TyFun a6989586621679444979 Bool -> Type) -> TyFun [a6989586621679444979] ([a6989586621679444979], [a6989586621679444979]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SpanSym1 :: (TyFun a6989586621679444980 Bool -> Type) -> TyFun [a6989586621679444980] ([a6989586621679444980], [a6989586621679444980]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupBySym1 :: (TyFun a6989586621679444970 (TyFun a6989586621679444970 Bool -> Type) -> Type) -> TyFun [a6989586621679444970] [[a6989586621679444970]] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropWhileSym1 :: (TyFun a6989586621679444982 Bool -> Type) -> TyFun [a6989586621679444982] [a6989586621679444982] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TakeWhileSym1 :: (TyFun a6989586621679444983 Bool -> Type) -> TyFun [a6989586621679444983] [a6989586621679444983] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FilterSym1 :: (TyFun a6989586621679444991 Bool -> Type) -> TyFun [a6989586621679444991] [a6989586621679444991] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FindSym1 :: (TyFun a6989586621679444990 Bool -> Type) -> TyFun [a6989586621679444990] (Maybe a6989586621679444990) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InsertBySym1 :: (TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) -> TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InsertBySym2 :: (TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) -> a6989586621679444994 -> TyFun [a6989586621679444994] [a6989586621679444994] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SortBySym1 :: (TyFun a6989586621679444995 (TyFun a6989586621679444995 Ordering -> Type) -> Type) -> TyFun [a6989586621679444995] [a6989586621679444995] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DeleteBySym1 :: (TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) -> TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DeleteBySym2 :: (TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) -> a6989586621679444997 -> TyFun [a6989586621679444997] [a6989586621679444997] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DeleteFirstsBySym2 :: (TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) -> [a6989586621679444996] -> TyFun [a6989586621679444996] [a6989586621679444996] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DeleteFirstsBySym1 :: (TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) -> TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnionBySym2 :: (TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) -> [a6989586621679444956] -> TyFun [a6989586621679444956] [a6989586621679444956] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnionBySym1 :: (TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) -> TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FindIndicesSym1 :: (TyFun a6989586621679444986 Bool -> Type) -> TyFun [a6989586621679444986] [Nat] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FindIndexSym1 :: (TyFun a6989586621679444987 Bool -> Type) -> TyFun [a6989586621679444987] (Maybe Nat) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Scanr1Sym1 :: (TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) -> TyFun [a6989586621679445054] [a6989586621679445054] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Scanl1Sym1 :: (TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) -> TyFun [a6989586621679445057] [a6989586621679445057] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (AnySym1 :: (TyFun a6989586621679445060 Bool -> Type) -> TyFun [a6989586621679445060] Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntersectBySym2 :: (TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) -> [a6989586621679444984] -> TyFun [a6989586621679444984] [a6989586621679444984] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntersectBySym1 :: (TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) -> TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (AllSym1 :: (TyFun a6989586621679445061 Bool -> Type) -> TyFun [a6989586621679445061] Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Foldr1Sym1 :: (TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) -> TyFun [a6989586621679445065] a6989586621679445065 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Foldl1Sym1 :: (TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) -> TyFun [a6989586621679445067] a6989586621679445067 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MaximumBySym1 :: (TyFun a6989586621679444993 (TyFun a6989586621679444993 Ordering -> Type) -> Type) -> TyFun [a6989586621679444993] a6989586621679444993 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MinimumBySym1 :: (TyFun a6989586621679444992 (TyFun a6989586621679444992 Ordering -> Type) -> Type) -> TyFun [a6989586621679444992] a6989586621679444992 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Foldl1'Sym1 :: (TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) -> TyFun [a6989586621679445066] a6989586621679445066 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropWhileEndSym1 :: (TyFun a6989586621679444981 Bool -> Type) -> TyFun [a6989586621679444981] [a6989586621679444981] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowListWithSym2 :: (TyFun a6989586621679674862 (TyFun Symbol Symbol -> Type) -> Type) -> [a6989586621679674862] -> TyFun Symbol Symbol -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowListWithSym1 :: (TyFun a6989586621679674862 (TyFun Symbol Symbol -> Type) -> Type) -> TyFun [a6989586621679674862] (TyFun Symbol Symbol -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NubBySym1 :: (TyFun a6989586621679770686 (TyFun a6989586621679770686 Bool -> Type) -> Type) -> TyFun (NonEmpty a6989586621679770686) (NonEmpty a6989586621679770686) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupBySym1 :: (TyFun a6989586621679770707 (TyFun a6989586621679770707 Bool -> Type) -> Type) -> TyFun [a6989586621679770707] [NonEmpty a6989586621679770707] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupBy1Sym1 :: (TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) -> TyFun (NonEmpty a6989586621679770701) (NonEmpty (NonEmpty a6989586621679770701)) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TakeWhileSym1 :: (TyFun a6989586621679770714 Bool -> Type) -> TyFun (NonEmpty a6989586621679770714) [a6989586621679770714] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropWhileSym1 :: (TyFun a6989586621679770713 Bool -> Type) -> TyFun (NonEmpty a6989586621679770713) [a6989586621679770713] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SpanSym1 :: (TyFun a6989586621679770712 Bool -> Type) -> TyFun (NonEmpty a6989586621679770712) ([a6989586621679770712], [a6989586621679770712]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (BreakSym1 :: (TyFun a6989586621679770711 Bool -> Type) -> TyFun (NonEmpty a6989586621679770711) ([a6989586621679770711], [a6989586621679770711]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FilterSym1 :: (TyFun a6989586621679770710 Bool -> Type) -> TyFun (NonEmpty a6989586621679770710) [a6989586621679770710] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (PartitionSym1 :: (TyFun a6989586621679770709 Bool -> Type) -> TyFun (NonEmpty a6989586621679770709) ([a6989586621679770709], [a6989586621679770709]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SortBySym1 :: (TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) -> TyFun (NonEmpty a6989586621679770684) (NonEmpty a6989586621679770684) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Scanl1Sym1 :: (TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679770721) (NonEmpty a6989586621679770721) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Scanr1Sym1 :: (TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679770720) (NonEmpty a6989586621679770720) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UntilSym2 :: (TyFun a6989586621679961472 Bool -> Type) -> (TyFun a6989586621679961472 a6989586621679961472 -> Type) -> TyFun a6989586621679961472 a6989586621679961472 -> *) Source # | |
Defined in Data.Promotion.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UntilSym1 :: (TyFun a6989586621679961472 Bool -> Type) -> TyFun (TyFun a6989586621679961472 a6989586621679961472 -> Type) (TyFun a6989586621679961472 a6989586621679961472 -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((++@#@$$) :: [a6989586621679422444] -> TyFun [a6989586621679422444] [a6989586621679422444] -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((!!@#@$$) :: [a6989586621679444960] -> TyFun Nat a6989586621679444960 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnionSym1 :: [a6989586621679444955] -> TyFun [a6989586621679444955] [a6989586621679444955] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((\\@#@$$) :: [a6989586621679444998] -> TyFun [a6989586621679444998] [a6989586621679444998] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsPrefixOfSym1 :: [a6989586621679445043] -> TyFun [a6989586621679445043] Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsInfixOfSym1 :: [a6989586621679445041] -> TyFun [a6989586621679445041] Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntersectSym1 :: [a6989586621679444985] -> TyFun [a6989586621679444985] [a6989586621679444985] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntercalateSym1 :: [a6989586621679445074] -> TyFun [[a6989586621679445074]] [a6989586621679445074] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsSuffixOfSym1 :: [a6989586621679445042] -> TyFun [a6989586621679445042] Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowListSym1 :: [a6989586621679674878] -> TyFun Symbol Symbol -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsPrefixOfSym1 :: [a6989586621679770696] -> TyFun (NonEmpty a6989586621679770696) Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (StripPrefixSym1 :: [a6989586621679924863] -> TyFun [a6989586621679924863] (Maybe [a6989586621679924863]) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowsPrecSym2 :: Nat -> a6989586621679674878 -> TyFun Symbol Symbol -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropSym1 :: Nat -> TyFun [a6989586621679444977] [a6989586621679444977] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TakeSym1 :: Nat -> TyFun [a6989586621679444978] [a6989586621679444978] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SplitAtSym1 :: Nat -> TyFun [a6989586621679444976] ([a6989586621679444976], [a6989586621679444976]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ReplicateSym1 :: Nat -> TyFun a6989586621679444962 [a6989586621679444962] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowsPrecSym1 :: Nat -> TyFun a6989586621679674878 (TyFun Symbol Symbol -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TakeSym1 :: Nat -> TyFun (NonEmpty a6989586621679770717) [a6989586621679770717] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropSym1 :: Nat -> TyFun (NonEmpty a6989586621679770716) [a6989586621679770716] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SplitAtSym1 :: Nat -> TyFun (NonEmpty a6989586621679770715) ([a6989586621679770715], [a6989586621679770715]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((:@#@$$) :: a3530822107858468865 -> TyFun [a3530822107858468865] [a3530822107858468865] -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((:|@#@$$) :: a6989586621679066011 -> TyFun [a6989586621679066011] (NonEmpty a6989586621679066011) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Bool_Sym2 :: a6989586621679291858 -> a6989586621679291858 -> TyFun Bool a6989586621679291858 -> *) Source # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Bool_Sym1 :: a6989586621679291858 -> TyFun a6989586621679291858 (TyFun Bool a6989586621679291858 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((==@#@$$) :: a6989586621679294390 -> TyFun a6989586621679294390 Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((/=@#@$$) :: a6989586621679294390 -> TyFun a6989586621679294390 Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((<=@#@$$) :: a6989586621679305434 -> TyFun a6989586621679305434 Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (CompareSym1 :: a6989586621679305434 -> TyFun a6989586621679305434 Ordering -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MinSym1 :: a6989586621679305434 -> TyFun a6989586621679305434 a6989586621679305434 -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MaxSym1 :: a6989586621679305434 -> TyFun a6989586621679305434 a6989586621679305434 -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((>=@#@$$) :: a6989586621679305434 -> TyFun a6989586621679305434 Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((>@#@$$) :: a6989586621679305434 -> TyFun a6989586621679305434 Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((<@#@$$) :: a6989586621679305434 -> TyFun a6989586621679305434 Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FromMaybeSym1 :: a6989586621679406967 -> TyFun (Maybe a6989586621679406967) a6989586621679406967 -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((-@#@$$) :: a6989586621679415070 -> TyFun a6989586621679415070 a6989586621679415070 -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((+@#@$$) :: a6989586621679415070 -> TyFun a6989586621679415070 a6989586621679415070 -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((*@#@$$) :: a6989586621679415070 -> TyFun a6989586621679415070 a6989586621679415070 -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SubtractSym1 :: a6989586621679417343 -> TyFun a6989586621679417343 a6989586621679417343 -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (AsTypeOfSym1 :: a6989586621679422434 -> TyFun a6989586621679422434 a6989586621679422434 -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InsertSym1 :: a6989586621679444972 -> TyFun [a6989586621679444972] [a6989586621679444972] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DeleteSym1 :: a6989586621679444999 -> TyFun [a6989586621679444999] [a6989586621679444999] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ElemIndicesSym1 :: a6989586621679444988 -> TyFun [a6989586621679444988] [Nat] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ElemIndexSym1 :: a6989586621679444989 -> TyFun [a6989586621679444989] (Maybe Nat) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NotElemSym1 :: a6989586621679445039 -> TyFun [a6989586621679445039] Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ElemSym1 :: a6989586621679445040 -> TyFun [a6989586621679445040] Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntersperseSym1 :: a6989586621679445075 -> TyFun [a6989586621679445075] [a6989586621679445075] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowsSym1 :: a6989586621679674863 -> TyFun Symbol Symbol -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntersperseSym1 :: a6989586621679770719 -> TyFun (NonEmpty a6989586621679770719) (NonEmpty a6989586621679770719) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InsertSym1 :: a6989586621679770726 -> TyFun [a6989586621679770726] (NonEmpty a6989586621679770726) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((<|@#@$$) :: a6989586621679770737 -> TyFun (NonEmpty a6989586621679770737) (NonEmpty a6989586621679770737) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ConsSym1 :: a6989586621679770736 -> TyFun (NonEmpty a6989586621679770736) (NonEmpty a6989586621679770736) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (EnumFromThenToSym1 :: a6989586621679845761 -> TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (EnumFromThenToSym2 :: a6989586621679845761 -> a6989586621679845761 -> TyFun a6989586621679845761 [a6989586621679845761] -> *) Source # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (EnumFromToSym1 :: a6989586621679845761 -> TyFun a6989586621679845761 [a6989586621679845761] -> *) Source # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SameKindSym1 :: k6989586621679024562 -> TyFun k6989586621679024562 Constraint -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((!!@#@$$) :: NonEmpty a6989586621679770695 -> TyFun Nat a6989586621679770695 -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NubBySym0 :: TyFun (TyFun a6989586621679444958 (TyFun a6989586621679444958 Bool -> Type) -> Type) (TyFun [a6989586621679444958] [a6989586621679444958] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (PartitionSym0 :: TyFun (TyFun a6989586621679444967 Bool -> Type) (TyFun [a6989586621679444967] ([a6989586621679444967], [a6989586621679444967]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (BreakSym0 :: TyFun (TyFun a6989586621679444979 Bool -> Type) (TyFun [a6989586621679444979] ([a6989586621679444979], [a6989586621679444979]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SpanSym0 :: TyFun (TyFun a6989586621679444980 Bool -> Type) (TyFun [a6989586621679444980] ([a6989586621679444980], [a6989586621679444980]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupBySym0 :: TyFun (TyFun a6989586621679444970 (TyFun a6989586621679444970 Bool -> Type) -> Type) (TyFun [a6989586621679444970] [[a6989586621679444970]] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropWhileSym0 :: TyFun (TyFun a6989586621679444982 Bool -> Type) (TyFun [a6989586621679444982] [a6989586621679444982] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TakeWhileSym0 :: TyFun (TyFun a6989586621679444983 Bool -> Type) (TyFun [a6989586621679444983] [a6989586621679444983] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FilterSym0 :: TyFun (TyFun a6989586621679444991 Bool -> Type) (TyFun [a6989586621679444991] [a6989586621679444991] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FindSym0 :: TyFun (TyFun a6989586621679444990 Bool -> Type) (TyFun [a6989586621679444990] (Maybe a6989586621679444990) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InsertBySym0 :: TyFun (TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) (TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SortBySym0 :: TyFun (TyFun a6989586621679444995 (TyFun a6989586621679444995 Ordering -> Type) -> Type) (TyFun [a6989586621679444995] [a6989586621679444995] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DeleteBySym0 :: TyFun (TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) (TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) (TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnionBySym0 :: TyFun (TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) (TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FindIndicesSym0 :: TyFun (TyFun a6989586621679444986 Bool -> Type) (TyFun [a6989586621679444986] [Nat] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FindIndexSym0 :: TyFun (TyFun a6989586621679444987 Bool -> Type) (TyFun [a6989586621679444987] (Maybe Nat) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Scanr1Sym0 :: TyFun (TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) (TyFun [a6989586621679445054] [a6989586621679445054] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Scanl1Sym0 :: TyFun (TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) (TyFun [a6989586621679445057] [a6989586621679445057] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (AnySym0 :: TyFun (TyFun a6989586621679445060 Bool -> Type) (TyFun [a6989586621679445060] Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntersectBySym0 :: TyFun (TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) (TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (AllSym0 :: TyFun (TyFun a6989586621679445061 Bool -> Type) (TyFun [a6989586621679445061] Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Foldr1Sym0 :: TyFun (TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) (TyFun [a6989586621679445065] a6989586621679445065 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Foldl1Sym0 :: TyFun (TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) (TyFun [a6989586621679445067] a6989586621679445067 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MaximumBySym0 :: TyFun (TyFun a6989586621679444993 (TyFun a6989586621679444993 Ordering -> Type) -> Type) (TyFun [a6989586621679444993] a6989586621679444993 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MinimumBySym0 :: TyFun (TyFun a6989586621679444992 (TyFun a6989586621679444992 Ordering -> Type) -> Type) (TyFun [a6989586621679444992] a6989586621679444992 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Foldl1'Sym0 :: TyFun (TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) (TyFun [a6989586621679445066] a6989586621679445066 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropWhileEndSym0 :: TyFun (TyFun a6989586621679444981 Bool -> Type) (TyFun [a6989586621679444981] [a6989586621679444981] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowListWithSym0 :: TyFun (TyFun a6989586621679674862 (TyFun Symbol Symbol -> Type) -> Type) (TyFun [a6989586621679674862] (TyFun Symbol Symbol -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NubBySym0 :: TyFun (TyFun a6989586621679770686 (TyFun a6989586621679770686 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679770686) (NonEmpty a6989586621679770686) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupBySym0 :: TyFun (TyFun a6989586621679770707 (TyFun a6989586621679770707 Bool -> Type) -> Type) (TyFun [a6989586621679770707] [NonEmpty a6989586621679770707] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupBy1Sym0 :: TyFun (TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679770701) (NonEmpty (NonEmpty a6989586621679770701)) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TakeWhileSym0 :: TyFun (TyFun a6989586621679770714 Bool -> Type) (TyFun (NonEmpty a6989586621679770714) [a6989586621679770714] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropWhileSym0 :: TyFun (TyFun a6989586621679770713 Bool -> Type) (TyFun (NonEmpty a6989586621679770713) [a6989586621679770713] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SpanSym0 :: TyFun (TyFun a6989586621679770712 Bool -> Type) (TyFun (NonEmpty a6989586621679770712) ([a6989586621679770712], [a6989586621679770712]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (BreakSym0 :: TyFun (TyFun a6989586621679770711 Bool -> Type) (TyFun (NonEmpty a6989586621679770711) ([a6989586621679770711], [a6989586621679770711]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FilterSym0 :: TyFun (TyFun a6989586621679770710 Bool -> Type) (TyFun (NonEmpty a6989586621679770710) [a6989586621679770710] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (PartitionSym0 :: TyFun (TyFun a6989586621679770709 Bool -> Type) (TyFun (NonEmpty a6989586621679770709) ([a6989586621679770709], [a6989586621679770709]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SortBySym0 :: TyFun (TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679770684) (NonEmpty a6989586621679770684) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Scanl1Sym0 :: TyFun (TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770721) (NonEmpty a6989586621679770721) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Scanr1Sym0 :: TyFun (TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770720) (NonEmpty a6989586621679770720) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UntilSym0 :: TyFun (TyFun a6989586621679961472 Bool -> Type) (TyFun (TyFun a6989586621679961472 a6989586621679961472 -> Type) (TyFun a6989586621679961472 a6989586621679961472 -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ConcatSym0 :: TyFun [[a6989586621679445064]] [a6989586621679445064] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TransposeSym0 :: TyFun [[a6989586621679444961]] [[a6989586621679444961]] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (CatMaybesSym0 :: TyFun [Maybe a6989586621679406964] [a6989586621679406964] -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ListToMaybeSym0 :: TyFun [a6989586621679406965] (Maybe a6989586621679406965) -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((++@#@$) :: TyFun [a6989586621679422444] (TyFun [a6989586621679422444] [a6989586621679422444] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((!!@#@$) :: TyFun [a6989586621679444960] (TyFun Nat a6989586621679444960 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (LengthSym0 :: TyFun [a6989586621679444963] Nat -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ProductSym0 :: TyFun [a6989586621679444964] a6989586621679444964 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SumSym0 :: TyFun [a6989586621679444965] a6989586621679444965 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupSym0 :: TyFun [a6989586621679444975] [[a6989586621679444975]] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SortSym0 :: TyFun [a6989586621679444971] [a6989586621679444971] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnionSym0 :: TyFun [a6989586621679444955] (TyFun [a6989586621679444955] [a6989586621679444955] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((\\@#@$) :: TyFun [a6989586621679444998] (TyFun [a6989586621679444998] [a6989586621679444998] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NubSym0 :: TyFun [a6989586621679444959] [a6989586621679444959] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsPrefixOfSym0 :: TyFun [a6989586621679445043] (TyFun [a6989586621679445043] Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TailsSym0 :: TyFun [a6989586621679445044] [[a6989586621679445044]] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InitsSym0 :: TyFun [a6989586621679445045] [[a6989586621679445045]] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsInfixOfSym0 :: TyFun [a6989586621679445041] (TyFun [a6989586621679445041] Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntersectSym0 :: TyFun [a6989586621679444985] (TyFun [a6989586621679444985] [a6989586621679444985] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MaximumSym0 :: TyFun [a6989586621679444974] a6989586621679444974 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MinimumSym0 :: TyFun [a6989586621679444973] a6989586621679444973 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (PermutationsSym0 :: TyFun [a6989586621679445070] [[a6989586621679445070]] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SubsequencesSym0 :: TyFun [a6989586621679445073] [[a6989586621679445073]] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntercalateSym0 :: TyFun [a6989586621679445074] (TyFun [[a6989586621679445074]] [a6989586621679445074] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ReverseSym0 :: TyFun [a6989586621679445076] [a6989586621679445076] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsSuffixOfSym0 :: TyFun [a6989586621679445042] (TyFun [a6989586621679445042] Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NullSym0 :: TyFun [a6989586621679445077] Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InitSym0 :: TyFun [a6989586621679445078] [a6989586621679445078] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TailSym0 :: TyFun [a6989586621679445079] [a6989586621679445079] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (LastSym0 :: TyFun [a6989586621679445080] a6989586621679445080 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (HeadSym0 :: TyFun [a6989586621679445081] a6989586621679445081 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowListSym0 :: TyFun [a6989586621679674878] (TyFun Symbol Symbol -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsPrefixOfSym0 :: TyFun [a6989586621679770696] (TyFun (NonEmpty a6989586621679770696) Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupSym0 :: TyFun [a6989586621679770708] [NonEmpty a6989586621679770708] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FromListSym0 :: TyFun [a6989586621679770734] (NonEmpty a6989586621679770734) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InitsSym0 :: TyFun [a6989586621679770728] (NonEmpty [a6989586621679770728]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TailsSym0 :: TyFun [a6989586621679770727] (NonEmpty [a6989586621679770727]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NonEmpty_Sym0 :: TyFun [a6989586621679770745] (Maybe (NonEmpty a6989586621679770745)) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (StripPrefixSym0 :: TyFun [a6989586621679924863] (TyFun [a6989586621679924863] (Maybe [a6989586621679924863]) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MaybeToListSym0 :: TyFun (Maybe a6989586621679406966) [a6989586621679406966] -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FromJustSym0 :: TyFun (Maybe a6989586621679406968) a6989586621679406968 -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsNothingSym0 :: TyFun (Maybe a6989586621679406969) Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsJustSym0 :: TyFun (Maybe a6989586621679406970) Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropSym0 :: TyFun Nat (TyFun [a6989586621679444977] [a6989586621679444977] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TakeSym0 :: TyFun Nat (TyFun [a6989586621679444978] [a6989586621679444978] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679444976] ([a6989586621679444976], [a6989586621679444976]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679444962 [a6989586621679444962] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowsPrecSym0 :: TyFun Nat (TyFun a6989586621679674878 (TyFun Symbol Symbol -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TakeSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679770717) [a6989586621679770717] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DropSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679770716) [a6989586621679770716] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SplitAtSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679770715) ([a6989586621679770715], [a6989586621679770715]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FromIntegerSym0 :: TyFun Nat a6989586621679415070 -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ToEnumSym0 :: TyFun Nat a6989586621679845761 -> *) Source # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FromStringSym0 :: TyFun Symbol a6989586621679414406 -> *) Source # | |
Defined in Data.Singletons.Prelude.IsString Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (JustSym0 :: TyFun a3530822107858468865 (Maybe a3530822107858468865) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((:|@#@$) :: TyFun a6989586621679066011 (TyFun [a6989586621679066011] (NonEmpty a6989586621679066011) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Bool_Sym0 :: TyFun a6989586621679291858 (TyFun a6989586621679291858 (TyFun Bool a6989586621679291858 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((==@#@$) :: TyFun a6989586621679294390 (TyFun a6989586621679294390 Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((/=@#@$) :: TyFun a6989586621679294390 (TyFun a6989586621679294390 Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((<=@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (CompareSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Ordering -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MinSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 a6989586621679305434 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MaxSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 a6989586621679305434 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((>=@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((>@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((<@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FromMaybeSym0 :: TyFun a6989586621679406967 (TyFun (Maybe a6989586621679406967) a6989586621679406967 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NegateSym0 :: TyFun a6989586621679415070 a6989586621679415070 -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((-@#@$) :: TyFun a6989586621679415070 (TyFun a6989586621679415070 a6989586621679415070 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((+@#@$) :: TyFun a6989586621679415070 (TyFun a6989586621679415070 a6989586621679415070 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SignumSym0 :: TyFun a6989586621679415070 a6989586621679415070 -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (AbsSym0 :: TyFun a6989586621679415070 a6989586621679415070 -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((*@#@$) :: TyFun a6989586621679415070 (TyFun a6989586621679415070 a6989586621679415070 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SubtractSym0 :: TyFun a6989586621679417343 (TyFun a6989586621679417343 a6989586621679417343 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (AsTypeOfSym0 :: TyFun a6989586621679422434 (TyFun a6989586621679422434 a6989586621679422434 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IdSym0 :: TyFun a6989586621679422443 a6989586621679422443 -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InsertSym0 :: TyFun a6989586621679444972 (TyFun [a6989586621679444972] [a6989586621679444972] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (DeleteSym0 :: TyFun a6989586621679444999 (TyFun [a6989586621679444999] [a6989586621679444999] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ElemIndicesSym0 :: TyFun a6989586621679444988 (TyFun [a6989586621679444988] [Nat] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ElemIndexSym0 :: TyFun a6989586621679444989 (TyFun [a6989586621679444989] (Maybe Nat) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NotElemSym0 :: TyFun a6989586621679445039 (TyFun [a6989586621679445039] Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ElemSym0 :: TyFun a6989586621679445040 (TyFun [a6989586621679445040] Bool -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntersperseSym0 :: TyFun a6989586621679445075 (TyFun [a6989586621679445075] [a6989586621679445075] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Show_Sym0 :: TyFun a6989586621679674878 Symbol -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ShowsSym0 :: TyFun a6989586621679674863 (TyFun Symbol Symbol -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IntersperseSym0 :: TyFun a6989586621679770719 (TyFun (NonEmpty a6989586621679770719) (NonEmpty a6989586621679770719) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InsertSym0 :: TyFun a6989586621679770726 (TyFun [a6989586621679770726] (NonEmpty a6989586621679770726) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((<|@#@$) :: TyFun a6989586621679770737 (TyFun (NonEmpty a6989586621679770737) (NonEmpty a6989586621679770737) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ConsSym0 :: TyFun a6989586621679770736 (TyFun (NonEmpty a6989586621679770736) (NonEmpty a6989586621679770736) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (EnumFromThenToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (EnumFromToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FromEnumSym0 :: TyFun a6989586621679845761 Nat -> *) Source # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (PredSym0 :: TyFun a6989586621679845761 a6989586621679845761 -> *) Source # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SuccSym0 :: TyFun a6989586621679845761 a6989586621679845761 -> *) Source # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SameKindSym0 :: TyFun k6989586621679024562 (TyFun k6989586621679024562 Constraint -> *) -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (KindOfSym0 :: TyFun k6989586621679024565 * -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (AbsurdSym0 :: TyFun Void a6989586621679287408 -> *) Source # | |
Defined in Data.Singletons.Prelude.Void Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (NubSym0 :: TyFun (NonEmpty a6989586621679770687) (NonEmpty a6989586621679770687) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((!!@#@$) :: TyFun (NonEmpty a6989586621679770695) (TyFun Nat a6989586621679770695 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Group1Sym0 :: TyFun (NonEmpty a6989586621679770702) (NonEmpty (NonEmpty a6989586621679770702)) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ToListSym0 :: TyFun (NonEmpty a6989586621679770733) [a6989586621679770733] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ReverseSym0 :: TyFun (NonEmpty a6989586621679770718) (NonEmpty a6989586621679770718) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SortSym0 :: TyFun (NonEmpty a6989586621679770735) (NonEmpty a6989586621679770735) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (InitSym0 :: TyFun (NonEmpty a6989586621679770738) [a6989586621679770738] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (LastSym0 :: TyFun (NonEmpty a6989586621679770739) a6989586621679770739 -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TailSym0 :: TyFun (NonEmpty a6989586621679770740) [a6989586621679770740] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (HeadSym0 :: TyFun (NonEmpty a6989586621679770741) a6989586621679770741 -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnconsSym0 :: TyFun (NonEmpty a6989586621679770744) (a6989586621679770744, Maybe (NonEmpty a6989586621679770744)) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (LengthSym0 :: TyFun (NonEmpty a6989586621679770748) Nat -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (TransposeSym0 :: TyFun (NonEmpty (NonEmpty a6989586621679770685)) (NonEmpty (NonEmpty a6989586621679770685)) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FoldlSym2 :: (TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) -> b6989586621679261435 -> TyFun [a6989586621679261434] b6989586621679261435 -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FoldlSym1 :: (TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) -> TyFun b6989586621679261435 (TyFun [a6989586621679261434] b6989586621679261435 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ComparingSym2 :: (TyFun b6989586621679305424 a6989586621679305423 -> Type) -> b6989586621679305424 -> TyFun b6989586621679305424 Ordering -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ComparingSym1 :: (TyFun b6989586621679305424 a6989586621679305423 -> Type) -> TyFun b6989586621679305424 (TyFun b6989586621679305424 Ordering -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapMaybeSym1 :: (TyFun a6989586621679406962 (Maybe b6989586621679406963) -> Type) -> TyFun [a6989586621679406962] [b6989586621679406963] -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (($!@#@$$) :: (TyFun a6989586621679422430 b6989586621679422431 -> Type) -> TyFun a6989586621679422430 b6989586621679422431 -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (($@#@$$) :: (TyFun a6989586621679422432 b6989586621679422433 -> Type) -> TyFun a6989586621679422432 b6989586621679422433 -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapSym1 :: (TyFun a6989586621679422445 b6989586621679422446 -> Type) -> TyFun [a6989586621679422445] [b6989586621679422446] -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FoldrSym2 :: (TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) -> b6989586621679422448 -> TyFun [a6989586621679422447] b6989586621679422448 -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FoldrSym1 :: (TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) -> TyFun b6989586621679422448 (TyFun [a6989586621679422447] b6989586621679422448 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnfoldrSym1 :: (TyFun b6989586621679445046 (Maybe (a6989586621679445047, b6989586621679445046)) -> Type) -> TyFun b6989586621679445046 [a6989586621679445047] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanrSym1 :: (TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) -> TyFun b6989586621679445056 (TyFun [a6989586621679445055] [b6989586621679445056] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanrSym2 :: (TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) -> b6989586621679445056 -> TyFun [a6989586621679445055] [b6989586621679445056] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanlSym1 :: (TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) -> TyFun b6989586621679445058 (TyFun [a6989586621679445059] [b6989586621679445058] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanlSym2 :: (TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) -> b6989586621679445058 -> TyFun [a6989586621679445059] [b6989586621679445058] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ConcatMapSym1 :: (TyFun a6989586621679445062 [b6989586621679445063] -> Type) -> TyFun [a6989586621679445062] [b6989586621679445063] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Foldl'Sym2 :: (TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) -> b6989586621679445069 -> TyFun [a6989586621679445068] b6989586621679445069 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Foldl'Sym1 :: (TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) -> TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupWithSym1 :: (TyFun a6989586621679770706 b6989586621679770705 -> Type) -> TyFun [a6989586621679770706] [NonEmpty a6989586621679770706] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupAllWithSym1 :: (TyFun a6989586621679770704 b6989586621679770703 -> Type) -> TyFun [a6989586621679770704] [NonEmpty a6989586621679770704] -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupWith1Sym1 :: (TyFun a6989586621679770700 b6989586621679770699 -> Type) -> TyFun (NonEmpty a6989586621679770700) (NonEmpty (NonEmpty a6989586621679770700)) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapSym1 :: (TyFun a6989586621679770729 b6989586621679770730 -> Type) -> TyFun (NonEmpty a6989586621679770729) (NonEmpty b6989586621679770730) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SortWithSym1 :: (TyFun a6989586621679770683 o6989586621679770682 -> Type) -> TyFun (NonEmpty a6989586621679770683) (NonEmpty a6989586621679770683) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupAllWith1Sym1 :: (TyFun a6989586621679770698 b6989586621679770697 -> Type) -> TyFun (NonEmpty a6989586621679770698) (NonEmpty (NonEmpty a6989586621679770698)) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanlSym2 :: (TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) -> b6989586621679770724 -> TyFun [a6989586621679770725] (NonEmpty b6989586621679770724) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanlSym1 :: (TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) -> TyFun b6989586621679770724 (TyFun [a6989586621679770725] (NonEmpty b6989586621679770724) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanrSym2 :: (TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) -> b6989586621679770723 -> TyFun [a6989586621679770722] (NonEmpty b6989586621679770723) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanrSym1 :: (TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) -> TyFun b6989586621679770723 (TyFun [a6989586621679770722] (NonEmpty b6989586621679770723) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnfoldrSym1 :: (TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) -> TyFun a6989586621679770742 (NonEmpty b6989586621679770743) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnfoldSym1 :: (TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) -> TyFun a6989586621679770746 (NonEmpty b6989586621679770747) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipSym1 :: [a6989586621679445037] -> TyFun [b6989586621679445038] [(a6989586621679445037, b6989586621679445038)] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericIndexSym1 :: [a6989586621679924808] -> TyFun i6989586621679924807 a6989586621679924808 -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple2Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Maybe_Sym2 :: b6989586621679405849 -> (TyFun a6989586621679405850 b6989586621679405849 -> Type) -> TyFun (Maybe a6989586621679405850) b6989586621679405849 -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Maybe_Sym1 :: b6989586621679405849 -> TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SeqSym1 :: a6989586621679422428 -> TyFun b6989586621679422429 b6989586621679422429 -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ConstSym1 :: a6989586621679422441 -> TyFun b6989586621679422442 a6989586621679422441 -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (LookupSym1 :: a6989586621679444968 -> TyFun [(a6989586621679444968, b6989586621679444969)] (Maybe b6989586621679444969) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((&@#@$$) :: a6989586621679761698 -> TyFun (TyFun a6989586621679761698 b6989586621679761699 -> Type) b6989586621679761699 -> *) Source # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericReplicateSym1 :: i6989586621679924805 -> TyFun a6989586621679924806 [a6989586621679924806] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericSplitAtSym1 :: i6989586621679924809 -> TyFun [a6989586621679924810] ([a6989586621679924810], [a6989586621679924810]) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericDropSym1 :: i6989586621679924811 -> TyFun [a6989586621679924812] [a6989586621679924812] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericTakeSym1 :: i6989586621679924813 -> TyFun [a6989586621679924814] [a6989586621679924814] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipSym1 :: NonEmpty a6989586621679770693 -> TyFun (NonEmpty b6989586621679770694) (NonEmpty (a6989586621679770693, b6989586621679770694)) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ApplySym1 :: (k16989586621679022701 ~> k26989586621679022702) -> TyFun k16989586621679022701 k26989586621679022702 -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((@@@#@$$) :: (k16989586621679028796 ~> k6989586621679028795) -> TyFun k16989586621679028796 k6989586621679028795 -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FoldlSym0 :: TyFun (TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) (TyFun b6989586621679261435 (TyFun [a6989586621679261434] b6989586621679261435 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ComparingSym0 :: TyFun (TyFun b6989586621679305424 a6989586621679305423 -> Type) (TyFun b6989586621679305424 (TyFun b6989586621679305424 Ordering -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapMaybeSym0 :: TyFun (TyFun a6989586621679406962 (Maybe b6989586621679406963) -> Type) (TyFun [a6989586621679406962] [b6989586621679406963] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (($!@#@$) :: TyFun (TyFun a6989586621679422430 b6989586621679422431 -> Type) (TyFun a6989586621679422430 b6989586621679422431 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (($@#@$) :: TyFun (TyFun a6989586621679422432 b6989586621679422433 -> Type) (TyFun a6989586621679422432 b6989586621679422433 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapSym0 :: TyFun (TyFun a6989586621679422445 b6989586621679422446 -> Type) (TyFun [a6989586621679422445] [b6989586621679422446] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FoldrSym0 :: TyFun (TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) (TyFun b6989586621679422448 (TyFun [a6989586621679422447] b6989586621679422448 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnfoldrSym0 :: TyFun (TyFun b6989586621679445046 (Maybe (a6989586621679445047, b6989586621679445046)) -> Type) (TyFun b6989586621679445046 [a6989586621679445047] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanrSym0 :: TyFun (TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) (TyFun b6989586621679445056 (TyFun [a6989586621679445055] [b6989586621679445056] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanlSym0 :: TyFun (TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) (TyFun b6989586621679445058 (TyFun [a6989586621679445059] [b6989586621679445058] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ConcatMapSym0 :: TyFun (TyFun a6989586621679445062 [b6989586621679445063] -> Type) (TyFun [a6989586621679445062] [b6989586621679445063] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Foldl'Sym0 :: TyFun (TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) (TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupWithSym0 :: TyFun (TyFun a6989586621679770706 b6989586621679770705 -> Type) (TyFun [a6989586621679770706] [NonEmpty a6989586621679770706] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupAllWithSym0 :: TyFun (TyFun a6989586621679770704 b6989586621679770703 -> Type) (TyFun [a6989586621679770704] [NonEmpty a6989586621679770704] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupWith1Sym0 :: TyFun (TyFun a6989586621679770700 b6989586621679770699 -> Type) (TyFun (NonEmpty a6989586621679770700) (NonEmpty (NonEmpty a6989586621679770700)) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapSym0 :: TyFun (TyFun a6989586621679770729 b6989586621679770730 -> Type) (TyFun (NonEmpty a6989586621679770729) (NonEmpty b6989586621679770730) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SortWithSym0 :: TyFun (TyFun a6989586621679770683 o6989586621679770682 -> Type) (TyFun (NonEmpty a6989586621679770683) (NonEmpty a6989586621679770683) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GroupAllWith1Sym0 :: TyFun (TyFun a6989586621679770698 b6989586621679770697 -> Type) (TyFun (NonEmpty a6989586621679770698) (NonEmpty (NonEmpty a6989586621679770698)) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanlSym0 :: TyFun (TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) (TyFun b6989586621679770724 (TyFun [a6989586621679770725] (NonEmpty b6989586621679770724) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ScanrSym0 :: TyFun (TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) (TyFun b6989586621679770723 (TyFun [a6989586621679770722] (NonEmpty b6989586621679770723) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnfoldrSym0 :: TyFun (TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) (TyFun a6989586621679770742 (NonEmpty b6989586621679770743) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnfoldSym0 :: TyFun (TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) (TyFun a6989586621679770746 (NonEmpty b6989586621679770747) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (RightsSym0 :: TyFun [Either a6989586621679915821 b6989586621679915822] [b6989586621679915822] -> *) Source # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (LeftsSym0 :: TyFun [Either a6989586621679915823 b6989586621679915824] [a6989586621679915823] -> *) Source # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnzipSym0 :: TyFun [(a6989586621679445025, b6989586621679445026)] ([a6989586621679445025], [b6989586621679445026]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericLengthSym0 :: TyFun [a6989586621679444954] i6989586621679444953 -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipSym0 :: TyFun [a6989586621679445037] (TyFun [b6989586621679445038] [(a6989586621679445037, b6989586621679445038)] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericIndexSym0 :: TyFun [a6989586621679924808] (TyFun i6989586621679924807 a6989586621679924808 -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsRightSym0 :: TyFun (Either a6989586621679915815 b6989586621679915816) Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (IsLeftSym0 :: TyFun (Either a6989586621679915817 b6989586621679915818) Bool -> *) Source # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SwapSym0 :: TyFun (a6989586621679288092, b6989586621679288093) (b6989586621679288093, a6989586621679288092) -> *) Source # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SndSym0 :: TyFun (a6989586621679288100, b6989586621679288101) b6989586621679288101 -> *) Source # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FstSym0 :: TyFun (a6989586621679288102, b6989586621679288103) a6989586621679288102 -> *) Source # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (LeftSym0 :: TyFun a6989586621679081217 (Either a6989586621679081217 b6989586621679081218) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (RightSym0 :: TyFun b6989586621679081218 (Either a6989586621679081217 b6989586621679081218) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ErrorSym0 :: TyFun k06989586621679381217 k6989586621679381218 -> *) Source # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Maybe_Sym0 :: TyFun b6989586621679405849 (TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (SeqSym0 :: TyFun a6989586621679422428 (TyFun b6989586621679422429 b6989586621679422429 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ConstSym0 :: TyFun a6989586621679422441 (TyFun b6989586621679422442 a6989586621679422441 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (LookupSym0 :: TyFun a6989586621679444968 (TyFun [(a6989586621679444968, b6989586621679444969)] (Maybe b6989586621679444969) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((&@#@$) :: TyFun a6989586621679761698 (TyFun (TyFun a6989586621679761698 b6989586621679761699 -> Type) b6989586621679761699 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericReplicateSym0 :: TyFun i6989586621679924805 (TyFun a6989586621679924806 [a6989586621679924806] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericSplitAtSym0 :: TyFun i6989586621679924809 (TyFun [a6989586621679924810] ([a6989586621679924810], [a6989586621679924810]) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericDropSym0 :: TyFun i6989586621679924811 (TyFun [a6989586621679924812] [a6989586621679924812] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (GenericTakeSym0 :: TyFun i6989586621679924813 (TyFun [a6989586621679924814] [a6989586621679924814] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UnzipSym0 :: TyFun (NonEmpty (a6989586621679770688, b6989586621679770689)) (NonEmpty a6989586621679770688, NonEmpty b6989586621679770689) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipSym0 :: TyFun (NonEmpty a6989586621679770693) (TyFun (NonEmpty b6989586621679770694) (NonEmpty (a6989586621679770693, b6989586621679770694)) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ApplySym0 :: TyFun (k16989586621679022701 ~> k26989586621679022702) (TyFun k16989586621679022701 k26989586621679022702 -> Type) -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((@@@#@$) :: TyFun (k16989586621679028796 ~> k6989586621679028795) (TyFun k16989586621679028796 k6989586621679028795 -> *) -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (CurrySym2 :: (TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) -> a6989586621679288097 -> TyFun b6989586621679288098 c6989586621679288099 -> *) Source # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (CurrySym1 :: (TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) -> TyFun a6989586621679288097 (TyFun b6989586621679288098 c6989586621679288099 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UncurrySym1 :: (TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) -> TyFun (a6989586621679288094, b6989586621679288095) c6989586621679288096 -> *) Source # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FlipSym2 :: (TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) -> b6989586621679422436 -> TyFun a6989586621679422435 c6989586621679422437 -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FlipSym1 :: (TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) -> TyFun b6989586621679422436 (TyFun a6989586621679422435 c6989586621679422437 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((.@#@$$$) :: (TyFun b6989586621679422438 c6989586621679422439 -> Type) -> (TyFun a6989586621679422440 b6989586621679422438 -> Type) -> TyFun a6989586621679422440 c6989586621679422439 -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((.@#@$$) :: (TyFun b6989586621679422438 c6989586621679422439 -> Type) -> TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWithSym1 :: (TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) -> TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWithSym2 :: (TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) -> [a6989586621679445031] -> TyFun [b6989586621679445032] [c6989586621679445033] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapAccumRSym1 :: (TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) -> TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapAccumRSym2 :: (TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) -> acc6989586621679445048 -> TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapAccumLSym1 :: (TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) -> TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapAccumLSym2 :: (TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) -> acc6989586621679445051 -> TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (OnSym3 :: (TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) -> (TyFun a6989586621679761702 b6989586621679761700 -> Type) -> a6989586621679761702 -> TyFun a6989586621679761702 c6989586621679761701 -> *) Source # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (OnSym2 :: (TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) -> (TyFun a6989586621679761702 b6989586621679761700 -> Type) -> TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (OnSym1 :: (TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) -> TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWithSym2 :: (TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) -> NonEmpty a6989586621679770690 -> TyFun (NonEmpty b6989586621679770691) (NonEmpty c6989586621679770692) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWithSym1 :: (TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679770690) (TyFun (NonEmpty b6989586621679770691) (NonEmpty c6989586621679770692) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Either_Sym2 :: (TyFun a6989586621679914687 c6989586621679914688 -> Type) -> (TyFun b6989586621679914689 c6989586621679914688 -> Type) -> TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> *) Source # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Either_Sym1 :: (TyFun a6989586621679914687 c6989586621679914688 -> Type) -> TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip3Sym1 :: [a6989586621679445034] -> TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip3Sym2 :: [a6989586621679445034] -> [b6989586621679445035] -> TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple3Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple3Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (CurrySym0 :: TyFun (TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) (TyFun a6989586621679288097 (TyFun b6989586621679288098 c6989586621679288099 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (UncurrySym0 :: TyFun (TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) (TyFun (a6989586621679288094, b6989586621679288095) c6989586621679288096 -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (FlipSym0 :: TyFun (TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) (TyFun b6989586621679422436 (TyFun a6989586621679422435 c6989586621679422437 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings ((.@#@$) :: TyFun (TyFun b6989586621679422438 c6989586621679422439 -> Type) (TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWithSym0 :: TyFun (TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) (TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapAccumRSym0 :: TyFun (TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) (TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (MapAccumLSym0 :: TyFun (TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) (TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (OnSym0 :: TyFun (TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) (TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWithSym0 :: TyFun (TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770690) (TyFun (NonEmpty b6989586621679770691) (NonEmpty c6989586621679770692) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Either_Sym0 :: TyFun (TyFun a6989586621679914687 c6989586621679914688 -> Type) (TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Unzip3Sym0 :: TyFun [(a6989586621679445022, b6989586621679445023, c6989586621679445024)] ([a6989586621679445022], [b6989586621679445023], [c6989586621679445024]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip3Sym0 :: TyFun [a6989586621679445034] (TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith3Sym1 :: (TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) -> TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith3Sym2 :: (TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) -> [a6989586621679445027] -> TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith3Sym3 :: (TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) -> [a6989586621679445027] -> [b6989586621679445028] -> TyFun [c6989586621679445029] [d6989586621679445030] -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip4Sym3 :: [a6989586621679924859] -> [b6989586621679924860] -> [c6989586621679924861] -> TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip4Sym2 :: [a6989586621679924859] -> [b6989586621679924860] -> TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip4Sym1 :: [a6989586621679924859] -> TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple4Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple4Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple4Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith3Sym0 :: TyFun (TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) (TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Unzip4Sym0 :: TyFun [(a6989586621679445018, b6989586621679445019, c6989586621679445020, d6989586621679445021)] ([a6989586621679445018], [b6989586621679445019], [c6989586621679445020], [d6989586621679445021]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip4Sym0 :: TyFun [a6989586621679924859] (TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith4Sym1 :: (TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679924836] (TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith4Sym2 :: (TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924836] -> TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith4Sym3 :: (TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924836] -> [b6989586621679924837] -> TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith4Sym4 :: (TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924836] -> [b6989586621679924837] -> [c6989586621679924838] -> TyFun [d6989586621679924839] [e6989586621679924840] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip5Sym4 :: [a6989586621679924854] -> [b6989586621679924855] -> [c6989586621679924856] -> [d6989586621679924857] -> TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip5Sym3 :: [a6989586621679924854] -> [b6989586621679924855] -> [c6989586621679924856] -> TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip5Sym2 :: [a6989586621679924854] -> [b6989586621679924855] -> TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip5Sym1 :: [a6989586621679924854] -> TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple5Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple5Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple5Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple5Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith4Sym0 :: TyFun (TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924836] (TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Unzip5Sym0 :: TyFun [(a6989586621679445013, b6989586621679445014, c6989586621679445015, d6989586621679445016, e6989586621679445017)] ([a6989586621679445013], [b6989586621679445014], [c6989586621679445015], [d6989586621679445016], [e6989586621679445017]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip5Sym0 :: TyFun [a6989586621679924854] (TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith5Sym1 :: (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679924830] (TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith5Sym2 :: (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924830] -> TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith5Sym3 :: (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924830] -> [b6989586621679924831] -> TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith5Sym4 :: (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924830] -> [b6989586621679924831] -> [c6989586621679924832] -> TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith5Sym5 :: (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924830] -> [b6989586621679924831] -> [c6989586621679924832] -> [d6989586621679924833] -> TyFun [e6989586621679924834] [f6989586621679924835] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip6Sym5 :: [a6989586621679924848] -> [b6989586621679924849] -> [c6989586621679924850] -> [d6989586621679924851] -> [e6989586621679924852] -> TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip6Sym4 :: [a6989586621679924848] -> [b6989586621679924849] -> [c6989586621679924850] -> [d6989586621679924851] -> TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip6Sym3 :: [a6989586621679924848] -> [b6989586621679924849] -> [c6989586621679924850] -> TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip6Sym2 :: [a6989586621679924848] -> [b6989586621679924849] -> TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip6Sym1 :: [a6989586621679924848] -> TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple6Sym5 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple6Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple6Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple6Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple6Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith5Sym0 :: TyFun (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924830] (TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Unzip6Sym0 :: TyFun [(a6989586621679445007, b6989586621679445008, c6989586621679445009, d6989586621679445010, e6989586621679445011, f6989586621679445012)] ([a6989586621679445007], [b6989586621679445008], [c6989586621679445009], [d6989586621679445010], [e6989586621679445011], [f6989586621679445012]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip6Sym0 :: TyFun [a6989586621679924848] (TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
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) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith6Sym1 :: (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith6Sym2 :: (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924823] -> TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith6Sym3 :: (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924823] -> [b6989586621679924824] -> TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith6Sym4 :: (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924823] -> [b6989586621679924824] -> [c6989586621679924825] -> TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith6Sym5 :: (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924823] -> [b6989586621679924824] -> [c6989586621679924825] -> [d6989586621679924826] -> TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith6Sym6 :: (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924823] -> [b6989586621679924824] -> [c6989586621679924825] -> [d6989586621679924826] -> [e6989586621679924827] -> TyFun [f6989586621679924828] [g6989586621679924829] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip7Sym6 :: [a6989586621679924841] -> [b6989586621679924842] -> [c6989586621679924843] -> [d6989586621679924844] -> [e6989586621679924845] -> [f6989586621679924846] -> TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip7Sym5 :: [a6989586621679924841] -> [b6989586621679924842] -> [c6989586621679924843] -> [d6989586621679924844] -> [e6989586621679924845] -> TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip7Sym4 :: [a6989586621679924841] -> [b6989586621679924842] -> [c6989586621679924843] -> [d6989586621679924844] -> TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip7Sym3 :: [a6989586621679924841] -> [b6989586621679924842] -> [c6989586621679924843] -> TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip7Sym2 :: [a6989586621679924841] -> [b6989586621679924842] -> TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip7Sym1 :: [a6989586621679924841] -> TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple7Sym6 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> f3530822107858468870 -> TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple7Sym5 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple7Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Tuple7Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
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) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
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) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith6Sym0 :: TyFun (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Unzip7Sym0 :: TyFun [(a6989586621679445000, b6989586621679445001, c6989586621679445002, d6989586621679445003, e6989586621679445004, f6989586621679445005, g6989586621679445006)] ([a6989586621679445000], [b6989586621679445001], [c6989586621679445002], [d6989586621679445003], [e6989586621679445004], [f6989586621679445005], [g6989586621679445006]) -> *) Source # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (Zip7Sym0 :: TyFun [a6989586621679924841] (TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
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) -> *) Source # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith7Sym1 :: (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith7Sym2 :: (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924815] -> TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith7Sym3 :: (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924815] -> [b6989586621679924816] -> TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith7Sym4 :: (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924815] -> [b6989586621679924816] -> [c6989586621679924817] -> TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith7Sym5 :: (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924815] -> [b6989586621679924816] -> [c6989586621679924817] -> [d6989586621679924818] -> TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith7Sym6 :: (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924815] -> [b6989586621679924816] -> [c6989586621679924817] -> [d6989586621679924818] -> [e6989586621679924819] -> TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith7Sym7 :: (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679924815] -> [b6989586621679924816] -> [c6989586621679924817] -> [d6989586621679924818] -> [e6989586621679924819] -> [f6989586621679924820] -> TyFun [g6989586621679924821] [h6989586621679924822] -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
SuppressUnusedWarnings (ZipWith7Sym0 :: TyFun (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) Source # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () Source # | |
type Apply (TyCon f :: k1 ~> k5) (x :: k1) Source # | |
Defined in Data.Singletons.Internal | |
type Apply (&&@#@$) (l :: Bool) Source # | |
Defined in Data.Singletons.Prelude.Bool | |
type Apply (||@#@$) (l :: Bool) Source # | |
Defined in Data.Singletons.Prelude.Bool | |
type Apply ShowParenSym0 (l :: Bool) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply ThenCmpSym0 (l :: Ordering) Source # | |
Defined in Data.Singletons.Prelude.Ord | |
type Apply (~>@#@$) (l :: Type) Source # | |
Defined in Data.Singletons | |
type Apply (^@#@$) (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits.Internal | |
type Apply DivSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply ModSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply QuotSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply RemSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply QuotRemSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply DivModSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply ShowCharSym0 (l :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply ShowStringSym0 (l :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply (<>@#@$) (l :: Symbol) Source # | |
Defined in Data.Singletons.TypeLits.Internal | |
type Apply (DropSym0 :: TyFun Nat (TyFun [a6989586621679444977] [a6989586621679444977] -> Type) -> *) (l :: Nat) Source # | |
type Apply (TakeSym0 :: TyFun Nat (TyFun [a6989586621679444978] [a6989586621679444978] -> Type) -> *) (l :: Nat) Source # | |
type Apply (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679444976] ([a6989586621679444976], [a6989586621679444976]) -> Type) -> *) (l :: Nat) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679444962 [a6989586621679444962] -> Type) -> *) (l :: Nat) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ShowsPrecSym0 :: TyFun Nat (TyFun a6989586621679674878 (TyFun Symbol Symbol -> Type) -> Type) -> *) (l :: Nat) Source # | |
type Apply (TakeSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679770717) [a6989586621679770717] -> Type) -> *) (l :: Nat) Source # | |
type Apply (DropSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679770716) [a6989586621679770716] -> Type) -> *) (l :: Nat) Source # | |
type Apply (SplitAtSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679770715) ([a6989586621679770715], [a6989586621679770715]) -> Type) -> *) (l :: Nat) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) (l :: a3530822107858468865) Source # | |
type Apply ((:|@#@$) :: TyFun a6989586621679066011 (TyFun [a6989586621679066011] (NonEmpty a6989586621679066011) -> Type) -> *) (l :: a6989586621679066011) Source # | |
type Apply (Bool_Sym0 :: TyFun a6989586621679291858 (TyFun a6989586621679291858 (TyFun Bool a6989586621679291858 -> Type) -> Type) -> *) (l :: a6989586621679291858) Source # | |
type Apply ((==@#@$) :: TyFun a6989586621679294390 (TyFun a6989586621679294390 Bool -> Type) -> *) (l :: a6989586621679294390) Source # | |
type Apply ((/=@#@$) :: TyFun a6989586621679294390 (TyFun a6989586621679294390 Bool -> Type) -> *) (l :: a6989586621679294390) Source # | |
type Apply ((<=@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply (CompareSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Ordering -> Type) -> *) (l :: a6989586621679305434) Source # | |
Defined in Data.Singletons.Prelude.Ord type Apply (CompareSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Ordering -> Type) -> *) (l :: a6989586621679305434) = CompareSym1 l | |
type Apply (MinSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 a6989586621679305434 -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply (MaxSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 a6989586621679305434 -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply ((>=@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply ((>@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply ((<@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply (FromMaybeSym0 :: TyFun a6989586621679406967 (TyFun (Maybe a6989586621679406967) a6989586621679406967 -> Type) -> *) (l :: a6989586621679406967) Source # | |
Defined in Data.Singletons.Prelude.Maybe type Apply (FromMaybeSym0 :: TyFun a6989586621679406967 (TyFun (Maybe a6989586621679406967) a6989586621679406967 -> Type) -> *) (l :: a6989586621679406967) = FromMaybeSym1 l | |
type Apply ((-@#@$) :: TyFun a6989586621679415070 (TyFun a6989586621679415070 a6989586621679415070 -> Type) -> *) (l :: a6989586621679415070) Source # | |
type Apply ((+@#@$) :: TyFun a6989586621679415070 (TyFun a6989586621679415070 a6989586621679415070 -> Type) -> *) (l :: a6989586621679415070) Source # | |
type Apply ((*@#@$) :: TyFun a6989586621679415070 (TyFun a6989586621679415070 a6989586621679415070 -> Type) -> *) (l :: a6989586621679415070) Source # | |
type Apply (SubtractSym0 :: TyFun a6989586621679417343 (TyFun a6989586621679417343 a6989586621679417343 -> Type) -> *) (l :: a6989586621679417343) Source # | |
Defined in Data.Singletons.Prelude.Num type Apply (SubtractSym0 :: TyFun a6989586621679417343 (TyFun a6989586621679417343 a6989586621679417343 -> Type) -> *) (l :: a6989586621679417343) = SubtractSym1 l | |
type Apply (AsTypeOfSym0 :: TyFun a6989586621679422434 (TyFun a6989586621679422434 a6989586621679422434 -> Type) -> *) (l :: a6989586621679422434) Source # | |
Defined in Data.Singletons.Prelude.Base type Apply (AsTypeOfSym0 :: TyFun a6989586621679422434 (TyFun a6989586621679422434 a6989586621679422434 -> Type) -> *) (l :: a6989586621679422434) = AsTypeOfSym1 l | |
type Apply (InsertSym0 :: TyFun a6989586621679444972 (TyFun [a6989586621679444972] [a6989586621679444972] -> Type) -> *) (l :: a6989586621679444972) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertSym0 :: TyFun a6989586621679444972 (TyFun [a6989586621679444972] [a6989586621679444972] -> Type) -> *) (l :: a6989586621679444972) = InsertSym1 l | |
type Apply (DeleteSym0 :: TyFun a6989586621679444999 (TyFun [a6989586621679444999] [a6989586621679444999] -> Type) -> *) (l :: a6989586621679444999) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteSym0 :: TyFun a6989586621679444999 (TyFun [a6989586621679444999] [a6989586621679444999] -> Type) -> *) (l :: a6989586621679444999) = DeleteSym1 l | |
type Apply (ElemIndicesSym0 :: TyFun a6989586621679444988 (TyFun [a6989586621679444988] [Nat] -> Type) -> *) (l :: a6989586621679444988) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndicesSym0 :: TyFun a6989586621679444988 (TyFun [a6989586621679444988] [Nat] -> Type) -> *) (l :: a6989586621679444988) = ElemIndicesSym1 l | |
type Apply (ElemIndexSym0 :: TyFun a6989586621679444989 (TyFun [a6989586621679444989] (Maybe Nat) -> Type) -> *) (l :: a6989586621679444989) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndexSym0 :: TyFun a6989586621679444989 (TyFun [a6989586621679444989] (Maybe Nat) -> Type) -> *) (l :: a6989586621679444989) = ElemIndexSym1 l | |
type Apply (NotElemSym0 :: TyFun a6989586621679445039 (TyFun [a6989586621679445039] Bool -> Type) -> *) (l :: a6989586621679445039) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (NotElemSym0 :: TyFun a6989586621679445039 (TyFun [a6989586621679445039] Bool -> Type) -> *) (l :: a6989586621679445039) = NotElemSym1 l | |
type Apply (ElemSym0 :: TyFun a6989586621679445040 (TyFun [a6989586621679445040] Bool -> Type) -> *) (l :: a6989586621679445040) Source # | |
type Apply (IntersperseSym0 :: TyFun a6989586621679445075 (TyFun [a6989586621679445075] [a6989586621679445075] -> Type) -> *) (l :: a6989586621679445075) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersperseSym0 :: TyFun a6989586621679445075 (TyFun [a6989586621679445075] [a6989586621679445075] -> Type) -> *) (l :: a6989586621679445075) = IntersperseSym1 l | |
type Apply (ShowsSym0 :: TyFun a6989586621679674863 (TyFun Symbol Symbol -> Type) -> *) (l :: a6989586621679674863) Source # | |
type Apply (IntersperseSym0 :: TyFun a6989586621679770719 (TyFun (NonEmpty a6989586621679770719) (NonEmpty a6989586621679770719) -> Type) -> *) (l :: a6989586621679770719) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IntersperseSym0 :: TyFun a6989586621679770719 (TyFun (NonEmpty a6989586621679770719) (NonEmpty a6989586621679770719) -> Type) -> *) (l :: a6989586621679770719) = IntersperseSym1 l | |
type Apply (InsertSym0 :: TyFun a6989586621679770726 (TyFun [a6989586621679770726] (NonEmpty a6989586621679770726) -> Type) -> *) (l :: a6989586621679770726) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (InsertSym0 :: TyFun a6989586621679770726 (TyFun [a6989586621679770726] (NonEmpty a6989586621679770726) -> Type) -> *) (l :: a6989586621679770726) = InsertSym1 l | |
type Apply ((<|@#@$) :: TyFun a6989586621679770737 (TyFun (NonEmpty a6989586621679770737) (NonEmpty a6989586621679770737) -> Type) -> *) (l :: a6989586621679770737) Source # | |
type Apply (ConsSym0 :: TyFun a6989586621679770736 (TyFun (NonEmpty a6989586621679770736) (NonEmpty a6989586621679770736) -> Type) -> *) (l :: a6989586621679770736) Source # | |
type Apply (EnumFromThenToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> Type) -> *) (l :: a6989586621679845761) Source # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromThenToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> Type) -> *) (l :: a6989586621679845761) = EnumFromThenToSym1 l | |
type Apply (EnumFromToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) (l :: a6989586621679845761) Source # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) (l :: a6989586621679845761) = EnumFromToSym1 l | |
type Apply (SameKindSym0 :: TyFun k6989586621679024562 (TyFun k6989586621679024562 Constraint -> *) -> *) (l :: k6989586621679024562) Source # | |
Defined in Data.Singletons type Apply (SameKindSym0 :: TyFun k6989586621679024562 (TyFun k6989586621679024562 Constraint -> *) -> *) (l :: k6989586621679024562) = SameKindSym1 l | |
type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) Source # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) = (Tuple2Sym1 l :: TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) | |
type Apply (Bool_Sym1 l1 :: TyFun a6989586621679291858 (TyFun Bool a6989586621679291858 -> Type) -> *) (l2 :: a6989586621679291858) Source # | |
type Apply (Maybe_Sym0 :: TyFun b6989586621679405849 (TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> Type) -> *) (l :: b6989586621679405849) Source # | |
Defined in Data.Singletons.Prelude.Maybe type Apply (Maybe_Sym0 :: TyFun b6989586621679405849 (TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> Type) -> *) (l :: b6989586621679405849) = (Maybe_Sym1 l :: TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> *) | |
type Apply (SeqSym0 :: TyFun a6989586621679422428 (TyFun b6989586621679422429 b6989586621679422429 -> Type) -> *) (l :: a6989586621679422428) Source # | |
type Apply (ConstSym0 :: TyFun a6989586621679422441 (TyFun b6989586621679422442 a6989586621679422441 -> Type) -> *) (l :: a6989586621679422441) Source # | |
type Apply (LookupSym0 :: TyFun a6989586621679444968 (TyFun [(a6989586621679444968, b6989586621679444969)] (Maybe b6989586621679444969) -> Type) -> *) (l :: a6989586621679444968) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (InsertBySym1 l1 :: TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> *) (l2 :: a6989586621679444994) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym1 l1 :: TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> *) (l2 :: a6989586621679444994) = InsertBySym2 l1 l2 | |
type Apply (DeleteBySym1 l1 :: TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> *) (l2 :: a6989586621679444997) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym1 l1 :: TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> *) (l2 :: a6989586621679444997) = DeleteBySym2 l1 l2 | |
type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679674878 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679674878) Source # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679674878 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679674878) = ShowsPrecSym2 l1 l2 | |
type Apply ((&@#@$) :: TyFun a6989586621679761698 (TyFun (TyFun a6989586621679761698 b6989586621679761699 -> Type) b6989586621679761699 -> Type) -> *) (l :: a6989586621679761698) Source # | |
Defined in Data.Singletons.Prelude.Function | |
type Apply (EnumFromThenToSym1 l1 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) (l2 :: a6989586621679845761) Source # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromThenToSym1 l1 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) (l2 :: a6989586621679845761) = EnumFromThenToSym2 l1 l2 | |
type Apply (GenericReplicateSym0 :: TyFun i6989586621679924805 (TyFun a6989586621679924806 [a6989586621679924806] -> Type) -> *) (l :: i6989586621679924805) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericReplicateSym0 :: TyFun i6989586621679924805 (TyFun a6989586621679924806 [a6989586621679924806] -> Type) -> *) (l :: i6989586621679924805) = (GenericReplicateSym1 l :: TyFun a6989586621679924806 [a6989586621679924806] -> *) | |
type Apply (GenericSplitAtSym0 :: TyFun i6989586621679924809 (TyFun [a6989586621679924810] ([a6989586621679924810], [a6989586621679924810]) -> Type) -> *) (l :: i6989586621679924809) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericSplitAtSym0 :: TyFun i6989586621679924809 (TyFun [a6989586621679924810] ([a6989586621679924810], [a6989586621679924810]) -> Type) -> *) (l :: i6989586621679924809) = (GenericSplitAtSym1 l :: TyFun [a6989586621679924810] ([a6989586621679924810], [a6989586621679924810]) -> *) | |
type Apply (GenericDropSym0 :: TyFun i6989586621679924811 (TyFun [a6989586621679924812] [a6989586621679924812] -> Type) -> *) (l :: i6989586621679924811) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericDropSym0 :: TyFun i6989586621679924811 (TyFun [a6989586621679924812] [a6989586621679924812] -> Type) -> *) (l :: i6989586621679924811) = (GenericDropSym1 l :: TyFun [a6989586621679924812] [a6989586621679924812] -> *) | |
type Apply (GenericTakeSym0 :: TyFun i6989586621679924813 (TyFun [a6989586621679924814] [a6989586621679924814] -> Type) -> *) (l :: i6989586621679924813) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericTakeSym0 :: TyFun i6989586621679924813 (TyFun [a6989586621679924814] [a6989586621679924814] -> Type) -> *) (l :: i6989586621679924813) = (GenericTakeSym1 l :: TyFun [a6989586621679924814] [a6989586621679924814] -> *) | |
type Apply (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (l :: a3530822107858468865) Source # | |
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) -> *) | |
type Apply (FoldlSym1 l1 :: TyFun b6989586621679261435 (TyFun [a6989586621679261434] b6989586621679261435 -> Type) -> *) (l2 :: b6989586621679261435) Source # | |
type Apply (ComparingSym1 l1 :: TyFun b6989586621679305424 (TyFun b6989586621679305424 Ordering -> Type) -> *) (l2 :: b6989586621679305424) Source # | |
Defined in Data.Singletons.Prelude.Ord type Apply (ComparingSym1 l1 :: TyFun b6989586621679305424 (TyFun b6989586621679305424 Ordering -> Type) -> *) (l2 :: b6989586621679305424) = ComparingSym2 l1 l2 | |
type Apply (FoldrSym1 l1 :: TyFun b6989586621679422448 (TyFun [a6989586621679422447] b6989586621679422448 -> Type) -> *) (l2 :: b6989586621679422448) Source # | |
type Apply (ScanrSym1 l1 :: TyFun b6989586621679445056 (TyFun [a6989586621679445055] [b6989586621679445056] -> Type) -> *) (l2 :: b6989586621679445056) Source # | |
type Apply (ScanlSym1 l1 :: TyFun b6989586621679445058 (TyFun [a6989586621679445059] [b6989586621679445058] -> Type) -> *) (l2 :: b6989586621679445058) Source # | |
type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> *) (l2 :: b6989586621679445069) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> *) (l2 :: b6989586621679445069) = Foldl'Sym2 l1 l2 | |
type Apply (ScanlSym1 l1 :: TyFun b6989586621679770724 (TyFun [a6989586621679770725] (NonEmpty b6989586621679770724) -> Type) -> *) (l2 :: b6989586621679770724) Source # | |
type Apply (ScanrSym1 l1 :: TyFun b6989586621679770723 (TyFun [a6989586621679770722] (NonEmpty b6989586621679770723) -> Type) -> *) (l2 :: b6989586621679770723) Source # | |
type Apply (Tuple3Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (l2 :: b3530822107858468866) Source # | |
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) -> *) | |
type Apply (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) Source # | |
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) -> *) | |
type Apply (CurrySym1 l1 :: TyFun a6989586621679288097 (TyFun b6989586621679288098 c6989586621679288099 -> Type) -> *) (l2 :: a6989586621679288097) Source # | |
type Apply (FlipSym1 l1 :: TyFun b6989586621679422436 (TyFun a6989586621679422435 c6989586621679422437 -> Type) -> *) (l2 :: b6989586621679422436) Source # | |
type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> *) (l2 :: acc6989586621679445048) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> *) (l2 :: acc6989586621679445048) = MapAccumRSym2 l1 l2 | |
type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> *) (l2 :: acc6989586621679445051) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> *) (l2 :: acc6989586621679445051) = MapAccumLSym2 l1 l2 | |
type Apply (Tuple4Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) Source # | |
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) -> *) | |
type Apply (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) Source # | |
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) -> *) | |
type Apply (OnSym2 l1 l2 :: TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> *) (l3 :: a6989586621679761702) Source # | |
type Apply (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (l3 :: c3530822107858468867) Source # | |
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) -> *) | |
type Apply (Tuple5Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (l4 :: d3530822107858468868) Source # | |
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) -> *) | |
type Apply (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (l5 :: e3530822107858468869) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (l5 :: e3530822107858468869) Source # | |
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) -> *) | |
type Apply (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (l6 :: f3530822107858468870) Source # | |
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) -> *) | |
type Apply ((++@#@$) :: TyFun [a6989586621679422444] (TyFun [a6989586621679422444] [a6989586621679422444] -> Type) -> *) (l :: [a6989586621679422444]) Source # | |
type Apply ((!!@#@$) :: TyFun [a6989586621679444960] (TyFun Nat a6989586621679444960 -> Type) -> *) (l :: [a6989586621679444960]) Source # | |
type Apply (UnionSym0 :: TyFun [a6989586621679444955] (TyFun [a6989586621679444955] [a6989586621679444955] -> Type) -> *) (l :: [a6989586621679444955]) Source # | |
type Apply ((\\@#@$) :: TyFun [a6989586621679444998] (TyFun [a6989586621679444998] [a6989586621679444998] -> Type) -> *) (l :: [a6989586621679444998]) Source # | |
type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679445043] (TyFun [a6989586621679445043] Bool -> Type) -> *) (l :: [a6989586621679445043]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679445043] (TyFun [a6989586621679445043] Bool -> Type) -> *) (l :: [a6989586621679445043]) = IsPrefixOfSym1 l | |
type Apply (IsInfixOfSym0 :: TyFun [a6989586621679445041] (TyFun [a6989586621679445041] Bool -> Type) -> *) (l :: [a6989586621679445041]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IsInfixOfSym0 :: TyFun [a6989586621679445041] (TyFun [a6989586621679445041] Bool -> Type) -> *) (l :: [a6989586621679445041]) = IsInfixOfSym1 l | |
type Apply (IntersectSym0 :: TyFun [a6989586621679444985] (TyFun [a6989586621679444985] [a6989586621679444985] -> Type) -> *) (l :: [a6989586621679444985]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectSym0 :: TyFun [a6989586621679444985] (TyFun [a6989586621679444985] [a6989586621679444985] -> Type) -> *) (l :: [a6989586621679444985]) = IntersectSym1 l | |
type Apply (IntercalateSym0 :: TyFun [a6989586621679445074] (TyFun [[a6989586621679445074]] [a6989586621679445074] -> Type) -> *) (l :: [a6989586621679445074]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntercalateSym0 :: TyFun [a6989586621679445074] (TyFun [[a6989586621679445074]] [a6989586621679445074] -> Type) -> *) (l :: [a6989586621679445074]) = IntercalateSym1 l | |
type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679445042] (TyFun [a6989586621679445042] Bool -> Type) -> *) (l :: [a6989586621679445042]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679445042] (TyFun [a6989586621679445042] Bool -> Type) -> *) (l :: [a6989586621679445042]) = IsSuffixOfSym1 l | |
type Apply (ShowListSym0 :: TyFun [a6989586621679674878] (TyFun Symbol Symbol -> Type) -> *) (l :: [a6989586621679674878]) Source # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowListSym0 :: TyFun [a6989586621679674878] (TyFun Symbol Symbol -> Type) -> *) (l :: [a6989586621679674878]) = ShowListSym1 l | |
type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679770696] (TyFun (NonEmpty a6989586621679770696) Bool -> Type) -> *) (l :: [a6989586621679770696]) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679770696] (TyFun (NonEmpty a6989586621679770696) Bool -> Type) -> *) (l :: [a6989586621679770696]) = IsPrefixOfSym1 l | |
type Apply (StripPrefixSym0 :: TyFun [a6989586621679924863] (TyFun [a6989586621679924863] (Maybe [a6989586621679924863]) -> Type) -> *) (l :: [a6989586621679924863]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (StripPrefixSym0 :: TyFun [a6989586621679924863] (TyFun [a6989586621679924863] (Maybe [a6989586621679924863]) -> Type) -> *) (l :: [a6989586621679924863]) = StripPrefixSym1 l | |
type Apply ((!!@#@$) :: TyFun (NonEmpty a6989586621679770695) (TyFun Nat a6989586621679770695 -> Type) -> *) (l :: NonEmpty a6989586621679770695) Source # | |
type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> *) (l2 :: [a6989586621679444996]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> *) (l2 :: [a6989586621679444996]) = DeleteFirstsBySym2 l1 l2 | |
type Apply (UnionBySym1 l1 :: TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> *) (l2 :: [a6989586621679444956]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym1 l1 :: TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> *) (l2 :: [a6989586621679444956]) = UnionBySym2 l1 l2 | |
type Apply (ZipSym0 :: TyFun [a6989586621679445037] (TyFun [b6989586621679445038] [(a6989586621679445037, b6989586621679445038)] -> Type) -> *) (l :: [a6989586621679445037]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> *) (l2 :: [a6989586621679444984]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> *) (l2 :: [a6989586621679444984]) = IntersectBySym2 l1 l2 | |
type Apply (ShowListWithSym1 l1 :: TyFun [a6989586621679674862] (TyFun Symbol Symbol -> Type) -> *) (l2 :: [a6989586621679674862]) Source # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowListWithSym1 l1 :: TyFun [a6989586621679674862] (TyFun Symbol Symbol -> Type) -> *) (l2 :: [a6989586621679674862]) = ShowListWithSym2 l1 l2 | |
type Apply (GenericIndexSym0 :: TyFun [a6989586621679924808] (TyFun i6989586621679924807 a6989586621679924808 -> Type) -> *) (l :: [a6989586621679924808]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericIndexSym0 :: TyFun [a6989586621679924808] (TyFun i6989586621679924807 a6989586621679924808 -> Type) -> *) (l :: [a6989586621679924808]) = (GenericIndexSym1 l :: TyFun i6989586621679924807 a6989586621679924808 -> *) | |
type Apply (ZipSym0 :: TyFun (NonEmpty a6989586621679770693) (TyFun (NonEmpty b6989586621679770694) (NonEmpty (a6989586621679770693, b6989586621679770694)) -> Type) -> *) (l :: NonEmpty a6989586621679770693) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ZipSym0 :: TyFun (NonEmpty a6989586621679770693) (TyFun (NonEmpty b6989586621679770694) (NonEmpty (a6989586621679770693, b6989586621679770694)) -> Type) -> *) (l :: NonEmpty a6989586621679770693) = (ZipSym1 l :: TyFun (NonEmpty b6989586621679770694) (NonEmpty (a6989586621679770693, b6989586621679770694)) -> *) | |
type Apply (Zip3Sym0 :: TyFun [a6989586621679445034] (TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> Type) -> *) (l :: [a6989586621679445034]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym0 :: TyFun [a6989586621679445034] (TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> Type) -> *) (l :: [a6989586621679445034]) = (Zip3Sym1 l :: TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> *) | |
type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> *) (l2 :: [a6989586621679445031]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> *) (l2 :: [a6989586621679445031]) = ZipWithSym2 l1 l2 | |
type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> *) (l2 :: [b6989586621679445035]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> *) (l2 :: [b6989586621679445035]) = (Zip3Sym2 l1 l2 :: TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> *) | |
type Apply (Zip4Sym0 :: TyFun [a6989586621679924859] (TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924859]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym0 :: TyFun [a6989586621679924859] (TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924859]) = (Zip4Sym1 l :: TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> *) | |
type Apply (ZipWithSym1 l1 :: TyFun (NonEmpty a6989586621679770690) (TyFun (NonEmpty b6989586621679770691) (NonEmpty c6989586621679770692) -> Type) -> *) (l2 :: NonEmpty a6989586621679770690) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> *) (l2 :: [a6989586621679445027]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> *) (l2 :: [a6989586621679445027]) = ZipWith3Sym2 l1 l2 | |
type Apply (Zip5Sym0 :: TyFun [a6989586621679924854] (TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924854]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym0 :: TyFun [a6989586621679924854] (TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924854]) = (Zip5Sym1 l :: TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> *) (l2 :: [b6989586621679924860]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> *) (l2 :: [b6989586621679924860]) = (Zip4Sym2 l1 l2 :: TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> *) | |
type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> *) (l3 :: [b6989586621679445028]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> *) (l3 :: [b6989586621679445028]) = ZipWith3Sym3 l1 l2 l3 | |
type Apply (ZipWith4Sym1 l1 :: TyFun [a6989586621679924836] (TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924836]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (Zip6Sym0 :: TyFun [a6989586621679924848] (TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924848]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym0 :: TyFun [a6989586621679924848] (TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924848]) = (Zip6Sym1 l :: TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924855]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924855]) = (Zip5Sym2 l1 l2 :: TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> *) | |
type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> *) (l3 :: [c6989586621679924861]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> *) (l3 :: [c6989586621679924861]) = (Zip4Sym3 l1 l2 l3 :: TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> *) | |
type Apply (ZipWith5Sym1 l1 :: TyFun [a6989586621679924830] (TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924830]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> *) (l3 :: [b6989586621679924837]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> *) (l3 :: [b6989586621679924837]) = ZipWith4Sym3 l1 l2 l3 | |
type Apply (Zip7Sym0 :: TyFun [a6989586621679924841] (TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924841]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym0 :: TyFun [a6989586621679924841] (TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924841]) = (Zip7Sym1 l :: TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924849]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924849]) = (Zip6Sym2 l1 l2 :: TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> *) (l3 :: [c6989586621679924856]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> *) (l3 :: [c6989586621679924856]) = (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> *) | |
type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924823]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924823]) = ZipWith6Sym2 l1 l2 | |
type Apply (ZipWith5Sym2 l1 l2 :: TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924831]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> *) (l4 :: [c6989586621679924838]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> *) (l4 :: [c6989586621679924838]) = ZipWith4Sym4 l1 l2 l3 l4 | |
type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924842]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924842]) = (Zip7Sym2 l1 l2 :: TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679924850]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679924850]) = (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> *) | |
type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> *) (l4 :: [d6989586621679924857]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> *) (l4 :: [d6989586621679924857]) = (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> *) | |
type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924815]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924815]) = ZipWith7Sym2 l1 l2 | |
type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924824]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924824]) = ZipWith6Sym3 l1 l2 l3 | |
type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> *) (l4 :: [c6989586621679924832]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> *) (l4 :: [c6989586621679924832]) = ZipWith5Sym4 l1 l2 l3 l4 | |
type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679924843]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679924843]) = (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> *) (l4 :: [d6989586621679924851]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> *) (l4 :: [d6989586621679924851]) = (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> *) | |
type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924816]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924816]) = ZipWith7Sym3 l1 l2 l3 | |
type Apply (ZipWith6Sym3 l1 l2 l3 :: TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679924825]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> *) (l5 :: [d6989586621679924833]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> *) (l5 :: [d6989586621679924833]) = ZipWith5Sym5 l1 l2 l3 l4 l5 | |
type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679924844]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679924844]) = (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> *) | |
type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> *) (l5 :: [e6989586621679924852]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> *) (l5 :: [e6989586621679924852]) = (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> *) | |
type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679924817]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679924817]) = ZipWith7Sym4 l1 l2 l3 l4 | |
type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> *) (l5 :: [d6989586621679924826]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> *) (l5 :: [d6989586621679924826]) = ZipWith6Sym5 l1 l2 l3 l4 l5 | |
type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> *) (l5 :: [e6989586621679924845]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> *) (l5 :: [e6989586621679924845]) = (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> *) | |
type Apply (ZipWith7Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> *) (l5 :: [d6989586621679924818]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> *) (l6 :: [e6989586621679924827]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> *) (l6 :: [e6989586621679924827]) = ZipWith6Sym6 l1 l2 l3 l4 l5 l6 | |
type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> *) (l6 :: [f6989586621679924846]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> *) (l6 :: [f6989586621679924846]) = (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> *) | |
type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> *) (l6 :: [e6989586621679924819]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> *) (l6 :: [e6989586621679924819]) = ZipWith7Sym6 l1 l2 l3 l4 l5 l6 | |
type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> *) (l7 :: [f6989586621679924820]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> *) (l7 :: [f6989586621679924820]) = ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 | |
type Demote (k1 ~> k2) Source # | |
Defined in Data.Singletons.Internal | |
data Sing (f :: k1 ~> k2) Source # | |
type Apply ((&@#@$$) l1 :: TyFun (TyFun a b -> Type) b -> *) (l2 :: TyFun a b -> Type) Source # | |
type Apply (ShowParenSym1 l1 :: TyFun (TyFun Symbol Symbol -> Type) (TyFun Symbol Symbol -> Type) -> *) (l2 :: TyFun Symbol Symbol -> Type) Source # | |
type Apply (NubBySym0 :: TyFun (TyFun a6989586621679444958 (TyFun a6989586621679444958 Bool -> Type) -> Type) (TyFun [a6989586621679444958] [a6989586621679444958] -> Type) -> *) (l :: TyFun a6989586621679444958 (TyFun a6989586621679444958 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679444967 Bool -> Type) (TyFun [a6989586621679444967] ([a6989586621679444967], [a6989586621679444967]) -> Type) -> *) (l :: TyFun a6989586621679444967 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (BreakSym0 :: TyFun (TyFun a6989586621679444979 Bool -> Type) (TyFun [a6989586621679444979] ([a6989586621679444979], [a6989586621679444979]) -> Type) -> *) (l :: TyFun a6989586621679444979 Bool -> Type) Source # | |
type Apply (SpanSym0 :: TyFun (TyFun a6989586621679444980 Bool -> Type) (TyFun [a6989586621679444980] ([a6989586621679444980], [a6989586621679444980]) -> Type) -> *) (l :: TyFun a6989586621679444980 Bool -> Type) Source # | |
type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679444970 (TyFun a6989586621679444970 Bool -> Type) -> Type) (TyFun [a6989586621679444970] [[a6989586621679444970]] -> Type) -> *) (l :: TyFun a6989586621679444970 (TyFun a6989586621679444970 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679444982 Bool -> Type) (TyFun [a6989586621679444982] [a6989586621679444982] -> Type) -> *) (l :: TyFun a6989586621679444982 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679444983 Bool -> Type) (TyFun [a6989586621679444983] [a6989586621679444983] -> Type) -> *) (l :: TyFun a6989586621679444983 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FilterSym0 :: TyFun (TyFun a6989586621679444991 Bool -> Type) (TyFun [a6989586621679444991] [a6989586621679444991] -> Type) -> *) (l :: TyFun a6989586621679444991 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FindSym0 :: TyFun (TyFun a6989586621679444990 Bool -> Type) (TyFun [a6989586621679444990] (Maybe a6989586621679444990) -> Type) -> *) (l :: TyFun a6989586621679444990 Bool -> Type) Source # | |
type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) (TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) (TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) = InsertBySym1 l | |
type Apply (SortBySym0 :: TyFun (TyFun a6989586621679444995 (TyFun a6989586621679444995 Ordering -> Type) -> Type) (TyFun [a6989586621679444995] [a6989586621679444995] -> Type) -> *) (l :: TyFun a6989586621679444995 (TyFun a6989586621679444995 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) (TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) (TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) = DeleteBySym1 l | |
type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) (TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) (TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) = DeleteFirstsBySym1 l | |
type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) (TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) (TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) = UnionBySym1 l | |
type Apply (FindIndicesSym0 :: TyFun (TyFun a6989586621679444986 Bool -> Type) (TyFun [a6989586621679444986] [Nat] -> Type) -> *) (l :: TyFun a6989586621679444986 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FindIndexSym0 :: TyFun (TyFun a6989586621679444987 Bool -> Type) (TyFun [a6989586621679444987] (Maybe Nat) -> Type) -> *) (l :: TyFun a6989586621679444987 Bool -> Type) Source # | |
type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) (TyFun [a6989586621679445054] [a6989586621679445054] -> Type) -> *) (l :: TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) (TyFun [a6989586621679445054] [a6989586621679445054] -> Type) -> *) (l :: TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) = Scanr1Sym1 l | |
type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) (TyFun [a6989586621679445057] [a6989586621679445057] -> Type) -> *) (l :: TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) (TyFun [a6989586621679445057] [a6989586621679445057] -> Type) -> *) (l :: TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) = Scanl1Sym1 l | |
type Apply (AnySym0 :: TyFun (TyFun a6989586621679445060 Bool -> Type) (TyFun [a6989586621679445060] Bool -> Type) -> *) (l :: TyFun a6989586621679445060 Bool -> Type) Source # | |
type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) (TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) (TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) = IntersectBySym1 l | |
type Apply (AllSym0 :: TyFun (TyFun a6989586621679445061 Bool -> Type) (TyFun [a6989586621679445061] Bool -> Type) -> *) (l :: TyFun a6989586621679445061 Bool -> Type) Source # | |
type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) (TyFun [a6989586621679445065] a6989586621679445065 -> Type) -> *) (l :: TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) (TyFun [a6989586621679445065] a6989586621679445065 -> Type) -> *) (l :: TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) = Foldr1Sym1 l | |
type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) (TyFun [a6989586621679445067] a6989586621679445067 -> Type) -> *) (l :: TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) (TyFun [a6989586621679445067] a6989586621679445067 -> Type) -> *) (l :: TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) = Foldl1Sym1 l | |
type Apply (MaximumBySym0 :: TyFun (TyFun a6989586621679444993 (TyFun a6989586621679444993 Ordering -> Type) -> Type) (TyFun [a6989586621679444993] a6989586621679444993 -> Type) -> *) (l :: TyFun a6989586621679444993 (TyFun a6989586621679444993 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (MinimumBySym0 :: TyFun (TyFun a6989586621679444992 (TyFun a6989586621679444992 Ordering -> Type) -> Type) (TyFun [a6989586621679444992] a6989586621679444992 -> Type) -> *) (l :: TyFun a6989586621679444992 (TyFun a6989586621679444992 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) (TyFun [a6989586621679445066] a6989586621679445066 -> Type) -> *) (l :: TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) (TyFun [a6989586621679445066] a6989586621679445066 -> Type) -> *) (l :: TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) = Foldl1'Sym1 l | |
type Apply (DropWhileEndSym0 :: TyFun (TyFun a6989586621679444981 Bool -> Type) (TyFun [a6989586621679444981] [a6989586621679444981] -> Type) -> *) (l :: TyFun a6989586621679444981 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ShowListWithSym0 :: TyFun (TyFun a6989586621679674862 (TyFun Symbol Symbol -> Type) -> Type) (TyFun [a6989586621679674862] (TyFun Symbol Symbol -> Type) -> Type) -> *) (l :: TyFun a6989586621679674862 (TyFun Symbol Symbol -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply (NubBySym0 :: TyFun (TyFun a6989586621679770686 (TyFun a6989586621679770686 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679770686) (NonEmpty a6989586621679770686) -> Type) -> *) (l :: TyFun a6989586621679770686 (TyFun a6989586621679770686 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679770707 (TyFun a6989586621679770707 Bool -> Type) -> Type) (TyFun [a6989586621679770707] [NonEmpty a6989586621679770707] -> Type) -> *) (l :: TyFun a6989586621679770707 (TyFun a6989586621679770707 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupBy1Sym0 :: TyFun (TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679770701) (NonEmpty (NonEmpty a6989586621679770701)) -> Type) -> *) (l :: TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (GroupBy1Sym0 :: TyFun (TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679770701) (NonEmpty (NonEmpty a6989586621679770701)) -> Type) -> *) (l :: TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) = GroupBy1Sym1 l | |
type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679770714 Bool -> Type) (TyFun (NonEmpty a6989586621679770714) [a6989586621679770714] -> Type) -> *) (l :: TyFun a6989586621679770714 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679770713 Bool -> Type) (TyFun (NonEmpty a6989586621679770713) [a6989586621679770713] -> Type) -> *) (l :: TyFun a6989586621679770713 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (SpanSym0 :: TyFun (TyFun a6989586621679770712 Bool -> Type) (TyFun (NonEmpty a6989586621679770712) ([a6989586621679770712], [a6989586621679770712]) -> Type) -> *) (l :: TyFun a6989586621679770712 Bool -> Type) Source # | |
type Apply (BreakSym0 :: TyFun (TyFun a6989586621679770711 Bool -> Type) (TyFun (NonEmpty a6989586621679770711) ([a6989586621679770711], [a6989586621679770711]) -> Type) -> *) (l :: TyFun a6989586621679770711 Bool -> Type) Source # | |
type Apply (FilterSym0 :: TyFun (TyFun a6989586621679770710 Bool -> Type) (TyFun (NonEmpty a6989586621679770710) [a6989586621679770710] -> Type) -> *) (l :: TyFun a6989586621679770710 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679770709 Bool -> Type) (TyFun (NonEmpty a6989586621679770709) ([a6989586621679770709], [a6989586621679770709]) -> Type) -> *) (l :: TyFun a6989586621679770709 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (SortBySym0 :: TyFun (TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679770684) (NonEmpty a6989586621679770684) -> Type) -> *) (l :: TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (SortBySym0 :: TyFun (TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679770684) (NonEmpty a6989586621679770684) -> Type) -> *) (l :: TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) = SortBySym1 l | |
type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770721) (NonEmpty a6989586621679770721) -> Type) -> *) (l :: TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770721) (NonEmpty a6989586621679770721) -> Type) -> *) (l :: TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) = Scanl1Sym1 l | |
type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770720) (NonEmpty a6989586621679770720) -> Type) -> *) (l :: TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770720) (NonEmpty a6989586621679770720) -> Type) -> *) (l :: TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) = Scanr1Sym1 l | |
type Apply (UntilSym0 :: TyFun (TyFun a6989586621679961472 Bool -> Type) (TyFun (TyFun a6989586621679961472 a6989586621679961472 -> Type) (TyFun a6989586621679961472 a6989586621679961472 -> Type) -> Type) -> *) (l :: TyFun a6989586621679961472 Bool -> Type) Source # | |
Defined in Data.Promotion.Prelude.Base | |
type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) (TyFun b6989586621679261435 (TyFun [a6989586621679261434] b6989586621679261435 -> Type) -> Type) -> *) (l :: TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Instances type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) (TyFun b6989586621679261435 (TyFun [a6989586621679261434] b6989586621679261435 -> Type) -> Type) -> *) (l :: TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) = FoldlSym1 l | |
type Apply (ComparingSym0 :: TyFun (TyFun b6989586621679305424 a6989586621679305423 -> Type) (TyFun b6989586621679305424 (TyFun b6989586621679305424 Ordering -> Type) -> Type) -> *) (l :: TyFun b6989586621679305424 a6989586621679305423 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Ord | |
type Apply (MapMaybeSym0 :: TyFun (TyFun a6989586621679406962 (Maybe b6989586621679406963) -> Type) (TyFun [a6989586621679406962] [b6989586621679406963] -> Type) -> *) (l :: TyFun a6989586621679406962 (Maybe b6989586621679406963) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (($!@#@$) :: TyFun (TyFun a6989586621679422430 b6989586621679422431 -> Type) (TyFun a6989586621679422430 b6989586621679422431 -> Type) -> *) (l :: TyFun a6989586621679422430 b6989586621679422431 -> Type) Source # | |
type Apply (($@#@$) :: TyFun (TyFun a6989586621679422432 b6989586621679422433 -> Type) (TyFun a6989586621679422432 b6989586621679422433 -> Type) -> *) (l :: TyFun a6989586621679422432 b6989586621679422433 -> Type) Source # | |
type Apply (MapSym0 :: TyFun (TyFun a6989586621679422445 b6989586621679422446 -> Type) (TyFun [a6989586621679422445] [b6989586621679422446] -> Type) -> *) (l :: TyFun a6989586621679422445 b6989586621679422446 -> Type) Source # | |
type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) (TyFun b6989586621679422448 (TyFun [a6989586621679422447] b6989586621679422448 -> Type) -> Type) -> *) (l :: TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Base type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) (TyFun b6989586621679422448 (TyFun [a6989586621679422447] b6989586621679422448 -> Type) -> Type) -> *) (l :: TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) = FoldrSym1 l | |
type Apply (UnfoldrSym0 :: TyFun (TyFun b6989586621679445046 (Maybe (a6989586621679445047, b6989586621679445046)) -> Type) (TyFun b6989586621679445046 [a6989586621679445047] -> Type) -> *) (l :: TyFun b6989586621679445046 (Maybe (a6989586621679445047, b6989586621679445046)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) (TyFun b6989586621679445056 (TyFun [a6989586621679445055] [b6989586621679445056] -> Type) -> Type) -> *) (l :: TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) (TyFun b6989586621679445056 (TyFun [a6989586621679445055] [b6989586621679445056] -> Type) -> Type) -> *) (l :: TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) = ScanrSym1 l | |
type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) (TyFun b6989586621679445058 (TyFun [a6989586621679445059] [b6989586621679445058] -> Type) -> Type) -> *) (l :: TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) (TyFun b6989586621679445058 (TyFun [a6989586621679445059] [b6989586621679445058] -> Type) -> Type) -> *) (l :: TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) = ScanlSym1 l | |
type Apply (ConcatMapSym0 :: TyFun (TyFun a6989586621679445062 [b6989586621679445063] -> Type) (TyFun [a6989586621679445062] [b6989586621679445063] -> Type) -> *) (l :: TyFun a6989586621679445062 [b6989586621679445063] -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) (TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> Type) -> *) (l :: TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) (TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> Type) -> *) (l :: TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) = Foldl'Sym1 l | |
type Apply (GroupWithSym0 :: TyFun (TyFun a6989586621679770706 b6989586621679770705 -> Type) (TyFun [a6989586621679770706] [NonEmpty a6989586621679770706] -> Type) -> *) (l :: TyFun a6989586621679770706 b6989586621679770705 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupAllWithSym0 :: TyFun (TyFun a6989586621679770704 b6989586621679770703 -> Type) (TyFun [a6989586621679770704] [NonEmpty a6989586621679770704] -> Type) -> *) (l :: TyFun a6989586621679770704 b6989586621679770703 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupWith1Sym0 :: TyFun (TyFun a6989586621679770700 b6989586621679770699 -> Type) (TyFun (NonEmpty a6989586621679770700) (NonEmpty (NonEmpty a6989586621679770700)) -> Type) -> *) (l :: TyFun a6989586621679770700 b6989586621679770699 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (MapSym0 :: TyFun (TyFun a6989586621679770729 b6989586621679770730 -> Type) (TyFun (NonEmpty a6989586621679770729) (NonEmpty b6989586621679770730) -> Type) -> *) (l :: TyFun a6989586621679770729 b6989586621679770730 -> Type) Source # | |
type Apply (SortWithSym0 :: TyFun (TyFun a6989586621679770683 o6989586621679770682 -> Type) (TyFun (NonEmpty a6989586621679770683) (NonEmpty a6989586621679770683) -> Type) -> *) (l :: TyFun a6989586621679770683 o6989586621679770682 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupAllWith1Sym0 :: TyFun (TyFun a6989586621679770698 b6989586621679770697 -> Type) (TyFun (NonEmpty a6989586621679770698) (NonEmpty (NonEmpty a6989586621679770698)) -> Type) -> *) (l :: TyFun a6989586621679770698 b6989586621679770697 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) (TyFun b6989586621679770724 (TyFun [a6989586621679770725] (NonEmpty b6989586621679770724) -> Type) -> Type) -> *) (l :: TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) (TyFun b6989586621679770724 (TyFun [a6989586621679770725] (NonEmpty b6989586621679770724) -> Type) -> Type) -> *) (l :: TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) = ScanlSym1 l | |
type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) (TyFun b6989586621679770723 (TyFun [a6989586621679770722] (NonEmpty b6989586621679770723) -> Type) -> Type) -> *) (l :: TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) (TyFun b6989586621679770723 (TyFun [a6989586621679770722] (NonEmpty b6989586621679770723) -> Type) -> Type) -> *) (l :: TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) = ScanrSym1 l | |
type Apply (UnfoldrSym0 :: TyFun (TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) (TyFun a6989586621679770742 (NonEmpty b6989586621679770743) -> Type) -> *) (l :: TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (UnfoldrSym0 :: TyFun (TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) (TyFun a6989586621679770742 (NonEmpty b6989586621679770743) -> Type) -> *) (l :: TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) = UnfoldrSym1 l | |
type Apply (UnfoldSym0 :: TyFun (TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) (TyFun a6989586621679770746 (NonEmpty b6989586621679770747) -> Type) -> *) (l :: TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (UnfoldSym0 :: TyFun (TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) (TyFun a6989586621679770746 (NonEmpty b6989586621679770747) -> Type) -> *) (l :: TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) = UnfoldSym1 l | |
type Apply (UntilSym1 l1 :: TyFun (TyFun a6989586621679961472 a6989586621679961472 -> Type) (TyFun a6989586621679961472 a6989586621679961472 -> Type) -> *) (l2 :: TyFun a6989586621679961472 a6989586621679961472 -> Type) Source # | |
type Apply (ApplySym0 :: TyFun (k16989586621679022701 ~> k26989586621679022702) (TyFun k16989586621679022701 k26989586621679022702 -> Type) -> *) (l :: k16989586621679022701 ~> k26989586621679022702) Source # | |
type Apply ((@@@#@$) :: TyFun (k16989586621679028796 ~> k6989586621679028795) (TyFun k16989586621679028796 k6989586621679028795 -> *) -> *) (l :: k16989586621679028796 ~> k6989586621679028795) Source # | |
type Apply (CurrySym0 :: TyFun (TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) (TyFun a6989586621679288097 (TyFun b6989586621679288098 c6989586621679288099 -> Type) -> Type) -> *) (l :: TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Tuple type Apply (CurrySym0 :: TyFun (TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) (TyFun a6989586621679288097 (TyFun b6989586621679288098 c6989586621679288099 -> Type) -> Type) -> *) (l :: TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) = CurrySym1 l | |
type Apply (UncurrySym0 :: TyFun (TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) (TyFun (a6989586621679288094, b6989586621679288095) c6989586621679288096 -> Type) -> *) (l :: TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Tuple type Apply (UncurrySym0 :: TyFun (TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) (TyFun (a6989586621679288094, b6989586621679288095) c6989586621679288096 -> Type) -> *) (l :: TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) = UncurrySym1 l | |
type Apply (Maybe_Sym1 l1 :: TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> *) (l2 :: TyFun a6989586621679405850 b6989586621679405849 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (FlipSym0 :: TyFun (TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) (TyFun b6989586621679422436 (TyFun a6989586621679422435 c6989586621679422437 -> Type) -> Type) -> *) (l :: TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Base type Apply (FlipSym0 :: TyFun (TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) (TyFun b6989586621679422436 (TyFun a6989586621679422435 c6989586621679422437 -> Type) -> Type) -> *) (l :: TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) = FlipSym1 l | |
type Apply ((.@#@$) :: TyFun (TyFun b6989586621679422438 c6989586621679422439 -> Type) (TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> Type) -> *) (l :: TyFun b6989586621679422438 c6989586621679422439 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Base type Apply ((.@#@$) :: TyFun (TyFun b6989586621679422438 c6989586621679422439 -> Type) (TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> Type) -> *) (l :: TyFun b6989586621679422438 c6989586621679422439 -> Type) = ((.@#@$$) l :: TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> *) | |
type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) (TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> Type) -> *) (l :: TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) (TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> Type) -> *) (l :: TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) = ZipWithSym1 l | |
type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) (TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) (TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) = MapAccumRSym1 l | |
type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) (TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) (TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) = MapAccumLSym1 l | |
type Apply (OnSym0 :: TyFun (TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) (TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> Type) -> *) (l :: TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Function type Apply (OnSym0 :: TyFun (TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) (TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> Type) -> *) (l :: TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) = (OnSym1 l :: TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> *) | |
type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770690) (TyFun (NonEmpty b6989586621679770691) (NonEmpty c6989586621679770692) -> Type) -> Type) -> *) (l :: TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770690) (TyFun (NonEmpty b6989586621679770691) (NonEmpty c6989586621679770692) -> Type) -> Type) -> *) (l :: TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) = ZipWithSym1 l | |
type Apply (Either_Sym0 :: TyFun (TyFun a6989586621679914687 c6989586621679914688 -> Type) (TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> Type) -> *) (l :: TyFun a6989586621679914687 c6989586621679914688 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Either type Apply (Either_Sym0 :: TyFun (TyFun a6989586621679914687 c6989586621679914688 -> Type) (TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> Type) -> *) (l :: TyFun a6989586621679914687 c6989586621679914688 -> Type) = (Either_Sym1 l :: TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> *) | |
type Apply ((.@#@$$) l1 :: TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> *) (l2 :: TyFun a6989586621679422440 b6989586621679422438 -> Type) Source # | |
type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) (TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) (TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) = ZipWith3Sym1 l | |
type Apply (OnSym1 l1 :: TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> *) (l2 :: TyFun a6989586621679761702 b6989586621679761700 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Function | |
type Apply (Either_Sym1 l1 :: TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> *) (l2 :: TyFun b6989586621679914689 c6989586621679914688 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Either | |
type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924836] (TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924836] (TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) = ZipWith4Sym1 l | |
type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924830] (TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924830] (TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith5Sym1 l | |
type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith6Sym1 l | |
type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith7Sym1 l |
type (~>) a b = TyFun a b -> * infixr 0 Source #
Something of kind `a ~> b` is a defunctionalized type function that is not necessarily generative or injective.
type TyCon1 = (TyCon :: (k1 -> k2) -> k1 ~> k2) Source #
Wrapper for converting the normal type-level arrow into a ~>
.
For example, given:
data Nat = Zero | Succ Nat type family Map (a :: a ~> b) (a :: [a]) :: [b] Map f '[] = '[] Map f (x ': xs) = Apply f x ': Map f xs
We can write:
Map (TyCon1 Succ) [Zero, Succ Zero]
type TyCon2 = (TyCon :: (k1 -> k2 -> k3) -> k1 ~> (k2 ~> k3)) Source #
Similar to TyCon1
, but for two-parameter type constructors.
type TyCon5 = (TyCon :: (k1 -> k2 -> k3 -> k4 -> k5 -> k6) -> k1 ~> (k2 ~> (k3 ~> (k4 ~> (k5 ~> k6))))) Source #
type TyCon6 = (TyCon :: (k1 -> k2 -> k3 -> k4 -> k5 -> k6 -> k7) -> k1 ~> (k2 ~> (k3 ~> (k4 ~> (k5 ~> (k6 ~> k7)))))) Source #
type TyCon7 = (TyCon :: (k1 -> k2 -> k3 -> k4 -> k5 -> k6 -> k7 -> k8) -> k1 ~> (k2 ~> (k3 ~> (k4 ~> (k5 ~> (k6 ~> (k7 ~> k8))))))) Source #
type TyCon8 = (TyCon :: (k1 -> k2 -> k3 -> k4 -> k5 -> k6 -> k7 -> k8 -> k9) -> k1 ~> (k2 ~> (k3 ~> (k4 ~> (k5 ~> (k6 ~> (k7 ~> (k8 ~> k9)))))))) Source #
data family TyCon :: (k1 -> k2) -> unmatchable_fun Source #
Workhorse for the TyCon1
, etc., types. This can be used directly
in place of any of the TyConN
types, but it will work only with
monomorphic types. When GHC#14645 is fixed, this should fully supersede
the TyConN
types.
type family Apply (f :: k1 ~> k2) (x :: k1) :: k2 Source #
Type level function application
Instances
type Apply NotSym0 (l :: Bool) Source # | |
Defined in Data.Singletons.Prelude.Bool | |
type Apply DemoteSym0 (l :: Type) Source # | |
Defined in Data.Singletons | |
type Apply KnownNatSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply Log2Sym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply KnownSymbolSym0 (l :: Symbol) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply ShowCommaSpaceSym0 (l :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply ShowSpaceSym0 (l :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply ((&&@#@$$) l1 :: TyFun Bool Bool -> *) (l2 :: Bool) Source # | |
type Apply ((||@#@$$) l1 :: TyFun Bool Bool -> *) (l2 :: Bool) Source # | |
type Apply (ThenCmpSym1 l1 :: TyFun Ordering Ordering -> *) (l2 :: Ordering) Source # | |
Defined in Data.Singletons.Prelude.Ord | |
type Apply ((^@#@$$) l1 :: TyFun Nat Nat -> *) (l2 :: Nat) Source # | |
type Apply (DivSym1 l1 :: TyFun Nat Nat -> *) (l2 :: Nat) Source # | |
type Apply (ModSym1 l1 :: TyFun Nat Nat -> *) (l2 :: Nat) Source # | |
type Apply (QuotSym1 l1 :: TyFun Nat Nat -> *) (l2 :: Nat) Source # | |
type Apply (RemSym1 l1 :: TyFun Nat Nat -> *) (l2 :: Nat) Source # | |
type Apply (FromIntegerSym0 :: TyFun Nat k2 -> *) (l :: Nat) Source # | |
Defined in Data.Singletons.Prelude.Num | |
type Apply (ToEnumSym0 :: TyFun Nat k2 -> *) (l :: Nat) Source # | |
Defined in Data.Singletons.Prelude.Enum | |
type Apply ((<>@#@$$) l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) Source # | |
type Apply (ShowCharSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply (ShowStringSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply (FromStringSym0 :: TyFun Symbol k2 -> *) (l :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.IsString | |
type Apply (NegateSym0 :: TyFun a a -> *) (l :: a) Source # | |
Defined in Data.Singletons.Prelude.Num | |
type Apply (SignumSym0 :: TyFun a a -> *) (l :: a) Source # | |
Defined in Data.Singletons.Prelude.Num | |
type Apply (AbsSym0 :: TyFun a a -> *) (l :: a) Source # | |
type Apply (IdSym0 :: TyFun a a -> *) (l :: a) Source # | |
type Apply (Show_Sym0 :: TyFun a Symbol -> *) (l :: a) Source # | |
type Apply (FromEnumSym0 :: TyFun a Nat -> *) (l :: a) Source # | |
Defined in Data.Singletons.Prelude.Enum | |
type Apply (PredSym0 :: TyFun a a -> *) (l :: a) Source # | |
type Apply (SuccSym0 :: TyFun a a -> *) (l :: a) Source # | |
type Apply (AbsurdSym0 :: TyFun Void k2 -> *) (l :: Void) Source # | |
Defined in Data.Singletons.Prelude.Void | |
type Apply ((!!@#@$$) l1 :: TyFun Nat a -> *) (l2 :: Nat) Source # | |
type Apply ((!!@#@$$) l1 :: TyFun Nat a -> *) (l2 :: Nat) Source # | |
type Apply (ShowListSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply (ShowsSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) Source # | |
type Apply (ShowParenSym2 l1 l2 :: TyFun Symbol Symbol -> *) (l3 :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply ((==@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) Source # | |
type Apply ((/=@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) Source # | |
type Apply ((<=@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) Source # | |
type Apply (CompareSym1 l1 :: TyFun a Ordering -> *) (l2 :: a) Source # | |
Defined in Data.Singletons.Prelude.Ord | |
type Apply (MinSym1 l1 :: TyFun a a -> *) (l2 :: a) Source # | |
type Apply (MaxSym1 l1 :: TyFun a a -> *) (l2 :: a) Source # | |
type Apply ((>=@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) Source # | |
type Apply ((>@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) Source # | |
type Apply ((<@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) Source # | |
type Apply (ErrorSym0 :: TyFun k0 k2 -> *) (l :: k0) Source # | |
type Apply ((-@#@$$) l1 :: TyFun a a -> *) (l2 :: a) Source # | |
type Apply ((+@#@$$) l1 :: TyFun a a -> *) (l2 :: a) Source # | |
type Apply ((*@#@$$) l1 :: TyFun a a -> *) (l2 :: a) Source # | |
type Apply (SubtractSym1 l1 :: TyFun a a -> *) (l2 :: a) Source # | |
Defined in Data.Singletons.Prelude.Num | |
type Apply (AsTypeOfSym1 l1 :: TyFun a a -> *) (l2 :: a) Source # | |
Defined in Data.Singletons.Prelude.Base | |
type Apply (SameKindSym1 l1 :: TyFun k Constraint -> *) (l2 :: k) Source # | |
Defined in Data.Singletons | |
type Apply (Bool_Sym2 l1 l2 :: TyFun Bool a -> *) (l3 :: Bool) Source # | |
type Apply (ShowsPrecSym2 l1 l2 :: TyFun Symbol Symbol -> *) (l3 :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply (ShowListWithSym2 l1 l2 :: TyFun Symbol Symbol -> *) (l3 :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowListWithSym2 l1 l2 :: TyFun Symbol Symbol -> *) (l3 :: Symbol) = ShowListWith l1 l2 l3 | |
type Apply (SeqSym1 l1 :: TyFun b b -> *) (l2 :: b) Source # | |
type Apply (($!@#@$$) l1 :: TyFun a b -> *) (l2 :: a) Source # | |
type Apply (($@#@$$) l1 :: TyFun a b -> *) (l2 :: a) Source # | |
type Apply (ConstSym1 l1 :: TyFun b a -> *) (l2 :: b) Source # | |
type Apply (ApplySym1 l1 :: TyFun k1 k2 -> *) (l2 :: k1) Source # | |
type Apply ((@@@#@$$) l1 :: TyFun k1 k -> *) (l2 :: k1) Source # | |
type Apply (GenericIndexSym1 l1 :: TyFun i a -> *) (l2 :: i) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (UntilSym2 l1 l2 :: TyFun a a -> *) (l3 :: a) Source # | |
type Apply (TyCon f :: k1 ~> k5) (x :: k1) Source # | |
Defined in Data.Singletons.Internal | |
type Apply (ComparingSym2 l1 l2 :: TyFun b Ordering -> *) (l3 :: b) Source # | |
Defined in Data.Singletons.Prelude.Ord | |
type Apply (CurrySym2 l1 l2 :: TyFun b c -> *) (l3 :: b) Source # | |
type Apply (FlipSym2 l1 l2 :: TyFun a c -> *) (l3 :: a) Source # | |
type Apply (l1 .@#@$$$ l2 :: TyFun a c -> *) (l3 :: a) Source # | |
type Apply (OnSym3 l1 l2 l3 :: TyFun a c -> *) (l4 :: a) Source # | |
type Apply ((~>@#@$$) l1 :: TyFun Type * -> *) (l2 :: Type) Source # | |
type Apply (JustSym0 :: TyFun a (Maybe a) -> *) (l :: a) Source # | |
type Apply (KindOfSym0 :: TyFun k * -> *) (l :: k) Source # | |
Defined in Data.Singletons | |
type Apply (ReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (EnumFromToSym1 l1 :: TyFun a [a] -> *) (l2 :: a) Source # | |
Defined in Data.Singletons.Prelude.Enum | |
type Apply (UnfoldrSym1 l1 :: TyFun b [a] -> *) (l2 :: b) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (UnfoldrSym1 l1 :: TyFun a (NonEmpty b) -> *) (l2 :: a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (UnfoldSym1 l1 :: TyFun a (NonEmpty b) -> *) (l2 :: a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (EnumFromThenToSym2 l1 l2 :: TyFun a [a] -> *) (l3 :: a) Source # | |
Defined in Data.Singletons.Prelude.Enum | |
type Apply (GenericReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (&&@#@$) (l :: Bool) Source # | |
Defined in Data.Singletons.Prelude.Bool | |
type Apply (||@#@$) (l :: Bool) Source # | |
Defined in Data.Singletons.Prelude.Bool | |
type Apply ShowParenSym0 (l :: Bool) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply ThenCmpSym0 (l :: Ordering) Source # | |
Defined in Data.Singletons.Prelude.Ord | |
type Apply (~>@#@$) (l :: Type) Source # | |
Defined in Data.Singletons | |
type Apply (^@#@$) (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits.Internal | |
type Apply DivSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply ModSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply QuotSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply RemSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply QuotRemSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply DivModSym0 (l :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply ShowCharSym0 (l :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply ShowStringSym0 (l :: Symbol) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply (<>@#@$) (l :: Symbol) Source # | |
Defined in Data.Singletons.TypeLits.Internal | |
type Apply (DropSym0 :: TyFun Nat (TyFun [a6989586621679444977] [a6989586621679444977] -> Type) -> *) (l :: Nat) Source # | |
type Apply (TakeSym0 :: TyFun Nat (TyFun [a6989586621679444978] [a6989586621679444978] -> Type) -> *) (l :: Nat) Source # | |
type Apply (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679444976] ([a6989586621679444976], [a6989586621679444976]) -> Type) -> *) (l :: Nat) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679444962 [a6989586621679444962] -> Type) -> *) (l :: Nat) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ShowsPrecSym0 :: TyFun Nat (TyFun a6989586621679674878 (TyFun Symbol Symbol -> Type) -> Type) -> *) (l :: Nat) Source # | |
type Apply (TakeSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679770717) [a6989586621679770717] -> Type) -> *) (l :: Nat) Source # | |
type Apply (DropSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679770716) [a6989586621679770716] -> Type) -> *) (l :: Nat) Source # | |
type Apply (SplitAtSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679770715) ([a6989586621679770715], [a6989586621679770715]) -> Type) -> *) (l :: Nat) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (QuotRemSym1 l1 :: TyFun Nat (Nat, Nat) -> *) (l2 :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply (DivModSym1 l1 :: TyFun Nat (Nat, Nat) -> *) (l2 :: Nat) Source # | |
Defined in Data.Singletons.TypeLits | |
type Apply ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) (l :: a3530822107858468865) Source # | |
type Apply ((:|@#@$) :: TyFun a6989586621679066011 (TyFun [a6989586621679066011] (NonEmpty a6989586621679066011) -> Type) -> *) (l :: a6989586621679066011) Source # | |
type Apply (Bool_Sym0 :: TyFun a6989586621679291858 (TyFun a6989586621679291858 (TyFun Bool a6989586621679291858 -> Type) -> Type) -> *) (l :: a6989586621679291858) Source # | |
type Apply ((==@#@$) :: TyFun a6989586621679294390 (TyFun a6989586621679294390 Bool -> Type) -> *) (l :: a6989586621679294390) Source # | |
type Apply ((/=@#@$) :: TyFun a6989586621679294390 (TyFun a6989586621679294390 Bool -> Type) -> *) (l :: a6989586621679294390) Source # | |
type Apply ((<=@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply (CompareSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Ordering -> Type) -> *) (l :: a6989586621679305434) Source # | |
Defined in Data.Singletons.Prelude.Ord type Apply (CompareSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Ordering -> Type) -> *) (l :: a6989586621679305434) = CompareSym1 l | |
type Apply (MinSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 a6989586621679305434 -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply (MaxSym0 :: TyFun a6989586621679305434 (TyFun a6989586621679305434 a6989586621679305434 -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply ((>=@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply ((>@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply ((<@#@$) :: TyFun a6989586621679305434 (TyFun a6989586621679305434 Bool -> Type) -> *) (l :: a6989586621679305434) Source # | |
type Apply (FromMaybeSym0 :: TyFun a6989586621679406967 (TyFun (Maybe a6989586621679406967) a6989586621679406967 -> Type) -> *) (l :: a6989586621679406967) Source # | |
Defined in Data.Singletons.Prelude.Maybe type Apply (FromMaybeSym0 :: TyFun a6989586621679406967 (TyFun (Maybe a6989586621679406967) a6989586621679406967 -> Type) -> *) (l :: a6989586621679406967) = FromMaybeSym1 l | |
type Apply ((-@#@$) :: TyFun a6989586621679415070 (TyFun a6989586621679415070 a6989586621679415070 -> Type) -> *) (l :: a6989586621679415070) Source # | |
type Apply ((+@#@$) :: TyFun a6989586621679415070 (TyFun a6989586621679415070 a6989586621679415070 -> Type) -> *) (l :: a6989586621679415070) Source # | |
type Apply ((*@#@$) :: TyFun a6989586621679415070 (TyFun a6989586621679415070 a6989586621679415070 -> Type) -> *) (l :: a6989586621679415070) Source # | |
type Apply (SubtractSym0 :: TyFun a6989586621679417343 (TyFun a6989586621679417343 a6989586621679417343 -> Type) -> *) (l :: a6989586621679417343) Source # | |
Defined in Data.Singletons.Prelude.Num type Apply (SubtractSym0 :: TyFun a6989586621679417343 (TyFun a6989586621679417343 a6989586621679417343 -> Type) -> *) (l :: a6989586621679417343) = SubtractSym1 l | |
type Apply (AsTypeOfSym0 :: TyFun a6989586621679422434 (TyFun a6989586621679422434 a6989586621679422434 -> Type) -> *) (l :: a6989586621679422434) Source # | |
Defined in Data.Singletons.Prelude.Base type Apply (AsTypeOfSym0 :: TyFun a6989586621679422434 (TyFun a6989586621679422434 a6989586621679422434 -> Type) -> *) (l :: a6989586621679422434) = AsTypeOfSym1 l | |
type Apply (InsertSym0 :: TyFun a6989586621679444972 (TyFun [a6989586621679444972] [a6989586621679444972] -> Type) -> *) (l :: a6989586621679444972) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertSym0 :: TyFun a6989586621679444972 (TyFun [a6989586621679444972] [a6989586621679444972] -> Type) -> *) (l :: a6989586621679444972) = InsertSym1 l | |
type Apply (DeleteSym0 :: TyFun a6989586621679444999 (TyFun [a6989586621679444999] [a6989586621679444999] -> Type) -> *) (l :: a6989586621679444999) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteSym0 :: TyFun a6989586621679444999 (TyFun [a6989586621679444999] [a6989586621679444999] -> Type) -> *) (l :: a6989586621679444999) = DeleteSym1 l | |
type Apply (ElemIndicesSym0 :: TyFun a6989586621679444988 (TyFun [a6989586621679444988] [Nat] -> Type) -> *) (l :: a6989586621679444988) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndicesSym0 :: TyFun a6989586621679444988 (TyFun [a6989586621679444988] [Nat] -> Type) -> *) (l :: a6989586621679444988) = ElemIndicesSym1 l | |
type Apply (ElemIndexSym0 :: TyFun a6989586621679444989 (TyFun [a6989586621679444989] (Maybe Nat) -> Type) -> *) (l :: a6989586621679444989) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndexSym0 :: TyFun a6989586621679444989 (TyFun [a6989586621679444989] (Maybe Nat) -> Type) -> *) (l :: a6989586621679444989) = ElemIndexSym1 l | |
type Apply (NotElemSym0 :: TyFun a6989586621679445039 (TyFun [a6989586621679445039] Bool -> Type) -> *) (l :: a6989586621679445039) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (NotElemSym0 :: TyFun a6989586621679445039 (TyFun [a6989586621679445039] Bool -> Type) -> *) (l :: a6989586621679445039) = NotElemSym1 l | |
type Apply (ElemSym0 :: TyFun a6989586621679445040 (TyFun [a6989586621679445040] Bool -> Type) -> *) (l :: a6989586621679445040) Source # | |
type Apply (IntersperseSym0 :: TyFun a6989586621679445075 (TyFun [a6989586621679445075] [a6989586621679445075] -> Type) -> *) (l :: a6989586621679445075) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersperseSym0 :: TyFun a6989586621679445075 (TyFun [a6989586621679445075] [a6989586621679445075] -> Type) -> *) (l :: a6989586621679445075) = IntersperseSym1 l | |
type Apply (ShowsSym0 :: TyFun a6989586621679674863 (TyFun Symbol Symbol -> Type) -> *) (l :: a6989586621679674863) Source # | |
type Apply (IntersperseSym0 :: TyFun a6989586621679770719 (TyFun (NonEmpty a6989586621679770719) (NonEmpty a6989586621679770719) -> Type) -> *) (l :: a6989586621679770719) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IntersperseSym0 :: TyFun a6989586621679770719 (TyFun (NonEmpty a6989586621679770719) (NonEmpty a6989586621679770719) -> Type) -> *) (l :: a6989586621679770719) = IntersperseSym1 l | |
type Apply (InsertSym0 :: TyFun a6989586621679770726 (TyFun [a6989586621679770726] (NonEmpty a6989586621679770726) -> Type) -> *) (l :: a6989586621679770726) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (InsertSym0 :: TyFun a6989586621679770726 (TyFun [a6989586621679770726] (NonEmpty a6989586621679770726) -> Type) -> *) (l :: a6989586621679770726) = InsertSym1 l | |
type Apply ((<|@#@$) :: TyFun a6989586621679770737 (TyFun (NonEmpty a6989586621679770737) (NonEmpty a6989586621679770737) -> Type) -> *) (l :: a6989586621679770737) Source # | |
type Apply (ConsSym0 :: TyFun a6989586621679770736 (TyFun (NonEmpty a6989586621679770736) (NonEmpty a6989586621679770736) -> Type) -> *) (l :: a6989586621679770736) Source # | |
type Apply (EnumFromThenToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> Type) -> *) (l :: a6989586621679845761) Source # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromThenToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> Type) -> *) (l :: a6989586621679845761) = EnumFromThenToSym1 l | |
type Apply (EnumFromToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) (l :: a6989586621679845761) Source # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromToSym0 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) (l :: a6989586621679845761) = EnumFromToSym1 l | |
type Apply (SameKindSym0 :: TyFun k6989586621679024562 (TyFun k6989586621679024562 Constraint -> *) -> *) (l :: k6989586621679024562) Source # | |
Defined in Data.Singletons type Apply (SameKindSym0 :: TyFun k6989586621679024562 (TyFun k6989586621679024562 Constraint -> *) -> *) (l :: k6989586621679024562) = SameKindSym1 l | |
type Apply (LeftSym0 :: TyFun a (Either a b6989586621679081218) -> *) (l :: a) Source # | |
type Apply (RightSym0 :: TyFun b (Either a6989586621679081217 b) -> *) (l :: b) Source # | |
type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) Source # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) = (Tuple2Sym1 l :: TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) | |
type Apply (Bool_Sym1 l1 :: TyFun a6989586621679291858 (TyFun Bool a6989586621679291858 -> Type) -> *) (l2 :: a6989586621679291858) Source # | |
type Apply (Maybe_Sym0 :: TyFun b6989586621679405849 (TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> Type) -> *) (l :: b6989586621679405849) Source # | |
Defined in Data.Singletons.Prelude.Maybe type Apply (Maybe_Sym0 :: TyFun b6989586621679405849 (TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> Type) -> *) (l :: b6989586621679405849) = (Maybe_Sym1 l :: TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> *) | |
type Apply (SeqSym0 :: TyFun a6989586621679422428 (TyFun b6989586621679422429 b6989586621679422429 -> Type) -> *) (l :: a6989586621679422428) Source # | |
type Apply (ConstSym0 :: TyFun a6989586621679422441 (TyFun b6989586621679422442 a6989586621679422441 -> Type) -> *) (l :: a6989586621679422441) Source # | |
type Apply (LookupSym0 :: TyFun a6989586621679444968 (TyFun [(a6989586621679444968, b6989586621679444969)] (Maybe b6989586621679444969) -> Type) -> *) (l :: a6989586621679444968) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (InsertBySym1 l1 :: TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> *) (l2 :: a6989586621679444994) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym1 l1 :: TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> *) (l2 :: a6989586621679444994) = InsertBySym2 l1 l2 | |
type Apply (DeleteBySym1 l1 :: TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> *) (l2 :: a6989586621679444997) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym1 l1 :: TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> *) (l2 :: a6989586621679444997) = DeleteBySym2 l1 l2 | |
type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679674878 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679674878) Source # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679674878 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679674878) = ShowsPrecSym2 l1 l2 | |
type Apply ((&@#@$) :: TyFun a6989586621679761698 (TyFun (TyFun a6989586621679761698 b6989586621679761699 -> Type) b6989586621679761699 -> Type) -> *) (l :: a6989586621679761698) Source # | |
Defined in Data.Singletons.Prelude.Function | |
type Apply (EnumFromThenToSym1 l1 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) (l2 :: a6989586621679845761) Source # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromThenToSym1 l1 :: TyFun a6989586621679845761 (TyFun a6989586621679845761 [a6989586621679845761] -> Type) -> *) (l2 :: a6989586621679845761) = EnumFromThenToSym2 l1 l2 | |
type Apply (GenericReplicateSym0 :: TyFun i6989586621679924805 (TyFun a6989586621679924806 [a6989586621679924806] -> Type) -> *) (l :: i6989586621679924805) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericReplicateSym0 :: TyFun i6989586621679924805 (TyFun a6989586621679924806 [a6989586621679924806] -> Type) -> *) (l :: i6989586621679924805) = (GenericReplicateSym1 l :: TyFun a6989586621679924806 [a6989586621679924806] -> *) | |
type Apply (GenericSplitAtSym0 :: TyFun i6989586621679924809 (TyFun [a6989586621679924810] ([a6989586621679924810], [a6989586621679924810]) -> Type) -> *) (l :: i6989586621679924809) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericSplitAtSym0 :: TyFun i6989586621679924809 (TyFun [a6989586621679924810] ([a6989586621679924810], [a6989586621679924810]) -> Type) -> *) (l :: i6989586621679924809) = (GenericSplitAtSym1 l :: TyFun [a6989586621679924810] ([a6989586621679924810], [a6989586621679924810]) -> *) | |
type Apply (GenericDropSym0 :: TyFun i6989586621679924811 (TyFun [a6989586621679924812] [a6989586621679924812] -> Type) -> *) (l :: i6989586621679924811) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericDropSym0 :: TyFun i6989586621679924811 (TyFun [a6989586621679924812] [a6989586621679924812] -> Type) -> *) (l :: i6989586621679924811) = (GenericDropSym1 l :: TyFun [a6989586621679924812] [a6989586621679924812] -> *) | |
type Apply (GenericTakeSym0 :: TyFun i6989586621679924813 (TyFun [a6989586621679924814] [a6989586621679924814] -> Type) -> *) (l :: i6989586621679924813) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericTakeSym0 :: TyFun i6989586621679924813 (TyFun [a6989586621679924814] [a6989586621679924814] -> Type) -> *) (l :: i6989586621679924813) = (GenericTakeSym1 l :: TyFun [a6989586621679924814] [a6989586621679924814] -> *) | |
type Apply (Tuple2Sym1 l1 :: TyFun k1 (k2, k1) -> *) (l2 :: k1) Source # | |
Defined in Data.Singletons.Prelude.Instances | |
type Apply (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (l :: a3530822107858468865) Source # | |
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) -> *) | |
type Apply (FoldlSym1 l1 :: TyFun b6989586621679261435 (TyFun [a6989586621679261434] b6989586621679261435 -> Type) -> *) (l2 :: b6989586621679261435) Source # | |
type Apply (ComparingSym1 l1 :: TyFun b6989586621679305424 (TyFun b6989586621679305424 Ordering -> Type) -> *) (l2 :: b6989586621679305424) Source # | |
Defined in Data.Singletons.Prelude.Ord type Apply (ComparingSym1 l1 :: TyFun b6989586621679305424 (TyFun b6989586621679305424 Ordering -> Type) -> *) (l2 :: b6989586621679305424) = ComparingSym2 l1 l2 | |
type Apply (FoldrSym1 l1 :: TyFun b6989586621679422448 (TyFun [a6989586621679422447] b6989586621679422448 -> Type) -> *) (l2 :: b6989586621679422448) Source # | |
type Apply (ScanrSym1 l1 :: TyFun b6989586621679445056 (TyFun [a6989586621679445055] [b6989586621679445056] -> Type) -> *) (l2 :: b6989586621679445056) Source # | |
type Apply (ScanlSym1 l1 :: TyFun b6989586621679445058 (TyFun [a6989586621679445059] [b6989586621679445058] -> Type) -> *) (l2 :: b6989586621679445058) Source # | |
type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> *) (l2 :: b6989586621679445069) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> *) (l2 :: b6989586621679445069) = Foldl'Sym2 l1 l2 | |
type Apply (ScanlSym1 l1 :: TyFun b6989586621679770724 (TyFun [a6989586621679770725] (NonEmpty b6989586621679770724) -> Type) -> *) (l2 :: b6989586621679770724) Source # | |
type Apply (ScanrSym1 l1 :: TyFun b6989586621679770723 (TyFun [a6989586621679770722] (NonEmpty b6989586621679770723) -> Type) -> *) (l2 :: b6989586621679770723) Source # | |
type Apply (Tuple3Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (l2 :: b3530822107858468866) Source # | |
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) -> *) | |
type Apply (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) Source # | |
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) -> *) | |
type Apply (CurrySym1 l1 :: TyFun a6989586621679288097 (TyFun b6989586621679288098 c6989586621679288099 -> Type) -> *) (l2 :: a6989586621679288097) Source # | |
type Apply (FlipSym1 l1 :: TyFun b6989586621679422436 (TyFun a6989586621679422435 c6989586621679422437 -> Type) -> *) (l2 :: b6989586621679422436) Source # | |
type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> *) (l2 :: acc6989586621679445048) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> *) (l2 :: acc6989586621679445048) = MapAccumRSym2 l1 l2 | |
type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> *) (l2 :: acc6989586621679445051) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> *) (l2 :: acc6989586621679445051) = MapAccumLSym2 l1 l2 | |
type Apply (Tuple4Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) Source # | |
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) -> *) | |
type Apply (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) Source # | |
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) -> *) | |
type Apply (OnSym2 l1 l2 :: TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> *) (l3 :: a6989586621679761702) Source # | |
type Apply (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (l3 :: c3530822107858468867) Source # | |
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) -> *) | |
type Apply (Tuple5Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (l4 :: d3530822107858468868) Source # | |
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) -> *) | |
type Apply (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (l5 :: e3530822107858468869) Source # | |
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) -> *) | |
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) Source # | |
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) -> *) | |
type Apply (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (l5 :: e3530822107858468869) Source # | |
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) -> *) | |
type Apply (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (l6 :: f3530822107858468870) Source # | |
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) -> *) | |
type Apply (Tuple3Sym2 l1 l2 :: TyFun k3 (k2, k1, k3) -> *) (l3 :: k3) Source # | |
Defined in Data.Singletons.Prelude.Instances | |
type Apply (Tuple4Sym3 l1 l2 l3 :: TyFun k4 (k2, k1, k3, k4) -> *) (l4 :: k4) Source # | |
Defined in Data.Singletons.Prelude.Instances | |
type Apply (Tuple5Sym4 l1 l2 l3 l4 :: TyFun k5 (k2, k1, k3, k4, k5) -> *) (l5 :: k5) Source # | |
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 Apply (Tuple6Sym5 l1 l2 l3 l4 l5 :: TyFun k6 (k2, k1, k3, k4, k5, k6) -> *) (l6 :: k6) Source # | |
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 Apply (Tuple7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun k7 (k2, k1, k3, k4, k5, k6, k7) -> *) (l7 :: k7) Source # | |
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 Apply AndSym0 (l :: [Bool]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply OrSym0 (l :: [Bool]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply UnlinesSym0 (l :: [Symbol]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply UnwordsSym0 (l :: [Symbol]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply XorSym0 (l :: NonEmpty Bool) Source # | |
type Apply (LengthSym0 :: TyFun [a] Nat -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ProductSym0 :: TyFun [a] a -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (SumSym0 :: TyFun [a] a -> *) (l :: [a]) Source # | |
type Apply (MaximumSym0 :: TyFun [a] a -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (MinimumSym0 :: TyFun [a] a -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (NullSym0 :: TyFun [a] Bool -> *) (l :: [a]) Source # | |
type Apply (LastSym0 :: TyFun [a] a -> *) (l :: [a]) Source # | |
type Apply (HeadSym0 :: TyFun [a] a -> *) (l :: [a]) Source # | |
type Apply (FromJustSym0 :: TyFun (Maybe a) a -> *) (l :: Maybe a) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (IsNothingSym0 :: TyFun (Maybe a) Bool -> *) (l :: Maybe a) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (IsJustSym0 :: TyFun (Maybe a) Bool -> *) (l :: Maybe a) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (LastSym0 :: TyFun (NonEmpty a) a -> *) (l :: NonEmpty a) Source # | |
type Apply (HeadSym0 :: TyFun (NonEmpty a) a -> *) (l :: NonEmpty a) Source # | |
type Apply (LengthSym0 :: TyFun (NonEmpty a) Nat -> *) (l :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GenericLengthSym0 :: TyFun [a] k2 -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (NotElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # | |
type Apply (IsPrefixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (AnySym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # | |
type Apply (IsInfixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (AllSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # | |
type Apply (Foldr1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Foldl1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (MaximumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (MinimumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Foldl1'Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (IsSuffixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FromMaybeSym1 l1 :: TyFun (Maybe a) a -> *) (l2 :: Maybe a) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (IsPrefixOfSym1 l1 :: TyFun (NonEmpty a) Bool -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IsPrefixOfSym1 l1 :: TyFun (NonEmpty a) Bool -> *) (l2 :: NonEmpty a) = IsPrefixOf l1 l2 | |
type Apply (FoldlSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) Source # | |
type Apply (FoldrSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) Source # | |
type Apply (Foldl'Sym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Maybe_Sym2 l1 l2 :: TyFun (Maybe a) b -> *) (l3 :: Maybe a) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (ConcatSym0 :: TyFun [[a]] [a] -> *) (l :: [[a]]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (TransposeSym0 :: TyFun [[a]] [[a]] -> *) (l :: [[a]]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (CatMaybesSym0 :: TyFun [Maybe a] [a] -> *) (l :: [Maybe a]) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (ListToMaybeSym0 :: TyFun [a] (Maybe a) -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (GroupSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # | |
type Apply (SortSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # | |
type Apply (NubSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # | |
type Apply (TailsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # | |
type Apply (InitsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # | |
type Apply (PermutationsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (SubsequencesSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ReverseSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (InitSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # | |
type Apply (TailSym0 :: TyFun [a] [a] -> *) (l :: [a]) Source # | |
type Apply (GroupSym0 :: TyFun [a] [NonEmpty a] -> *) (l :: [a]) Source # | |
type Apply (FromListSym0 :: TyFun [a] (NonEmpty a) -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (InitsSym0 :: TyFun [a] (NonEmpty [a]) -> *) (l :: [a]) Source # | |
type Apply (TailsSym0 :: TyFun [a] (NonEmpty [a]) -> *) (l :: [a]) Source # | |
type Apply (NonEmpty_Sym0 :: TyFun [a] (Maybe (NonEmpty a)) -> *) (l :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (MaybeToListSym0 :: TyFun (Maybe a) [a] -> *) (l :: Maybe a) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (NubSym0 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l :: NonEmpty a) Source # | |
type Apply (Group1Sym0 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (ToListSym0 :: TyFun (NonEmpty a) [a] -> *) (l :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (ReverseSym0 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (SortSym0 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l :: NonEmpty a) Source # | |
type Apply (InitSym0 :: TyFun (NonEmpty a) [a] -> *) (l :: NonEmpty a) Source # | |
type Apply (TailSym0 :: TyFun (NonEmpty a) [a] -> *) (l :: NonEmpty a) Source # | |
type Apply (TransposeSym0 :: TyFun (NonEmpty (NonEmpty a)) (NonEmpty (NonEmpty a)) -> *) (l :: NonEmpty (NonEmpty a)) Source # | |
type Apply (IntercalateSym1 l1 :: TyFun [[a]] [a] -> *) (l2 :: [[a]]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (RightsSym0 :: TyFun [Either a b] [b] -> *) (l :: [Either a b]) Source # | |
Defined in Data.Singletons.Prelude.Either | |
type Apply (LeftsSym0 :: TyFun [Either a b] [a] -> *) (l :: [Either a b]) Source # | |
type Apply ((:@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.Instances | |
type Apply ((:|@#@$$) l1 :: TyFun [a] (NonEmpty a) -> *) (l2 :: [a]) Source # | |
type Apply ((++@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
type Apply (NubBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
type Apply (DropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
type Apply (TakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
type Apply (GroupBySym1 l1 :: TyFun [a] [[a]] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (DropWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (TakeWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FilterSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FindSym1 l1 :: TyFun [a] (Maybe a) -> *) (l2 :: [a]) Source # | |
type Apply (InsertSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (SortBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (UnionSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
type Apply (DeleteSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply ((\\@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
type Apply (FindIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ElemIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FindIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ElemIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Scanr1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Scanl1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (IntersectSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (IntersperseSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (DropWhileEndSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (GroupBySym1 l1 :: TyFun [a] [NonEmpty a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (InsertSym1 l1 :: TyFun [a] (NonEmpty a) -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (StripPrefixSym1 l1 :: TyFun [a] (Maybe [a]) -> *) (l2 :: [a]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (NubBySym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) Source # | |
type Apply (GroupBy1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (IntersperseSym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IntersperseSym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) = Intersperse l1 l2 | |
type Apply (TakeSym1 l1 :: TyFun (NonEmpty a) [a] -> *) (l2 :: NonEmpty a) Source # | |
type Apply (DropSym1 l1 :: TyFun (NonEmpty a) [a] -> *) (l2 :: NonEmpty a) Source # | |
type Apply (TakeWhileSym1 l1 :: TyFun (NonEmpty a) [a] -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (DropWhileSym1 l1 :: TyFun (NonEmpty a) [a] -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (FilterSym1 l1 :: TyFun (NonEmpty a) [a] -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (SortBySym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (Scanl1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (Scanr1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply ((<|@#@$$) l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) Source # | |
type Apply (ConsSym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) Source # | |
type Apply (LookupSym1 l1 :: TyFun [(a, b)] (Maybe b) -> *) (l2 :: [(a, b)]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (MapMaybeSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (MapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) Source # | |
type Apply (InsertBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (DeleteBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (DeleteFirstsBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (UnionBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ZipSym1 l1 :: TyFun [b] [(a, b)] -> *) (l2 :: [b]) Source # | |
type Apply (IntersectBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ConcatMapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (GroupWithSym1 l1 :: TyFun [a] [NonEmpty a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupAllWithSym1 l1 :: TyFun [a] [NonEmpty a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GenericDropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (GenericTakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipSym1 l1 :: TyFun (NonEmpty b) (NonEmpty (a, b)) -> *) (l2 :: NonEmpty b) Source # | |
type Apply (GroupWith1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (GroupWith1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l2 :: NonEmpty a) = GroupWith1 l1 l2 | |
type Apply (MapSym1 l1 :: TyFun (NonEmpty a) (NonEmpty b) -> *) (l2 :: NonEmpty a) Source # | |
type Apply (SortWithSym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupAllWith1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (GroupAllWith1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l2 :: NonEmpty a) = GroupAllWith1 l1 l2 | |
type Apply (ScanrSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) Source # | |
type Apply (ScanlSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) Source # | |
type Apply (ScanlSym2 l1 l2 :: TyFun [a] (NonEmpty b) -> *) (l3 :: [a]) Source # | |
type Apply (ScanrSym2 l1 l2 :: TyFun [a] (NonEmpty b) -> *) (l3 :: [a]) Source # | |
type Apply (ZipWithSym2 l1 l2 :: TyFun [b] [c] -> *) (l3 :: [b]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Zip3Sym2 l1 l2 :: TyFun [c] [(a, b, c)] -> *) (l3 :: [c]) Source # | |
type Apply (ZipWithSym2 l1 l2 :: TyFun (NonEmpty b) (NonEmpty c) -> *) (l3 :: NonEmpty b) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (ZipWith3Sym3 l1 l2 l3 :: TyFun [c] [d] -> *) (l4 :: [c]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Zip4Sym3 l1 l2 l3 :: TyFun [d] [(a, b, c, d)] -> *) (l4 :: [d]) Source # | |
type Apply (ZipWith4Sym4 l1 l2 l3 l4 :: TyFun [d] [e] -> *) (l5 :: [d]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e] [(a, b, c, d, e)] -> *) (l5 :: [e]) Source # | |
type Apply (ZipWith5Sym5 l1 l2 l3 l4 l5 :: TyFun [e] [f] -> *) (l6 :: [e]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym5 l1 l2 l3 l4 l5 :: TyFun [e] [f] -> *) (l6 :: [e]) = ZipWith5 l1 l2 l3 l4 l5 l6 | |
type Apply (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f] [(a, b, c, d, e, f)] -> *) (l6 :: [f]) Source # | |
type Apply (ZipWith6Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f] [g] -> *) (l7 :: [f]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f] [g] -> *) (l7 :: [f]) = ZipWith6 l1 l2 l3 l4 l5 l6 l7 | |
type Apply (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g] [(a, b, c, d, e, f, g)] -> *) (l7 :: [g]) Source # | |
type Apply (ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 :: TyFun [g] [h] -> *) (l8 :: [g]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 :: TyFun [g] [h] -> *) (l8 :: [g]) = ZipWith7 l1 l2 l3 l4 l5 l6 l7 l8 | |
type Apply ((++@#@$) :: TyFun [a6989586621679422444] (TyFun [a6989586621679422444] [a6989586621679422444] -> Type) -> *) (l :: [a6989586621679422444]) Source # | |
type Apply ((!!@#@$) :: TyFun [a6989586621679444960] (TyFun Nat a6989586621679444960 -> Type) -> *) (l :: [a6989586621679444960]) Source # | |
type Apply (UnionSym0 :: TyFun [a6989586621679444955] (TyFun [a6989586621679444955] [a6989586621679444955] -> Type) -> *) (l :: [a6989586621679444955]) Source # | |
type Apply ((\\@#@$) :: TyFun [a6989586621679444998] (TyFun [a6989586621679444998] [a6989586621679444998] -> Type) -> *) (l :: [a6989586621679444998]) Source # | |
type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679445043] (TyFun [a6989586621679445043] Bool -> Type) -> *) (l :: [a6989586621679445043]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679445043] (TyFun [a6989586621679445043] Bool -> Type) -> *) (l :: [a6989586621679445043]) = IsPrefixOfSym1 l | |
type Apply (IsInfixOfSym0 :: TyFun [a6989586621679445041] (TyFun [a6989586621679445041] Bool -> Type) -> *) (l :: [a6989586621679445041]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IsInfixOfSym0 :: TyFun [a6989586621679445041] (TyFun [a6989586621679445041] Bool -> Type) -> *) (l :: [a6989586621679445041]) = IsInfixOfSym1 l | |
type Apply (IntersectSym0 :: TyFun [a6989586621679444985] (TyFun [a6989586621679444985] [a6989586621679444985] -> Type) -> *) (l :: [a6989586621679444985]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectSym0 :: TyFun [a6989586621679444985] (TyFun [a6989586621679444985] [a6989586621679444985] -> Type) -> *) (l :: [a6989586621679444985]) = IntersectSym1 l | |
type Apply (IntercalateSym0 :: TyFun [a6989586621679445074] (TyFun [[a6989586621679445074]] [a6989586621679445074] -> Type) -> *) (l :: [a6989586621679445074]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntercalateSym0 :: TyFun [a6989586621679445074] (TyFun [[a6989586621679445074]] [a6989586621679445074] -> Type) -> *) (l :: [a6989586621679445074]) = IntercalateSym1 l | |
type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679445042] (TyFun [a6989586621679445042] Bool -> Type) -> *) (l :: [a6989586621679445042]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679445042] (TyFun [a6989586621679445042] Bool -> Type) -> *) (l :: [a6989586621679445042]) = IsSuffixOfSym1 l | |
type Apply (ShowListSym0 :: TyFun [a6989586621679674878] (TyFun Symbol Symbol -> Type) -> *) (l :: [a6989586621679674878]) Source # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowListSym0 :: TyFun [a6989586621679674878] (TyFun Symbol Symbol -> Type) -> *) (l :: [a6989586621679674878]) = ShowListSym1 l | |
type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679770696] (TyFun (NonEmpty a6989586621679770696) Bool -> Type) -> *) (l :: [a6989586621679770696]) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679770696] (TyFun (NonEmpty a6989586621679770696) Bool -> Type) -> *) (l :: [a6989586621679770696]) = IsPrefixOfSym1 l | |
type Apply (StripPrefixSym0 :: TyFun [a6989586621679924863] (TyFun [a6989586621679924863] (Maybe [a6989586621679924863]) -> Type) -> *) (l :: [a6989586621679924863]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (StripPrefixSym0 :: TyFun [a6989586621679924863] (TyFun [a6989586621679924863] (Maybe [a6989586621679924863]) -> Type) -> *) (l :: [a6989586621679924863]) = StripPrefixSym1 l | |
type Apply ((!!@#@$) :: TyFun (NonEmpty a6989586621679770695) (TyFun Nat a6989586621679770695 -> Type) -> *) (l :: NonEmpty a6989586621679770695) Source # | |
type Apply (UnconsSym0 :: TyFun (NonEmpty a) (a, Maybe (NonEmpty a)) -> *) (l :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (UnzipSym0 :: TyFun [(a, b)] ([a], [b]) -> *) (l :: [(a, b)]) Source # | |
type Apply (PartitionSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (SplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (BreakSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # | |
type Apply (SpanSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # | |
type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> *) (l2 :: [a6989586621679444996]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> *) (l2 :: [a6989586621679444996]) = DeleteFirstsBySym2 l1 l2 | |
type Apply (UnionBySym1 l1 :: TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> *) (l2 :: [a6989586621679444956]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym1 l1 :: TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> *) (l2 :: [a6989586621679444956]) = UnionBySym2 l1 l2 | |
type Apply (ZipSym0 :: TyFun [a6989586621679445037] (TyFun [b6989586621679445038] [(a6989586621679445037, b6989586621679445038)] -> Type) -> *) (l :: [a6989586621679445037]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> *) (l2 :: [a6989586621679444984]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> *) (l2 :: [a6989586621679444984]) = IntersectBySym2 l1 l2 | |
type Apply (ShowListWithSym1 l1 :: TyFun [a6989586621679674862] (TyFun Symbol Symbol -> Type) -> *) (l2 :: [a6989586621679674862]) Source # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowListWithSym1 l1 :: TyFun [a6989586621679674862] (TyFun Symbol Symbol -> Type) -> *) (l2 :: [a6989586621679674862]) = ShowListWithSym2 l1 l2 | |
type Apply (GenericIndexSym0 :: TyFun [a6989586621679924808] (TyFun i6989586621679924807 a6989586621679924808 -> Type) -> *) (l :: [a6989586621679924808]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericIndexSym0 :: TyFun [a6989586621679924808] (TyFun i6989586621679924807 a6989586621679924808 -> Type) -> *) (l :: [a6989586621679924808]) = (GenericIndexSym1 l :: TyFun i6989586621679924807 a6989586621679924808 -> *) | |
type Apply (UnzipSym0 :: TyFun (NonEmpty (a, b)) (NonEmpty a, NonEmpty b) -> *) (l :: NonEmpty (a, b)) Source # | |
type Apply (ZipSym0 :: TyFun (NonEmpty a6989586621679770693) (TyFun (NonEmpty b6989586621679770694) (NonEmpty (a6989586621679770693, b6989586621679770694)) -> Type) -> *) (l :: NonEmpty a6989586621679770693) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ZipSym0 :: TyFun (NonEmpty a6989586621679770693) (TyFun (NonEmpty b6989586621679770694) (NonEmpty (a6989586621679770693, b6989586621679770694)) -> Type) -> *) (l :: NonEmpty a6989586621679770693) = (ZipSym1 l :: TyFun (NonEmpty b6989586621679770694) (NonEmpty (a6989586621679770693, b6989586621679770694)) -> *) | |
type Apply (SplitAtSym1 l1 :: TyFun (NonEmpty a) ([a], [a]) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (SpanSym1 l1 :: TyFun (NonEmpty a) ([a], [a]) -> *) (l2 :: NonEmpty a) Source # | |
type Apply (BreakSym1 l1 :: TyFun (NonEmpty a) ([a], [a]) -> *) (l2 :: NonEmpty a) Source # | |
type Apply (PartitionSym1 l1 :: TyFun (NonEmpty a) ([a], [a]) -> *) (l2 :: NonEmpty a) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (Zip3Sym0 :: TyFun [a6989586621679445034] (TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> Type) -> *) (l :: [a6989586621679445034]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym0 :: TyFun [a6989586621679445034] (TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> Type) -> *) (l :: [a6989586621679445034]) = (Zip3Sym1 l :: TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> *) | |
type Apply (GenericSplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> *) (l2 :: [a6989586621679445031]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> *) (l2 :: [a6989586621679445031]) = ZipWithSym2 l1 l2 | |
type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> *) (l2 :: [b6989586621679445035]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679445035] (TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> Type) -> *) (l2 :: [b6989586621679445035]) = (Zip3Sym2 l1 l2 :: TyFun [c6989586621679445036] [(a6989586621679445034, b6989586621679445035, c6989586621679445036)] -> *) | |
type Apply (Zip4Sym0 :: TyFun [a6989586621679924859] (TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924859]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym0 :: TyFun [a6989586621679924859] (TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924859]) = (Zip4Sym1 l :: TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> *) | |
type Apply (ZipWithSym1 l1 :: TyFun (NonEmpty a6989586621679770690) (TyFun (NonEmpty b6989586621679770691) (NonEmpty c6989586621679770692) -> Type) -> *) (l2 :: NonEmpty a6989586621679770690) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> *) (l2 :: [a6989586621679445027]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> *) (l2 :: [a6989586621679445027]) = ZipWith3Sym2 l1 l2 | |
type Apply (MapAccumRSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (MapAccumLSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Zip5Sym0 :: TyFun [a6989586621679924854] (TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924854]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym0 :: TyFun [a6989586621679924854] (TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924854]) = (Zip5Sym1 l :: TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> *) (l2 :: [b6989586621679924860]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679924860] (TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> Type) -> *) (l2 :: [b6989586621679924860]) = (Zip4Sym2 l1 l2 :: TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> *) | |
type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> *) (l3 :: [b6989586621679445028]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> *) (l3 :: [b6989586621679445028]) = ZipWith3Sym3 l1 l2 l3 | |
type Apply (ZipWith4Sym1 l1 :: TyFun [a6989586621679924836] (TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924836]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (Zip6Sym0 :: TyFun [a6989586621679924848] (TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924848]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym0 :: TyFun [a6989586621679924848] (TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924848]) = (Zip6Sym1 l :: TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924855]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679924855] (TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924855]) = (Zip5Sym2 l1 l2 :: TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> *) | |
type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> *) (l3 :: [c6989586621679924861]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679924861] (TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> Type) -> *) (l3 :: [c6989586621679924861]) = (Zip4Sym3 l1 l2 l3 :: TyFun [d6989586621679924862] [(a6989586621679924859, b6989586621679924860, c6989586621679924861, d6989586621679924862)] -> *) | |
type Apply (ZipWith5Sym1 l1 :: TyFun [a6989586621679924830] (TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924830]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> *) (l3 :: [b6989586621679924837]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> *) (l3 :: [b6989586621679924837]) = ZipWith4Sym3 l1 l2 l3 | |
type Apply (Zip7Sym0 :: TyFun [a6989586621679924841] (TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924841]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym0 :: TyFun [a6989586621679924841] (TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679924841]) = (Zip7Sym1 l :: TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924849]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679924849] (TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924849]) = (Zip6Sym2 l1 l2 :: TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> *) (l3 :: [c6989586621679924856]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679924856] (TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> Type) -> *) (l3 :: [c6989586621679924856]) = (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> *) | |
type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924823]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924823]) = ZipWith6Sym2 l1 l2 | |
type Apply (ZipWith5Sym2 l1 l2 :: TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924831]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> *) (l4 :: [c6989586621679924838]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> *) (l4 :: [c6989586621679924838]) = ZipWith4Sym4 l1 l2 l3 l4 | |
type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924842]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679924842] (TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679924842]) = (Zip7Sym2 l1 l2 :: TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679924850]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679924850] (TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679924850]) = (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> *) | |
type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> *) (l4 :: [d6989586621679924857]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679924857] (TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> Type) -> *) (l4 :: [d6989586621679924857]) = (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924858] [(a6989586621679924854, b6989586621679924855, c6989586621679924856, d6989586621679924857, e6989586621679924858)] -> *) | |
type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924815]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679924815]) = ZipWith7Sym2 l1 l2 | |
type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924824]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924824]) = ZipWith6Sym3 l1 l2 l3 | |
type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> *) (l4 :: [c6989586621679924832]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> *) (l4 :: [c6989586621679924832]) = ZipWith5Sym4 l1 l2 l3 l4 | |
type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679924843]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679924843] (TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679924843]) = (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> *) | |
type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> *) (l4 :: [d6989586621679924851]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679924851] (TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> Type) -> *) (l4 :: [d6989586621679924851]) = (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> *) | |
type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924816]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679924816]) = ZipWith7Sym3 l1 l2 l3 | |
type Apply (ZipWith6Sym3 l1 l2 l3 :: TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679924825]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> *) (l5 :: [d6989586621679924833]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> *) (l5 :: [d6989586621679924833]) = ZipWith5Sym5 l1 l2 l3 l4 l5 | |
type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679924844]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679924844] (TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679924844]) = (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> *) | |
type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> *) (l5 :: [e6989586621679924852]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924852] (TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> Type) -> *) (l5 :: [e6989586621679924852]) = (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679924853] [(a6989586621679924848, b6989586621679924849, c6989586621679924850, d6989586621679924851, e6989586621679924852, f6989586621679924853)] -> *) | |
type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679924817]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679924817]) = ZipWith7Sym4 l1 l2 l3 l4 | |
type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> *) (l5 :: [d6989586621679924826]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> *) (l5 :: [d6989586621679924826]) = ZipWith6Sym5 l1 l2 l3 l4 l5 | |
type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> *) (l5 :: [e6989586621679924845]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679924845] (TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> Type) -> *) (l5 :: [e6989586621679924845]) = (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> *) | |
type Apply (ZipWith7Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> *) (l5 :: [d6989586621679924818]) Source # | |
Defined in Data.Promotion.Prelude.List | |
type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> *) (l6 :: [e6989586621679924827]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> *) (l6 :: [e6989586621679924827]) = ZipWith6Sym6 l1 l2 l3 l4 l5 l6 | |
type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> *) (l6 :: [f6989586621679924846]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679924846] (TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> Type) -> *) (l6 :: [f6989586621679924846]) = (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g6989586621679924847] [(a6989586621679924841, b6989586621679924842, c6989586621679924843, d6989586621679924844, e6989586621679924845, f6989586621679924846, g6989586621679924847)] -> *) | |
type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> *) (l6 :: [e6989586621679924819]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> *) (l6 :: [e6989586621679924819]) = ZipWith7Sym6 l1 l2 l3 l4 l5 l6 | |
type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> *) (l7 :: [f6989586621679924820]) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> *) (l7 :: [f6989586621679924820]) = ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 | |
type Apply (Unzip3Sym0 :: TyFun [(a, b, c)] ([a], [b], [c]) -> *) (l :: [(a, b, c)]) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) = Unzip4 l | |
type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) = Unzip5 l | |
type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) = Unzip6 l | |
type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) = Unzip7 l | |
type Apply (IsRightSym0 :: TyFun (Either a b) Bool -> *) (l :: Either a b) Source # | |
Defined in Data.Singletons.Prelude.Either | |
type Apply (IsLeftSym0 :: TyFun (Either a b) Bool -> *) (l :: Either a b) Source # | |
Defined in Data.Singletons.Prelude.Either | |
type Apply (SndSym0 :: TyFun (a, b) b -> *) (l :: (a, b)) Source # | |
type Apply (FstSym0 :: TyFun (a, b) a -> *) (l :: (a, b)) Source # | |
type Apply ((&@#@$$) l1 :: TyFun (TyFun a b -> Type) b -> *) (l2 :: TyFun a b -> Type) Source # | |
type Apply (UncurrySym1 l1 :: TyFun (a, b) c -> *) (l2 :: (a, b)) Source # | |
Defined in Data.Singletons.Prelude.Tuple | |
type Apply (Either_Sym2 l1 l2 :: TyFun (Either a b) c -> *) (l3 :: Either a b) Source # | |
Defined in Data.Singletons.Prelude.Either | |
type Apply (ShowParenSym1 l1 :: TyFun (TyFun Symbol Symbol -> Type) (TyFun Symbol Symbol -> Type) -> *) (l2 :: TyFun Symbol Symbol -> Type) Source # | |
type Apply (NubBySym0 :: TyFun (TyFun a6989586621679444958 (TyFun a6989586621679444958 Bool -> Type) -> Type) (TyFun [a6989586621679444958] [a6989586621679444958] -> Type) -> *) (l :: TyFun a6989586621679444958 (TyFun a6989586621679444958 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679444967 Bool -> Type) (TyFun [a6989586621679444967] ([a6989586621679444967], [a6989586621679444967]) -> Type) -> *) (l :: TyFun a6989586621679444967 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (BreakSym0 :: TyFun (TyFun a6989586621679444979 Bool -> Type) (TyFun [a6989586621679444979] ([a6989586621679444979], [a6989586621679444979]) -> Type) -> *) (l :: TyFun a6989586621679444979 Bool -> Type) Source # | |
type Apply (SpanSym0 :: TyFun (TyFun a6989586621679444980 Bool -> Type) (TyFun [a6989586621679444980] ([a6989586621679444980], [a6989586621679444980]) -> Type) -> *) (l :: TyFun a6989586621679444980 Bool -> Type) Source # | |
type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679444970 (TyFun a6989586621679444970 Bool -> Type) -> Type) (TyFun [a6989586621679444970] [[a6989586621679444970]] -> Type) -> *) (l :: TyFun a6989586621679444970 (TyFun a6989586621679444970 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679444982 Bool -> Type) (TyFun [a6989586621679444982] [a6989586621679444982] -> Type) -> *) (l :: TyFun a6989586621679444982 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679444983 Bool -> Type) (TyFun [a6989586621679444983] [a6989586621679444983] -> Type) -> *) (l :: TyFun a6989586621679444983 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FilterSym0 :: TyFun (TyFun a6989586621679444991 Bool -> Type) (TyFun [a6989586621679444991] [a6989586621679444991] -> Type) -> *) (l :: TyFun a6989586621679444991 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FindSym0 :: TyFun (TyFun a6989586621679444990 Bool -> Type) (TyFun [a6989586621679444990] (Maybe a6989586621679444990) -> Type) -> *) (l :: TyFun a6989586621679444990 Bool -> Type) Source # | |
type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) (TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) (TyFun a6989586621679444994 (TyFun [a6989586621679444994] [a6989586621679444994] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444994 (TyFun a6989586621679444994 Ordering -> Type) -> Type) = InsertBySym1 l | |
type Apply (SortBySym0 :: TyFun (TyFun a6989586621679444995 (TyFun a6989586621679444995 Ordering -> Type) -> Type) (TyFun [a6989586621679444995] [a6989586621679444995] -> Type) -> *) (l :: TyFun a6989586621679444995 (TyFun a6989586621679444995 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) (TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) (TyFun a6989586621679444997 (TyFun [a6989586621679444997] [a6989586621679444997] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444997 (TyFun a6989586621679444997 Bool -> Type) -> Type) = DeleteBySym1 l | |
type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) (TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) (TyFun [a6989586621679444996] (TyFun [a6989586621679444996] [a6989586621679444996] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444996 (TyFun a6989586621679444996 Bool -> Type) -> Type) = DeleteFirstsBySym1 l | |
type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) (TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) (TyFun [a6989586621679444956] (TyFun [a6989586621679444956] [a6989586621679444956] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444956 (TyFun a6989586621679444956 Bool -> Type) -> Type) = UnionBySym1 l | |
type Apply (FindIndicesSym0 :: TyFun (TyFun a6989586621679444986 Bool -> Type) (TyFun [a6989586621679444986] [Nat] -> Type) -> *) (l :: TyFun a6989586621679444986 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (FindIndexSym0 :: TyFun (TyFun a6989586621679444987 Bool -> Type) (TyFun [a6989586621679444987] (Maybe Nat) -> Type) -> *) (l :: TyFun a6989586621679444987 Bool -> Type) Source # | |
type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) (TyFun [a6989586621679445054] [a6989586621679445054] -> Type) -> *) (l :: TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) (TyFun [a6989586621679445054] [a6989586621679445054] -> Type) -> *) (l :: TyFun a6989586621679445054 (TyFun a6989586621679445054 a6989586621679445054 -> Type) -> Type) = Scanr1Sym1 l | |
type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) (TyFun [a6989586621679445057] [a6989586621679445057] -> Type) -> *) (l :: TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) (TyFun [a6989586621679445057] [a6989586621679445057] -> Type) -> *) (l :: TyFun a6989586621679445057 (TyFun a6989586621679445057 a6989586621679445057 -> Type) -> Type) = Scanl1Sym1 l | |
type Apply (AnySym0 :: TyFun (TyFun a6989586621679445060 Bool -> Type) (TyFun [a6989586621679445060] Bool -> Type) -> *) (l :: TyFun a6989586621679445060 Bool -> Type) Source # | |
type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) (TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) (TyFun [a6989586621679444984] (TyFun [a6989586621679444984] [a6989586621679444984] -> Type) -> Type) -> *) (l :: TyFun a6989586621679444984 (TyFun a6989586621679444984 Bool -> Type) -> Type) = IntersectBySym1 l | |
type Apply (AllSym0 :: TyFun (TyFun a6989586621679445061 Bool -> Type) (TyFun [a6989586621679445061] Bool -> Type) -> *) (l :: TyFun a6989586621679445061 Bool -> Type) Source # | |
type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) (TyFun [a6989586621679445065] a6989586621679445065 -> Type) -> *) (l :: TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) (TyFun [a6989586621679445065] a6989586621679445065 -> Type) -> *) (l :: TyFun a6989586621679445065 (TyFun a6989586621679445065 a6989586621679445065 -> Type) -> Type) = Foldr1Sym1 l | |
type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) (TyFun [a6989586621679445067] a6989586621679445067 -> Type) -> *) (l :: TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) (TyFun [a6989586621679445067] a6989586621679445067 -> Type) -> *) (l :: TyFun a6989586621679445067 (TyFun a6989586621679445067 a6989586621679445067 -> Type) -> Type) = Foldl1Sym1 l | |
type Apply (MaximumBySym0 :: TyFun (TyFun a6989586621679444993 (TyFun a6989586621679444993 Ordering -> Type) -> Type) (TyFun [a6989586621679444993] a6989586621679444993 -> Type) -> *) (l :: TyFun a6989586621679444993 (TyFun a6989586621679444993 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (MinimumBySym0 :: TyFun (TyFun a6989586621679444992 (TyFun a6989586621679444992 Ordering -> Type) -> Type) (TyFun [a6989586621679444992] a6989586621679444992 -> Type) -> *) (l :: TyFun a6989586621679444992 (TyFun a6989586621679444992 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) (TyFun [a6989586621679445066] a6989586621679445066 -> Type) -> *) (l :: TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) (TyFun [a6989586621679445066] a6989586621679445066 -> Type) -> *) (l :: TyFun a6989586621679445066 (TyFun a6989586621679445066 a6989586621679445066 -> Type) -> Type) = Foldl1'Sym1 l | |
type Apply (DropWhileEndSym0 :: TyFun (TyFun a6989586621679444981 Bool -> Type) (TyFun [a6989586621679444981] [a6989586621679444981] -> Type) -> *) (l :: TyFun a6989586621679444981 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ShowListWithSym0 :: TyFun (TyFun a6989586621679674862 (TyFun Symbol Symbol -> Type) -> Type) (TyFun [a6989586621679674862] (TyFun Symbol Symbol -> Type) -> Type) -> *) (l :: TyFun a6989586621679674862 (TyFun Symbol Symbol -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Show | |
type Apply (NubBySym0 :: TyFun (TyFun a6989586621679770686 (TyFun a6989586621679770686 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679770686) (NonEmpty a6989586621679770686) -> Type) -> *) (l :: TyFun a6989586621679770686 (TyFun a6989586621679770686 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679770707 (TyFun a6989586621679770707 Bool -> Type) -> Type) (TyFun [a6989586621679770707] [NonEmpty a6989586621679770707] -> Type) -> *) (l :: TyFun a6989586621679770707 (TyFun a6989586621679770707 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupBy1Sym0 :: TyFun (TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679770701) (NonEmpty (NonEmpty a6989586621679770701)) -> Type) -> *) (l :: TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (GroupBy1Sym0 :: TyFun (TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679770701) (NonEmpty (NonEmpty a6989586621679770701)) -> Type) -> *) (l :: TyFun a6989586621679770701 (TyFun a6989586621679770701 Bool -> Type) -> Type) = GroupBy1Sym1 l | |
type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679770714 Bool -> Type) (TyFun (NonEmpty a6989586621679770714) [a6989586621679770714] -> Type) -> *) (l :: TyFun a6989586621679770714 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679770713 Bool -> Type) (TyFun (NonEmpty a6989586621679770713) [a6989586621679770713] -> Type) -> *) (l :: TyFun a6989586621679770713 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (SpanSym0 :: TyFun (TyFun a6989586621679770712 Bool -> Type) (TyFun (NonEmpty a6989586621679770712) ([a6989586621679770712], [a6989586621679770712]) -> Type) -> *) (l :: TyFun a6989586621679770712 Bool -> Type) Source # | |
type Apply (BreakSym0 :: TyFun (TyFun a6989586621679770711 Bool -> Type) (TyFun (NonEmpty a6989586621679770711) ([a6989586621679770711], [a6989586621679770711]) -> Type) -> *) (l :: TyFun a6989586621679770711 Bool -> Type) Source # | |
type Apply (FilterSym0 :: TyFun (TyFun a6989586621679770710 Bool -> Type) (TyFun (NonEmpty a6989586621679770710) [a6989586621679770710] -> Type) -> *) (l :: TyFun a6989586621679770710 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679770709 Bool -> Type) (TyFun (NonEmpty a6989586621679770709) ([a6989586621679770709], [a6989586621679770709]) -> Type) -> *) (l :: TyFun a6989586621679770709 Bool -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (SortBySym0 :: TyFun (TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679770684) (NonEmpty a6989586621679770684) -> Type) -> *) (l :: TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (SortBySym0 :: TyFun (TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679770684) (NonEmpty a6989586621679770684) -> Type) -> *) (l :: TyFun a6989586621679770684 (TyFun a6989586621679770684 Ordering -> Type) -> Type) = SortBySym1 l | |
type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770721) (NonEmpty a6989586621679770721) -> Type) -> *) (l :: TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770721) (NonEmpty a6989586621679770721) -> Type) -> *) (l :: TyFun a6989586621679770721 (TyFun a6989586621679770721 a6989586621679770721 -> Type) -> Type) = Scanl1Sym1 l | |
type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770720) (NonEmpty a6989586621679770720) -> Type) -> *) (l :: TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770720) (NonEmpty a6989586621679770720) -> Type) -> *) (l :: TyFun a6989586621679770720 (TyFun a6989586621679770720 a6989586621679770720 -> Type) -> Type) = Scanr1Sym1 l | |
type Apply (UntilSym0 :: TyFun (TyFun a6989586621679961472 Bool -> Type) (TyFun (TyFun a6989586621679961472 a6989586621679961472 -> Type) (TyFun a6989586621679961472 a6989586621679961472 -> Type) -> Type) -> *) (l :: TyFun a6989586621679961472 Bool -> Type) Source # | |
Defined in Data.Promotion.Prelude.Base | |
type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) (TyFun b6989586621679261435 (TyFun [a6989586621679261434] b6989586621679261435 -> Type) -> Type) -> *) (l :: TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Instances type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) (TyFun b6989586621679261435 (TyFun [a6989586621679261434] b6989586621679261435 -> Type) -> Type) -> *) (l :: TyFun b6989586621679261435 (TyFun a6989586621679261434 b6989586621679261435 -> Type) -> Type) = FoldlSym1 l | |
type Apply (ComparingSym0 :: TyFun (TyFun b6989586621679305424 a6989586621679305423 -> Type) (TyFun b6989586621679305424 (TyFun b6989586621679305424 Ordering -> Type) -> Type) -> *) (l :: TyFun b6989586621679305424 a6989586621679305423 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Ord | |
type Apply (MapMaybeSym0 :: TyFun (TyFun a6989586621679406962 (Maybe b6989586621679406963) -> Type) (TyFun [a6989586621679406962] [b6989586621679406963] -> Type) -> *) (l :: TyFun a6989586621679406962 (Maybe b6989586621679406963) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (($!@#@$) :: TyFun (TyFun a6989586621679422430 b6989586621679422431 -> Type) (TyFun a6989586621679422430 b6989586621679422431 -> Type) -> *) (l :: TyFun a6989586621679422430 b6989586621679422431 -> Type) Source # | |
type Apply (($@#@$) :: TyFun (TyFun a6989586621679422432 b6989586621679422433 -> Type) (TyFun a6989586621679422432 b6989586621679422433 -> Type) -> *) (l :: TyFun a6989586621679422432 b6989586621679422433 -> Type) Source # | |
type Apply (MapSym0 :: TyFun (TyFun a6989586621679422445 b6989586621679422446 -> Type) (TyFun [a6989586621679422445] [b6989586621679422446] -> Type) -> *) (l :: TyFun a6989586621679422445 b6989586621679422446 -> Type) Source # | |
type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) (TyFun b6989586621679422448 (TyFun [a6989586621679422447] b6989586621679422448 -> Type) -> Type) -> *) (l :: TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Base type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) (TyFun b6989586621679422448 (TyFun [a6989586621679422447] b6989586621679422448 -> Type) -> Type) -> *) (l :: TyFun a6989586621679422447 (TyFun b6989586621679422448 b6989586621679422448 -> Type) -> Type) = FoldrSym1 l | |
type Apply (UnfoldrSym0 :: TyFun (TyFun b6989586621679445046 (Maybe (a6989586621679445047, b6989586621679445046)) -> Type) (TyFun b6989586621679445046 [a6989586621679445047] -> Type) -> *) (l :: TyFun b6989586621679445046 (Maybe (a6989586621679445047, b6989586621679445046)) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) (TyFun b6989586621679445056 (TyFun [a6989586621679445055] [b6989586621679445056] -> Type) -> Type) -> *) (l :: TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) (TyFun b6989586621679445056 (TyFun [a6989586621679445055] [b6989586621679445056] -> Type) -> Type) -> *) (l :: TyFun a6989586621679445055 (TyFun b6989586621679445056 b6989586621679445056 -> Type) -> Type) = ScanrSym1 l | |
type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) (TyFun b6989586621679445058 (TyFun [a6989586621679445059] [b6989586621679445058] -> Type) -> Type) -> *) (l :: TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) (TyFun b6989586621679445058 (TyFun [a6989586621679445059] [b6989586621679445058] -> Type) -> Type) -> *) (l :: TyFun b6989586621679445058 (TyFun a6989586621679445059 b6989586621679445058 -> Type) -> Type) = ScanlSym1 l | |
type Apply (ConcatMapSym0 :: TyFun (TyFun a6989586621679445062 [b6989586621679445063] -> Type) (TyFun [a6989586621679445062] [b6989586621679445063] -> Type) -> *) (l :: TyFun a6989586621679445062 [b6989586621679445063] -> Type) Source # | |
Defined in Data.Singletons.Prelude.List | |
type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) (TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> Type) -> *) (l :: TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) (TyFun b6989586621679445069 (TyFun [a6989586621679445068] b6989586621679445069 -> Type) -> Type) -> *) (l :: TyFun b6989586621679445069 (TyFun a6989586621679445068 b6989586621679445069 -> Type) -> Type) = Foldl'Sym1 l | |
type Apply (GroupWithSym0 :: TyFun (TyFun a6989586621679770706 b6989586621679770705 -> Type) (TyFun [a6989586621679770706] [NonEmpty a6989586621679770706] -> Type) -> *) (l :: TyFun a6989586621679770706 b6989586621679770705 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupAllWithSym0 :: TyFun (TyFun a6989586621679770704 b6989586621679770703 -> Type) (TyFun [a6989586621679770704] [NonEmpty a6989586621679770704] -> Type) -> *) (l :: TyFun a6989586621679770704 b6989586621679770703 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupWith1Sym0 :: TyFun (TyFun a6989586621679770700 b6989586621679770699 -> Type) (TyFun (NonEmpty a6989586621679770700) (NonEmpty (NonEmpty a6989586621679770700)) -> Type) -> *) (l :: TyFun a6989586621679770700 b6989586621679770699 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (MapSym0 :: TyFun (TyFun a6989586621679770729 b6989586621679770730 -> Type) (TyFun (NonEmpty a6989586621679770729) (NonEmpty b6989586621679770730) -> Type) -> *) (l :: TyFun a6989586621679770729 b6989586621679770730 -> Type) Source # | |
type Apply (SortWithSym0 :: TyFun (TyFun a6989586621679770683 o6989586621679770682 -> Type) (TyFun (NonEmpty a6989586621679770683) (NonEmpty a6989586621679770683) -> Type) -> *) (l :: TyFun a6989586621679770683 o6989586621679770682 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (GroupAllWith1Sym0 :: TyFun (TyFun a6989586621679770698 b6989586621679770697 -> Type) (TyFun (NonEmpty a6989586621679770698) (NonEmpty (NonEmpty a6989586621679770698)) -> Type) -> *) (l :: TyFun a6989586621679770698 b6989586621679770697 -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) (TyFun b6989586621679770724 (TyFun [a6989586621679770725] (NonEmpty b6989586621679770724) -> Type) -> Type) -> *) (l :: TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) (TyFun b6989586621679770724 (TyFun [a6989586621679770725] (NonEmpty b6989586621679770724) -> Type) -> Type) -> *) (l :: TyFun b6989586621679770724 (TyFun a6989586621679770725 b6989586621679770724 -> Type) -> Type) = ScanlSym1 l | |
type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) (TyFun b6989586621679770723 (TyFun [a6989586621679770722] (NonEmpty b6989586621679770723) -> Type) -> Type) -> *) (l :: TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) (TyFun b6989586621679770723 (TyFun [a6989586621679770722] (NonEmpty b6989586621679770723) -> Type) -> Type) -> *) (l :: TyFun a6989586621679770722 (TyFun b6989586621679770723 b6989586621679770723 -> Type) -> Type) = ScanrSym1 l | |
type Apply (UnfoldrSym0 :: TyFun (TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) (TyFun a6989586621679770742 (NonEmpty b6989586621679770743) -> Type) -> *) (l :: TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (UnfoldrSym0 :: TyFun (TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) (TyFun a6989586621679770742 (NonEmpty b6989586621679770743) -> Type) -> *) (l :: TyFun a6989586621679770742 (b6989586621679770743, Maybe a6989586621679770742) -> Type) = UnfoldrSym1 l | |
type Apply (UnfoldSym0 :: TyFun (TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) (TyFun a6989586621679770746 (NonEmpty b6989586621679770747) -> Type) -> *) (l :: TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (UnfoldSym0 :: TyFun (TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) (TyFun a6989586621679770746 (NonEmpty b6989586621679770747) -> Type) -> *) (l :: TyFun a6989586621679770746 (b6989586621679770747, Maybe a6989586621679770746) -> Type) = UnfoldSym1 l | |
type Apply (UntilSym1 l1 :: TyFun (TyFun a6989586621679961472 a6989586621679961472 -> Type) (TyFun a6989586621679961472 a6989586621679961472 -> Type) -> *) (l2 :: TyFun a6989586621679961472 a6989586621679961472 -> Type) Source # | |
type Apply (SwapSym0 :: TyFun (a, b) (b, a) -> *) (l :: (a, b)) Source # | |
type Apply (ApplySym0 :: TyFun (k16989586621679022701 ~> k26989586621679022702) (TyFun k16989586621679022701 k26989586621679022702 -> Type) -> *) (l :: k16989586621679022701 ~> k26989586621679022702) Source # | |
type Apply ((@@@#@$) :: TyFun (k16989586621679028796 ~> k6989586621679028795) (TyFun k16989586621679028796 k6989586621679028795 -> *) -> *) (l :: k16989586621679028796 ~> k6989586621679028795) Source # | |
type Apply (CurrySym0 :: TyFun (TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) (TyFun a6989586621679288097 (TyFun b6989586621679288098 c6989586621679288099 -> Type) -> Type) -> *) (l :: TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Tuple type Apply (CurrySym0 :: TyFun (TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) (TyFun a6989586621679288097 (TyFun b6989586621679288098 c6989586621679288099 -> Type) -> Type) -> *) (l :: TyFun (a6989586621679288097, b6989586621679288098) c6989586621679288099 -> Type) = CurrySym1 l | |
type Apply (UncurrySym0 :: TyFun (TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) (TyFun (a6989586621679288094, b6989586621679288095) c6989586621679288096 -> Type) -> *) (l :: TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Tuple type Apply (UncurrySym0 :: TyFun (TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) (TyFun (a6989586621679288094, b6989586621679288095) c6989586621679288096 -> Type) -> *) (l :: TyFun a6989586621679288094 (TyFun b6989586621679288095 c6989586621679288096 -> Type) -> Type) = UncurrySym1 l | |
type Apply (Maybe_Sym1 l1 :: TyFun (TyFun a6989586621679405850 b6989586621679405849 -> Type) (TyFun (Maybe a6989586621679405850) b6989586621679405849 -> Type) -> *) (l2 :: TyFun a6989586621679405850 b6989586621679405849 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Maybe | |
type Apply (FlipSym0 :: TyFun (TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) (TyFun b6989586621679422436 (TyFun a6989586621679422435 c6989586621679422437 -> Type) -> Type) -> *) (l :: TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Base type Apply (FlipSym0 :: TyFun (TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) (TyFun b6989586621679422436 (TyFun a6989586621679422435 c6989586621679422437 -> Type) -> Type) -> *) (l :: TyFun a6989586621679422435 (TyFun b6989586621679422436 c6989586621679422437 -> Type) -> Type) = FlipSym1 l | |
type Apply ((.@#@$) :: TyFun (TyFun b6989586621679422438 c6989586621679422439 -> Type) (TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> Type) -> *) (l :: TyFun b6989586621679422438 c6989586621679422439 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Base type Apply ((.@#@$) :: TyFun (TyFun b6989586621679422438 c6989586621679422439 -> Type) (TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> Type) -> *) (l :: TyFun b6989586621679422438 c6989586621679422439 -> Type) = ((.@#@$$) l :: TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> *) | |
type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) (TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> Type) -> *) (l :: TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) (TyFun [a6989586621679445031] (TyFun [b6989586621679445032] [c6989586621679445033] -> Type) -> Type) -> *) (l :: TyFun a6989586621679445031 (TyFun b6989586621679445032 c6989586621679445033 -> Type) -> Type) = ZipWithSym1 l | |
type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) (TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) (TyFun acc6989586621679445048 (TyFun [x6989586621679445049] (acc6989586621679445048, [y6989586621679445050]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679445048 (TyFun x6989586621679445049 (acc6989586621679445048, y6989586621679445050) -> Type) -> Type) = MapAccumRSym1 l | |
type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) (TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) (TyFun acc6989586621679445051 (TyFun [x6989586621679445052] (acc6989586621679445051, [y6989586621679445053]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679445051 (TyFun x6989586621679445052 (acc6989586621679445051, y6989586621679445053) -> Type) -> Type) = MapAccumLSym1 l | |
type Apply (OnSym0 :: TyFun (TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) (TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> Type) -> *) (l :: TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Function type Apply (OnSym0 :: TyFun (TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) (TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> Type) -> *) (l :: TyFun b6989586621679761700 (TyFun b6989586621679761700 c6989586621679761701 -> Type) -> Type) = (OnSym1 l :: TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> *) | |
type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770690) (TyFun (NonEmpty b6989586621679770691) (NonEmpty c6989586621679770692) -> Type) -> Type) -> *) (l :: TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) (TyFun (NonEmpty a6989586621679770690) (TyFun (NonEmpty b6989586621679770691) (NonEmpty c6989586621679770692) -> Type) -> Type) -> *) (l :: TyFun a6989586621679770690 (TyFun b6989586621679770691 c6989586621679770692 -> Type) -> Type) = ZipWithSym1 l | |
type Apply (Either_Sym0 :: TyFun (TyFun a6989586621679914687 c6989586621679914688 -> Type) (TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> Type) -> *) (l :: TyFun a6989586621679914687 c6989586621679914688 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Either type Apply (Either_Sym0 :: TyFun (TyFun a6989586621679914687 c6989586621679914688 -> Type) (TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> Type) -> *) (l :: TyFun a6989586621679914687 c6989586621679914688 -> Type) = (Either_Sym1 l :: TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> *) | |
type Apply ((.@#@$$) l1 :: TyFun (TyFun a6989586621679422440 b6989586621679422438 -> Type) (TyFun a6989586621679422440 c6989586621679422439 -> Type) -> *) (l2 :: TyFun a6989586621679422440 b6989586621679422438 -> Type) Source # | |
type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) (TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) Source # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) (TyFun [a6989586621679445027] (TyFun [b6989586621679445028] (TyFun [c6989586621679445029] [d6989586621679445030] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679445027 (TyFun b6989586621679445028 (TyFun c6989586621679445029 d6989586621679445030 -> Type) -> Type) -> Type) = ZipWith3Sym1 l | |
type Apply (OnSym1 l1 :: TyFun (TyFun a6989586621679761702 b6989586621679761700 -> Type) (TyFun a6989586621679761702 (TyFun a6989586621679761702 c6989586621679761701 -> Type) -> Type) -> *) (l2 :: TyFun a6989586621679761702 b6989586621679761700 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Function | |
type Apply (Either_Sym1 l1 :: TyFun (TyFun b6989586621679914689 c6989586621679914688 -> Type) (TyFun (Either a6989586621679914687 b6989586621679914689) c6989586621679914688 -> Type) -> *) (l2 :: TyFun b6989586621679914689 c6989586621679914688 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Either | |
type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924836] (TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924836] (TyFun [b6989586621679924837] (TyFun [c6989586621679924838] (TyFun [d6989586621679924839] [e6989586621679924840] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924836 (TyFun b6989586621679924837 (TyFun c6989586621679924838 (TyFun d6989586621679924839 e6989586621679924840 -> Type) -> Type) -> Type) -> Type) = ZipWith4Sym1 l | |
type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924830] (TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924830] (TyFun [b6989586621679924831] (TyFun [c6989586621679924832] (TyFun [d6989586621679924833] (TyFun [e6989586621679924834] [f6989586621679924835] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924830 (TyFun b6989586621679924831 (TyFun c6989586621679924832 (TyFun d6989586621679924833 (TyFun e6989586621679924834 f6989586621679924835 -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith5Sym1 l | |
type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924823] (TyFun [b6989586621679924824] (TyFun [c6989586621679924825] (TyFun [d6989586621679924826] (TyFun [e6989586621679924827] (TyFun [f6989586621679924828] [g6989586621679924829] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924823 (TyFun b6989586621679924824 (TyFun c6989586621679924825 (TyFun d6989586621679924826 (TyFun e6989586621679924827 (TyFun f6989586621679924828 g6989586621679924829 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith6Sym1 l | |
type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) Source # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679924815] (TyFun [b6989586621679924816] (TyFun [c6989586621679924817] (TyFun [d6989586621679924818] (TyFun [e6989586621679924819] (TyFun [f6989586621679924820] (TyFun [g6989586621679924821] [h6989586621679924822] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679924815 (TyFun b6989586621679924816 (TyFun c6989586621679924817 (TyFun d6989586621679924818 (TyFun e6989586621679924819 (TyFun f6989586621679924820 (TyFun g6989586621679924821 h6989586621679924822 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith7Sym1 l |
Defunctionalized singletons
When calling a higher-order singleton function, you need to use a
singFun...
function to wrap it. See singFun1
.
singFun1 :: forall f. SingFunction1 f -> Sing f Source #
Use this function when passing a function on singletons as a higher-order function. You will need visible type application to get this to work. For example:
falses = sMap (singFun1 @NotSym0 sNot) (STrue `SCons` STrue `SCons` SNil)
There are a family of singFun...
functions, keyed by the number
of parameters of the function.
singFun2 :: forall f. SingFunction2 f -> Sing f Source #
singFun3 :: forall f. SingFunction3 f -> Sing f Source #
singFun4 :: forall f. SingFunction4 f -> Sing f Source #
singFun5 :: forall f. SingFunction5 f -> Sing f Source #
singFun6 :: forall f. SingFunction6 f -> Sing f Source #
singFun7 :: forall f. SingFunction7 f -> Sing f Source #
singFun8 :: forall f. SingFunction8 f -> Sing f Source #
unSingFun1 :: forall f. Sing f -> SingFunction1 f Source #
This is the inverse of singFun1
, and likewise for the other
unSingFun...
functions.
unSingFun2 :: forall f. Sing f -> SingFunction2 f Source #
unSingFun3 :: forall f. Sing f -> SingFunction3 f Source #
unSingFun4 :: forall f. Sing f -> SingFunction4 f Source #
unSingFun5 :: forall f. Sing f -> SingFunction5 f Source #
unSingFun6 :: forall f. Sing f -> SingFunction6 f Source #
unSingFun7 :: forall f. Sing f -> SingFunction7 f Source #
unSingFun8 :: forall f. Sing f -> SingFunction8 f Source #
SLambda{2...8}
are explicitly bidirectional pattern synonyms for
defunctionalized singletons (
).Sing
(f :: k ~>
k' ~>
k'')
As constructors: Same as singFun{2..8}
. For example, one can turn a
binary function on singletons sTake ::
into a
defunctionalized singleton SingFunction2
TakeSym0
:Sing
(TakeSym :: Nat ~>
[a] ~>
[a])
>>> import Data.Singletons.Prelude.List >>> :set -XTypeApplications >>> >>> :tSLambda2
SLambda2
::SingFunction2
f ->Sing
f >>> :tSLambda2
@TakeSym0SLambda2
::SingFunction2
TakeSym0 ->Sing
TakeSym0 >>> :tSLambda2
@TakeSym0 sTakeSLambda2
::Sing
TakeSym0
This is useful for functions on singletons that expect a defunctionalized
singleton as an argument, such as sZipWith ::
:SingFunction3
ZipWithSym0
sZipWith :: Sing (f :: a~>
b~>
c) -> Sing (xs :: [a]) -> Sing (ys :: [b]) -> Sing (ZipWith f xs ys :: [c]) sZipWith (SLambda2
@TakeSym0 sTake) :: Sing (xs :: [Nat]) -> Sing (ys :: [[a]]) -> Sing (ZipWith TakeSym0 xs ys :: [[a]])
As patterns: Same as unSingFun{2..8}
. Gets a binary term-level
Haskell function on singletons
from a defunctionalised Sing
(x :: k) -> Sing
(y :: k') -> Sing
(f @@ x @@ y)
. Alternatively, as a record field accessor:Sing
f
applySing2 ::Sing
(f :: k~>
k'~>
k'') ->SingFunction2
f
pattern SLambda2 :: forall f. SingFunction2 f -> Sing f Source #
pattern SLambda3 :: forall f. SingFunction3 f -> Sing f Source #
pattern SLambda4 :: forall f. SingFunction4 f -> Sing f Source #
pattern SLambda5 :: forall f. SingFunction5 f -> Sing f Source #
pattern SLambda6 :: forall f. SingFunction6 f -> Sing f Source #
pattern SLambda7 :: forall f. SingFunction7 f -> Sing f Source #
pattern SLambda8 :: forall f. SingFunction8 f -> Sing f Source #
These type synonyms are exported only to improve error messages; users should not have to mention them.
type SingFunction2 f = forall t. Sing t -> SingFunction1 (f @@ t) Source #
type SingFunction3 f = forall t. Sing t -> SingFunction2 (f @@ t) Source #
type SingFunction4 f = forall t. Sing t -> SingFunction3 (f @@ t) Source #
type SingFunction5 f = forall t. Sing t -> SingFunction4 (f @@ t) Source #
type SingFunction6 f = forall t. Sing t -> SingFunction5 (f @@ t) Source #
type SingFunction7 f = forall t. Sing t -> SingFunction6 (f @@ t) Source #
type SingFunction8 f = forall t. Sing t -> SingFunction7 (f @@ t) Source #
Auxiliary functions
data Proxy (t :: k) :: forall k. k -> * #
Proxy
is a type that holds no data, but has a phantom parameter of
arbitrary type (or even kind). Its use is to provide type information, even
though there is no value available of that type (or it may be too costly to
create one).
Historically,
is a safer alternative to the
Proxy
:: Proxy
a'undefined :: a'
idiom.
>>>
Proxy :: Proxy (Void, Int -> Int)
Proxy
Proxy can even hold types of higher kinds,
>>>
Proxy :: Proxy Either
Proxy
>>>
Proxy :: Proxy Functor
Proxy
>>>
Proxy :: Proxy complicatedStructure
Proxy
Constructors
Proxy |
Instances
Generic1 (Proxy :: k -> *) | |
Monad (Proxy :: * -> *) | Since: base-4.7.0.0 |
Functor (Proxy :: * -> *) | Since: base-4.7.0.0 |
Applicative (Proxy :: * -> *) | Since: base-4.7.0.0 |
Foldable (Proxy :: * -> *) | Since: base-4.7.0.0 |
Defined in Data.Foldable Methods fold :: Monoid m => Proxy m -> m # foldMap :: Monoid m => (a -> m) -> Proxy a -> m # foldr :: (a -> b -> b) -> b -> Proxy a -> b # foldr' :: (a -> b -> b) -> b -> Proxy a -> b # foldl :: (b -> a -> b) -> b -> Proxy a -> b # foldl' :: (b -> a -> b) -> b -> Proxy a -> b # foldr1 :: (a -> a -> a) -> Proxy a -> a # foldl1 :: (a -> a -> a) -> Proxy a -> a # elem :: Eq a => a -> Proxy a -> Bool # maximum :: Ord a => Proxy a -> a # minimum :: Ord a => Proxy a -> a # | |
Traversable (Proxy :: * -> *) | Since: base-4.7.0.0 |
Eq1 (Proxy :: * -> *) | Since: base-4.9.0.0 |
Ord1 (Proxy :: * -> *) | Since: base-4.9.0.0 |
Defined in Data.Functor.Classes | |
Read1 (Proxy :: * -> *) | Since: base-4.9.0.0 |
Defined in Data.Functor.Classes | |
Show1 (Proxy :: * -> *) | Since: base-4.9.0.0 |
Alternative (Proxy :: * -> *) | Since: base-4.9.0.0 |
MonadPlus (Proxy :: * -> *) | Since: base-4.9.0.0 |
Bounded (Proxy t) | |
Enum (Proxy s) | Since: base-4.7.0.0 |
Eq (Proxy s) | Since: base-4.7.0.0 |
Data t => Data (Proxy t) | Since: base-4.7.0.0 |
Defined in Data.Data Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Proxy t -> c (Proxy t) # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (Proxy t) # toConstr :: Proxy t -> Constr # dataTypeOf :: Proxy t -> DataType # dataCast1 :: Typeable t0 => (forall d. Data d => c (t0 d)) -> Maybe (c (Proxy t)) # dataCast2 :: Typeable t0 => (forall d e. (Data d, Data e) => c (t0 d e)) -> Maybe (c (Proxy t)) # gmapT :: (forall b. Data b => b -> b) -> Proxy t -> Proxy t # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Proxy t -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Proxy t -> r # gmapQ :: (forall d. Data d => d -> u) -> Proxy t -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> Proxy t -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> Proxy t -> m (Proxy t) # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Proxy t -> m (Proxy t) # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Proxy t -> m (Proxy t) # | |
Ord (Proxy s) | Since: base-4.7.0.0 |
Read (Proxy t) | Since: base-4.7.0.0 |
Show (Proxy s) | Since: base-4.7.0.0 |
Ix (Proxy s) | Since: base-4.7.0.0 |
Defined in Data.Proxy | |
Generic (Proxy t) | |
Semigroup (Proxy s) | Since: base-4.9.0.0 |
Monoid (Proxy s) | Since: base-4.7.0.0 |
type Rep1 (Proxy :: k -> *) | |
type Rep (Proxy t) | |
Defunctionalization symbols
data DemoteSym0 (l :: TyFun Type Type) Source #
Instances
SuppressUnusedWarnings DemoteSym0 Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
type Apply DemoteSym0 (l :: Type) Source # | |
Defined in Data.Singletons |
type DemoteSym1 (t :: Type) = Demote t Source #
data SameKindSym0 l Source #
Instances
SuppressUnusedWarnings (SameKindSym0 :: TyFun k6989586621679024562 (TyFun k6989586621679024562 Constraint -> *) -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
type Apply (SameKindSym0 :: TyFun k6989586621679024562 (TyFun k6989586621679024562 Constraint -> *) -> *) (l :: k6989586621679024562) Source # | |
Defined in Data.Singletons type Apply (SameKindSym0 :: TyFun k6989586621679024562 (TyFun k6989586621679024562 Constraint -> *) -> *) (l :: k6989586621679024562) = SameKindSym1 l |
data SameKindSym1 (l :: k6989586621679024562) l Source #
Instances
SuppressUnusedWarnings (SameKindSym1 :: k6989586621679024562 -> TyFun k6989586621679024562 Constraint -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
type Apply (SameKindSym1 l1 :: TyFun k Constraint -> *) (l2 :: k) Source # | |
Defined in Data.Singletons |
type SameKindSym2 (t :: k6989586621679024562) (t :: k6989586621679024562) = SameKind t t Source #
data KindOfSym0 l Source #
Instances
SuppressUnusedWarnings (KindOfSym0 :: TyFun k6989586621679024565 * -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
type Apply (KindOfSym0 :: TyFun k * -> *) (l :: k) Source # | |
Defined in Data.Singletons |
type KindOfSym1 (t :: k6989586621679024565) = KindOf t Source #
Instances
SuppressUnusedWarnings (~>@#@$) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
type Apply (~>@#@$) (l :: Type) Source # | |
Defined in Data.Singletons |
data ApplySym0 (l :: TyFun ((~>) k16989586621679022701 k26989586621679022702) (TyFun k16989586621679022701 k26989586621679022702 -> Type)) Source #
Instances
SuppressUnusedWarnings (ApplySym0 :: TyFun (k16989586621679022701 ~> k26989586621679022702) (TyFun k16989586621679022701 k26989586621679022702 -> Type) -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
type Apply (ApplySym0 :: TyFun (k16989586621679022701 ~> k26989586621679022702) (TyFun k16989586621679022701 k26989586621679022702 -> Type) -> *) (l :: k16989586621679022701 ~> k26989586621679022702) Source # | |
data ApplySym1 (l :: (~>) k16989586621679022701 k26989586621679022702) (l :: TyFun k16989586621679022701 k26989586621679022702) Source #
Instances
SuppressUnusedWarnings (ApplySym1 :: (k16989586621679022701 ~> k26989586621679022702) -> TyFun k16989586621679022701 k26989586621679022702 -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
type Apply (ApplySym1 l1 :: TyFun k1 k2 -> *) (l2 :: k1) Source # | |
type ApplySym2 (t :: (~>) k16989586621679022701 k26989586621679022702) (t :: k16989586621679022701) = Apply t t Source #
Instances
SuppressUnusedWarnings ((@@@#@$) :: TyFun (k16989586621679028796 ~> k6989586621679028795) (TyFun k16989586621679028796 k6989586621679028795 -> *) -> *) Source # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () Source # | |
type Apply ((@@@#@$) :: TyFun (k16989586621679028796 ~> k6989586621679028795) (TyFun k16989586621679028796 k6989586621679028795 -> *) -> *) (l :: k16989586621679028796 ~> k6989586621679028795) Source # | |
data (l :: (~>) k16989586621679028796 k6989586621679028795) @@@#@$$ l Source #
type (@@@#@$$$) (t :: (~>) k16989586621679028796 k6989586621679028795) (t :: k16989586621679028796) = (@@) t t Source #
Orphan instances
SBounded k => Bounded (SomeSing k) Source # | |
(SEnum k, SingKind k) => Enum (SomeSing k) Source # | |
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) Source # | |
SNum k => Num (SomeSing k) Source # | |
SOrd k => Ord (SomeSing k) Source # | |
ShowSing k => Show (SomeSing k) Source # | |