| 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 :: k6989586621679026900) l
- type SameKindSym2 (t :: k6989586621679026900) (t :: k6989586621679026900) = SameKind t t
- data KindOfSym0 l
- type KindOfSym1 (t :: k6989586621679026903) = KindOf t
- data (~>@#@$) l
- data (l :: Type) ~>@#@$$ l
- type (~>@#@$$$) (t :: Type) (t :: Type) = (~>) t t
- data ApplySym0 (l :: TyFun ((~>) k16989586621679025039 k26989586621679025040) (TyFun k16989586621679025039 k26989586621679025040 -> Type))
- data ApplySym1 (l :: (~>) k16989586621679025039 k26989586621679025040) (l :: TyFun k16989586621679025039 k26989586621679025040)
- type ApplySym2 (t :: (~>) k16989586621679025039 k26989586621679025040) (t :: k16989586621679025039) = Apply t t
- data (@@@#@$) l
- data (l :: (~>) k16989586621679031134 k6989586621679031133) @@@#@$$ l
- type (@@@#@$$$) (t :: (~>) k16989586621679031134 k6989586621679031133) (t :: k16989586621679031134) = (@@) t t
Main singleton definitions
The singleton kind-indexed data family.
Instances
(@@) :: forall (f :: k1 ~> k2) (t :: k1). Sing f -> Sing t -> Sing (f @@ t) infixl 9 #
An infix synonym for applySing
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
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 ->withSomeSingxfromSing) ≡id
The final law can also be expressed in terms of the FromSing pattern
synonym:
(\(FromSingsing) ->FromSingsing) ≡id
Associated Types
type Demote k = (r :: *) | r -> k #
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 #
Convert a singleton to its unrefined version.
toSing :: Demote k -> SomeSing k #
Convert an unrefined type to an existentially-quantified singleton type.
Instances
| SingKind Bool # | |
| SingKind Ordering # | |
| SingKind Type # | |
| SingKind Nat # | |
| SingKind Symbol # | |
| SingKind () # | |
| SingKind Void # | |
| SingKind a => SingKind [a] # | |
| SingKind a => SingKind (Maybe a) # | |
| SingKind a => SingKind (NonEmpty a) # | |
| (SingKind a, SingKind b) => SingKind (Either a b) # | |
| (SingKind a, SingKind b) => SingKind (a, b) # | |
| (SingKind k1, SingKind k2) => SingKind (k1 ~> k2) # | Note that this instance's |
| (SingKind a, SingKind b, SingKind c) => SingKind (a, b, c) # | |
| (SingKind a, SingKind b, SingKind c, SingKind d) => SingKind (a, b, c, d) # | |
| (SingKind a, SingKind b, SingKind c, SingKind d, SingKind e) => SingKind (a, b, c, d, e) # | |
| (SingKind a, SingKind b, SingKind c, SingKind d, SingKind e, SingKind f) => SingKind (a, b, c, d, e, f) # | |
| (SingKind a, SingKind b, SingKind c, SingKind d, SingKind e, SingKind f, SingKind g) => SingKind (a, b, c, d, e, f, g) # | |
Working with singletons
Convenient synonym to refer to the kind of a type variable:
type KindOf (a :: k) = k
type SameKind (a :: k) (b :: k) = (() :: Constraint) #
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 #
A SingInstance wraps up a SingI instance for explicit handling.
Constructors
| SingInstance :: SingI a => SingInstance a |
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 #
Get an implicit singleton (a SingI instance) from an explicit one.
pattern Sing :: forall (a :: k). () => SingI a => Sing a #
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 #
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 #
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 \@BoolFromSing \@Bool :: Sing a -> Bool>>>FromSing SFalseFalse
As a pattern: It extracts a singleton from its demoted (base) type.
singAnd ::Bool->Bool->SomeSingBoolsingAnd (FromSingsingBool1) (FromSingsingBool2) =SomeSing(singBool1 %&& singBool2)
instead of writing it with withSomeSing:
singAnd bool1 bool2 =withSomeSingbool1 $ singBool1 ->withSomeSingbool2 $ singBool2 ->SomeSing(singBool1 %&& singBool2)
singByProxy :: SingI a => proxy a -> Sing a #
Allows creation of a singleton when a proxy is at hand.
demote :: forall a. (SingKind (KindOf a), SingI a) => Demote (KindOf a) #
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 @TrueTrue
>>>demote @(Nothing :: Maybe Ordering)Nothing
singByProxy# :: SingI a => Proxy# a -> Sing a #
Allows creation of a singleton when a proxy# is at hand.
withSing :: SingI a => (Sing a -> b) -> b #
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) #
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
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) # | Note that this instance's |
| SuppressUnusedWarnings ShowParenSym2 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (&&@#@$$) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (||@#@$$) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowParenSym1 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ThenCmpSym1 # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (~>@#@$$) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (^@#@$$) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DivSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ModSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings QuotSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings RemSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings QuotRemSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DivModSym1 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (<>@#@$$) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowCharSym1 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowStringSym1 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings NotSym0 # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (&&@#@$) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (||@#@$) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowParenSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings AndSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings OrSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings UnlinesSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings UnwordsSym0 # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ThenCmpSym0 # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (~>@#@$) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DemoteSym0 # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (^@#@$) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DivSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ModSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings QuotSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings RemSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings QuotRemSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings DivModSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings KnownNatSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings Log2Sym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowCharSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowStringSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (<>@#@$) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings KnownSymbolSym0 # | |
Defined in Data.Singletons.TypeLits Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowCommaSpaceSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ShowSpaceSym0 # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings XorSym0 # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubBySym1 :: (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) -> TyFun [a6989586621679458371] [a6989586621679458371] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PartitionSym1 :: (TyFun a6989586621679458380 Bool -> Type) -> TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (BreakSym1 :: (TyFun a6989586621679458392 Bool -> Type) -> TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SpanSym1 :: (TyFun a6989586621679458393 Bool -> Type) -> TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBySym1 :: (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) -> TyFun [a6989586621679458383] [[a6989586621679458383]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileSym1 :: (TyFun a6989586621679458395 Bool -> Type) -> TyFun [a6989586621679458395] [a6989586621679458395] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeWhileSym1 :: (TyFun a6989586621679458396 Bool -> Type) -> TyFun [a6989586621679458396] [a6989586621679458396] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FilterSym1 :: (TyFun a6989586621679458404 Bool -> Type) -> TyFun [a6989586621679458404] [a6989586621679458404] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindSym1 :: (TyFun a6989586621679458403 Bool -> Type) -> TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertBySym1 :: (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) -> TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertBySym2 :: (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) -> a6989586621679458407 -> TyFun [a6989586621679458407] [a6989586621679458407] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortBySym1 :: (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) -> TyFun [a6989586621679458408] [a6989586621679458408] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteBySym1 :: (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) -> TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteBySym2 :: (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) -> a6989586621679458410 -> TyFun [a6989586621679458410] [a6989586621679458410] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteFirstsBySym2 :: (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) -> [a6989586621679458409] -> TyFun [a6989586621679458409] [a6989586621679458409] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteFirstsBySym1 :: (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) -> TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnionBySym2 :: (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) -> [a6989586621679458369] -> TyFun [a6989586621679458369] [a6989586621679458369] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnionBySym1 :: (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) -> TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindIndicesSym1 :: (TyFun a6989586621679458399 Bool -> Type) -> TyFun [a6989586621679458399] [Nat] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindIndexSym1 :: (TyFun a6989586621679458400 Bool -> Type) -> TyFun [a6989586621679458400] (Maybe Nat) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanr1Sym1 :: (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) -> TyFun [a6989586621679458467] [a6989586621679458467] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanl1Sym1 :: (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) -> TyFun [a6989586621679458470] [a6989586621679458470] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AnySym1 :: (TyFun a6989586621679458473 Bool -> Type) -> TyFun [a6989586621679458473] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersectBySym2 :: (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) -> [a6989586621679458397] -> TyFun [a6989586621679458397] [a6989586621679458397] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersectBySym1 :: (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) -> TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AllSym1 :: (TyFun a6989586621679458474 Bool -> Type) -> TyFun [a6989586621679458474] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldr1Sym1 :: (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) -> TyFun [a6989586621679458478] a6989586621679458478 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl1Sym1 :: (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) -> TyFun [a6989586621679458480] a6989586621679458480 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaximumBySym1 :: (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) -> TyFun [a6989586621679458406] a6989586621679458406 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinimumBySym1 :: (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) -> TyFun [a6989586621679458405] a6989586621679458405 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl1'Sym1 :: (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) -> TyFun [a6989586621679458479] a6989586621679458479 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileEndSym1 :: (TyFun a6989586621679458394 Bool -> Type) -> TyFun [a6989586621679458394] [a6989586621679458394] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListWithSym2 :: (TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) -> [a6989586621679693676] -> TyFun Symbol Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListWithSym1 :: (TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) -> TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubBySym1 :: (TyFun a6989586621679791921 (TyFun a6989586621679791921 Bool -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791921) (NonEmpty a6989586621679791921) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBySym1 :: (TyFun a6989586621679791942 (TyFun a6989586621679791942 Bool -> Type) -> Type) -> TyFun [a6989586621679791942] [NonEmpty a6989586621679791942] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBy1Sym1 :: (TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791936) (NonEmpty (NonEmpty a6989586621679791936)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeWhileSym1 :: (TyFun a6989586621679791949 Bool -> Type) -> TyFun (NonEmpty a6989586621679791949) [a6989586621679791949] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileSym1 :: (TyFun a6989586621679791948 Bool -> Type) -> TyFun (NonEmpty a6989586621679791948) [a6989586621679791948] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SpanSym1 :: (TyFun a6989586621679791947 Bool -> Type) -> TyFun (NonEmpty a6989586621679791947) ([a6989586621679791947], [a6989586621679791947]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (BreakSym1 :: (TyFun a6989586621679791946 Bool -> Type) -> TyFun (NonEmpty a6989586621679791946) ([a6989586621679791946], [a6989586621679791946]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FilterSym1 :: (TyFun a6989586621679791945 Bool -> Type) -> TyFun (NonEmpty a6989586621679791945) [a6989586621679791945] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PartitionSym1 :: (TyFun a6989586621679791944 Bool -> Type) -> TyFun (NonEmpty a6989586621679791944) ([a6989586621679791944], [a6989586621679791944]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortBySym1 :: (TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791919) (NonEmpty a6989586621679791919) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanl1Sym1 :: (TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791956) (NonEmpty a6989586621679791956) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanr1Sym1 :: (TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791955) (NonEmpty a6989586621679791955) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UntilSym2 :: (TyFun a6989586621679987157 Bool -> Type) -> (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> TyFun a6989586621679987157 a6989586621679987157 -> *) # | |
Defined in Data.Promotion.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UntilSym1 :: (TyFun a6989586621679987157 Bool -> Type) -> TyFun (TyFun a6989586621679987157 a6989586621679987157 -> Type) (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((++@#@$$) :: [a6989586621679435603] -> TyFun [a6989586621679435603] [a6989586621679435603] -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((!!@#@$$) :: [a6989586621679458373] -> TyFun Nat a6989586621679458373 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnionSym1 :: [a6989586621679458368] -> TyFun [a6989586621679458368] [a6989586621679458368] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((\\@#@$$) :: [a6989586621679458411] -> TyFun [a6989586621679458411] [a6989586621679458411] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsPrefixOfSym1 :: [a6989586621679458456] -> TyFun [a6989586621679458456] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsInfixOfSym1 :: [a6989586621679458454] -> TyFun [a6989586621679458454] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersectSym1 :: [a6989586621679458398] -> TyFun [a6989586621679458398] [a6989586621679458398] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntercalateSym1 :: [a6989586621679458487] -> TyFun [[a6989586621679458487]] [a6989586621679458487] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsSuffixOfSym1 :: [a6989586621679458455] -> TyFun [a6989586621679458455] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListSym1 :: [a6989586621679693692] -> TyFun Symbol Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsPrefixOfSym1 :: [a6989586621679791931] -> TyFun (NonEmpty a6989586621679791931) Bool -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (StripPrefixSym1 :: [a6989586621679950188] -> TyFun [a6989586621679950188] (Maybe [a6989586621679950188]) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsPrecSym2 :: Nat -> a6989586621679693692 -> TyFun Symbol Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropSym1 :: Nat -> TyFun [a6989586621679458390] [a6989586621679458390] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeSym1 :: Nat -> TyFun [a6989586621679458391] [a6989586621679458391] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SplitAtSym1 :: Nat -> TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ReplicateSym1 :: Nat -> TyFun a6989586621679458375 [a6989586621679458375] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsPrecSym1 :: Nat -> TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeSym1 :: Nat -> TyFun (NonEmpty a6989586621679791952) [a6989586621679791952] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropSym1 :: Nat -> TyFun (NonEmpty a6989586621679791951) [a6989586621679791951] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SplitAtSym1 :: Nat -> TyFun (NonEmpty a6989586621679791950) ([a6989586621679791950], [a6989586621679791950]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((:@#@$$) :: a3530822107858468865 -> TyFun [a3530822107858468865] [a3530822107858468865] -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((:|@#@$$) :: a6989586621679067720 -> TyFun [a6989586621679067720] (NonEmpty a6989586621679067720) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Bool_Sym2 :: a6989586621679301220 -> a6989586621679301220 -> TyFun Bool a6989586621679301220 -> *) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Bool_Sym1 :: a6989586621679301220 -> TyFun a6989586621679301220 (TyFun Bool a6989586621679301220 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((==@#@$$) :: a6989586621679303786 -> TyFun a6989586621679303786 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((/=@#@$$) :: a6989586621679303786 -> TyFun a6989586621679303786 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<=@#@$$) :: a6989586621679315171 -> TyFun a6989586621679315171 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CompareSym1 :: a6989586621679315171 -> TyFun a6989586621679315171 Ordering -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinSym1 :: a6989586621679315171 -> TyFun a6989586621679315171 a6989586621679315171 -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaxSym1 :: a6989586621679315171 -> TyFun a6989586621679315171 a6989586621679315171 -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((>=@#@$$) :: a6989586621679315171 -> TyFun a6989586621679315171 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((>@#@$$) :: a6989586621679315171 -> TyFun a6989586621679315171 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<@#@$$) :: a6989586621679315171 -> TyFun a6989586621679315171 Bool -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromMaybeSym1 :: a6989586621679419780 -> TyFun (Maybe a6989586621679419780) a6989586621679419780 -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((-@#@$$) :: a6989586621679428050 -> TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((+@#@$$) :: a6989586621679428050 -> TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((*@#@$$) :: a6989586621679428050 -> TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SubtractSym1 :: a6989586621679430323 -> TyFun a6989586621679430323 a6989586621679430323 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AsTypeOfSym1 :: a6989586621679435593 -> TyFun a6989586621679435593 a6989586621679435593 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertSym1 :: a6989586621679458385 -> TyFun [a6989586621679458385] [a6989586621679458385] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteSym1 :: a6989586621679458412 -> TyFun [a6989586621679458412] [a6989586621679458412] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemIndicesSym1 :: a6989586621679458401 -> TyFun [a6989586621679458401] [Nat] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemIndexSym1 :: a6989586621679458402 -> TyFun [a6989586621679458402] (Maybe Nat) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NotElemSym1 :: a6989586621679458452 -> TyFun [a6989586621679458452] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemSym1 :: a6989586621679458453 -> TyFun [a6989586621679458453] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersperseSym1 :: a6989586621679458488 -> TyFun [a6989586621679458488] [a6989586621679458488] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsSym1 :: a6989586621679693677 -> TyFun Symbol Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersperseSym1 :: a6989586621679791954 -> TyFun (NonEmpty a6989586621679791954) (NonEmpty a6989586621679791954) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertSym1 :: a6989586621679791961 -> TyFun [a6989586621679791961] (NonEmpty a6989586621679791961) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<|@#@$$) :: a6989586621679791972 -> TyFun (NonEmpty a6989586621679791972) (NonEmpty a6989586621679791972) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConsSym1 :: a6989586621679791971 -> TyFun (NonEmpty a6989586621679791971) (NonEmpty a6989586621679791971) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromThenToSym1 :: a6989586621679868770 -> TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromThenToSym2 :: a6989586621679868770 -> a6989586621679868770 -> TyFun a6989586621679868770 [a6989586621679868770] -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromToSym1 :: a6989586621679868770 -> TyFun a6989586621679868770 [a6989586621679868770] -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SameKindSym1 :: k6989586621679026900 -> TyFun k6989586621679026900 Constraint -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((!!@#@$$) :: NonEmpty a6989586621679791930 -> TyFun Nat a6989586621679791930 -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubBySym0 :: TyFun (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (TyFun [a6989586621679458371] [a6989586621679458371] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PartitionSym0 :: TyFun (TyFun a6989586621679458380 Bool -> Type) (TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (BreakSym0 :: TyFun (TyFun a6989586621679458392 Bool -> Type) (TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SpanSym0 :: TyFun (TyFun a6989586621679458393 Bool -> Type) (TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBySym0 :: TyFun (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (TyFun [a6989586621679458383] [[a6989586621679458383]] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileSym0 :: TyFun (TyFun a6989586621679458395 Bool -> Type) (TyFun [a6989586621679458395] [a6989586621679458395] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeWhileSym0 :: TyFun (TyFun a6989586621679458396 Bool -> Type) (TyFun [a6989586621679458396] [a6989586621679458396] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FilterSym0 :: TyFun (TyFun a6989586621679458404 Bool -> Type) (TyFun [a6989586621679458404] [a6989586621679458404] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindSym0 :: TyFun (TyFun a6989586621679458403 Bool -> Type) (TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertBySym0 :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortBySym0 :: TyFun (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (TyFun [a6989586621679458408] [a6989586621679458408] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteBySym0 :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnionBySym0 :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindIndicesSym0 :: TyFun (TyFun a6989586621679458399 Bool -> Type) (TyFun [a6989586621679458399] [Nat] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FindIndexSym0 :: TyFun (TyFun a6989586621679458400 Bool -> Type) (TyFun [a6989586621679458400] (Maybe Nat) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanr1Sym0 :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanl1Sym0 :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AnySym0 :: TyFun (TyFun a6989586621679458473 Bool -> Type) (TyFun [a6989586621679458473] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersectBySym0 :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AllSym0 :: TyFun (TyFun a6989586621679458474 Bool -> Type) (TyFun [a6989586621679458474] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldr1Sym0 :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl1Sym0 :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaximumBySym0 :: TyFun (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (TyFun [a6989586621679458406] a6989586621679458406 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinimumBySym0 :: TyFun (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (TyFun [a6989586621679458405] a6989586621679458405 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl1'Sym0 :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileEndSym0 :: TyFun (TyFun a6989586621679458394 Bool -> Type) (TyFun [a6989586621679458394] [a6989586621679458394] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListWithSym0 :: TyFun (TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) (TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubBySym0 :: TyFun (TyFun a6989586621679791921 (TyFun a6989586621679791921 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791921) (NonEmpty a6989586621679791921) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBySym0 :: TyFun (TyFun a6989586621679791942 (TyFun a6989586621679791942 Bool -> Type) -> Type) (TyFun [a6989586621679791942] [NonEmpty a6989586621679791942] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupBy1Sym0 :: TyFun (TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791936) (NonEmpty (NonEmpty a6989586621679791936)) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeWhileSym0 :: TyFun (TyFun a6989586621679791949 Bool -> Type) (TyFun (NonEmpty a6989586621679791949) [a6989586621679791949] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropWhileSym0 :: TyFun (TyFun a6989586621679791948 Bool -> Type) (TyFun (NonEmpty a6989586621679791948) [a6989586621679791948] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SpanSym0 :: TyFun (TyFun a6989586621679791947 Bool -> Type) (TyFun (NonEmpty a6989586621679791947) ([a6989586621679791947], [a6989586621679791947]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (BreakSym0 :: TyFun (TyFun a6989586621679791946 Bool -> Type) (TyFun (NonEmpty a6989586621679791946) ([a6989586621679791946], [a6989586621679791946]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FilterSym0 :: TyFun (TyFun a6989586621679791945 Bool -> Type) (TyFun (NonEmpty a6989586621679791945) [a6989586621679791945] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PartitionSym0 :: TyFun (TyFun a6989586621679791944 Bool -> Type) (TyFun (NonEmpty a6989586621679791944) ([a6989586621679791944], [a6989586621679791944]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortBySym0 :: TyFun (TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679791919) (NonEmpty a6989586621679791919) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanl1Sym0 :: TyFun (TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791956) (NonEmpty a6989586621679791956) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Scanr1Sym0 :: TyFun (TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791955) (NonEmpty a6989586621679791955) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UntilSym0 :: TyFun (TyFun a6989586621679987157 Bool -> Type) (TyFun (TyFun a6989586621679987157 a6989586621679987157 -> Type) (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConcatSym0 :: TyFun [[a6989586621679458477]] [a6989586621679458477] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TransposeSym0 :: TyFun [[a6989586621679458374]] [[a6989586621679458374]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CatMaybesSym0 :: TyFun [Maybe a6989586621679419777] [a6989586621679419777] -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ListToMaybeSym0 :: TyFun [a6989586621679419778] (Maybe a6989586621679419778) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((++@#@$) :: TyFun [a6989586621679435603] (TyFun [a6989586621679435603] [a6989586621679435603] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((!!@#@$) :: TyFun [a6989586621679458373] (TyFun Nat a6989586621679458373 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LengthSym0 :: TyFun [a6989586621679458376] Nat -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ProductSym0 :: TyFun [a6989586621679458377] a6989586621679458377 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SumSym0 :: TyFun [a6989586621679458378] a6989586621679458378 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupSym0 :: TyFun [a6989586621679458388] [[a6989586621679458388]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortSym0 :: TyFun [a6989586621679458384] [a6989586621679458384] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnionSym0 :: TyFun [a6989586621679458368] (TyFun [a6989586621679458368] [a6989586621679458368] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((\\@#@$) :: TyFun [a6989586621679458411] (TyFun [a6989586621679458411] [a6989586621679458411] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubSym0 :: TyFun [a6989586621679458372] [a6989586621679458372] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsPrefixOfSym0 :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TailsSym0 :: TyFun [a6989586621679458457] [[a6989586621679458457]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InitsSym0 :: TyFun [a6989586621679458458] [[a6989586621679458458]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsInfixOfSym0 :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersectSym0 :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaximumSym0 :: TyFun [a6989586621679458387] a6989586621679458387 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinimumSym0 :: TyFun [a6989586621679458386] a6989586621679458386 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PermutationsSym0 :: TyFun [a6989586621679458483] [[a6989586621679458483]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SubsequencesSym0 :: TyFun [a6989586621679458486] [[a6989586621679458486]] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntercalateSym0 :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ReverseSym0 :: TyFun [a6989586621679458489] [a6989586621679458489] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsSuffixOfSym0 :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NullSym0 :: TyFun [a6989586621679458490] Bool -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InitSym0 :: TyFun [a6989586621679458491] [a6989586621679458491] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TailSym0 :: TyFun [a6989586621679458492] [a6989586621679458492] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LastSym0 :: TyFun [a6989586621679458493] a6989586621679458493 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (HeadSym0 :: TyFun [a6989586621679458494] a6989586621679458494 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowListSym0 :: TyFun [a6989586621679693692] (TyFun Symbol Symbol -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsPrefixOfSym0 :: TyFun [a6989586621679791931] (TyFun (NonEmpty a6989586621679791931) Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupSym0 :: TyFun [a6989586621679791943] [NonEmpty a6989586621679791943] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromListSym0 :: TyFun [a6989586621679791969] (NonEmpty a6989586621679791969) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InitsSym0 :: TyFun [a6989586621679791963] (NonEmpty [a6989586621679791963]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TailsSym0 :: TyFun [a6989586621679791962] (NonEmpty [a6989586621679791962]) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NonEmpty_Sym0 :: TyFun [a6989586621679791980] (Maybe (NonEmpty a6989586621679791980)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (StripPrefixSym0 :: TyFun [a6989586621679950188] (TyFun [a6989586621679950188] (Maybe [a6989586621679950188]) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaybeToListSym0 :: TyFun (Maybe a6989586621679419779) [a6989586621679419779] -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromJustSym0 :: TyFun (Maybe a6989586621679419781) a6989586621679419781 -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsNothingSym0 :: TyFun (Maybe a6989586621679419782) Bool -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsJustSym0 :: TyFun (Maybe a6989586621679419783) Bool -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropSym0 :: TyFun Nat (TyFun [a6989586621679458390] [a6989586621679458390] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeSym0 :: TyFun Nat (TyFun [a6989586621679458391] [a6989586621679458391] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679458375 [a6989586621679458375] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsPrecSym0 :: TyFun Nat (TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TakeSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791952) [a6989586621679791952] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DropSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791951) [a6989586621679791951] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SplitAtSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791950) ([a6989586621679791950], [a6989586621679791950]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromIntegerSym0 :: TyFun Nat a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ToEnumSym0 :: TyFun Nat a6989586621679868770 -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromStringSym0 :: TyFun Symbol a6989586621679427380 -> *) # | |
Defined in Data.Singletons.Prelude.IsString Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (JustSym0 :: TyFun a3530822107858468865 (Maybe a3530822107858468865) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((:|@#@$) :: TyFun a6989586621679067720 (TyFun [a6989586621679067720] (NonEmpty a6989586621679067720) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Bool_Sym0 :: TyFun a6989586621679301220 (TyFun a6989586621679301220 (TyFun Bool a6989586621679301220 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Bool Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((==@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((/=@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Eq Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<=@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CompareSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MinSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 a6989586621679315171 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MaxSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 a6989586621679315171 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((>=@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((>@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromMaybeSym0 :: TyFun a6989586621679419780 (TyFun (Maybe a6989586621679419780) a6989586621679419780 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NegateSym0 :: TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((-@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((+@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SignumSym0 :: TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AbsSym0 :: TyFun a6989586621679428050 a6989586621679428050 -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((*@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SubtractSym0 :: TyFun a6989586621679430323 (TyFun a6989586621679430323 a6989586621679430323 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AsTypeOfSym0 :: TyFun a6989586621679435593 (TyFun a6989586621679435593 a6989586621679435593 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IdSym0 :: TyFun a6989586621679435602 a6989586621679435602 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertSym0 :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (DeleteSym0 :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemIndicesSym0 :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemIndexSym0 :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NotElemSym0 :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ElemSym0 :: TyFun a6989586621679458453 (TyFun [a6989586621679458453] Bool -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersperseSym0 :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Show_Sym0 :: TyFun a6989586621679693692 Symbol -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ShowsSym0 :: TyFun a6989586621679693677 (TyFun Symbol Symbol -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Show Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IntersperseSym0 :: TyFun a6989586621679791954 (TyFun (NonEmpty a6989586621679791954) (NonEmpty a6989586621679791954) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InsertSym0 :: TyFun a6989586621679791961 (TyFun [a6989586621679791961] (NonEmpty a6989586621679791961) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((<|@#@$) :: TyFun a6989586621679791972 (TyFun (NonEmpty a6989586621679791972) (NonEmpty a6989586621679791972) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConsSym0 :: TyFun a6989586621679791971 (TyFun (NonEmpty a6989586621679791971) (NonEmpty a6989586621679791971) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromThenToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (EnumFromToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FromEnumSym0 :: TyFun a6989586621679868770 Nat -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (PredSym0 :: TyFun a6989586621679868770 a6989586621679868770 -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SuccSym0 :: TyFun a6989586621679868770 a6989586621679868770 -> *) # | |
Defined in Data.Singletons.Prelude.Enum Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SameKindSym0 :: TyFun k6989586621679026900 (TyFun k6989586621679026900 Constraint -> *) -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (KindOfSym0 :: TyFun k6989586621679026903 * -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (AbsurdSym0 :: TyFun Void a6989586621679296691 -> *) # | |
Defined in Data.Singletons.Prelude.Void Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (NubSym0 :: TyFun (NonEmpty a6989586621679791922) (NonEmpty a6989586621679791922) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((!!@#@$) :: TyFun (NonEmpty a6989586621679791930) (TyFun Nat a6989586621679791930 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Group1Sym0 :: TyFun (NonEmpty a6989586621679791937) (NonEmpty (NonEmpty a6989586621679791937)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ToListSym0 :: TyFun (NonEmpty a6989586621679791968) [a6989586621679791968] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ReverseSym0 :: TyFun (NonEmpty a6989586621679791953) (NonEmpty a6989586621679791953) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortSym0 :: TyFun (NonEmpty a6989586621679791970) (NonEmpty a6989586621679791970) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (InitSym0 :: TyFun (NonEmpty a6989586621679791973) [a6989586621679791973] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LastSym0 :: TyFun (NonEmpty a6989586621679791974) a6989586621679791974 -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TailSym0 :: TyFun (NonEmpty a6989586621679791975) [a6989586621679791975] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (HeadSym0 :: TyFun (NonEmpty a6989586621679791976) a6989586621679791976 -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnconsSym0 :: TyFun (NonEmpty a6989586621679791979) (a6989586621679791979, Maybe (NonEmpty a6989586621679791979)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LengthSym0 :: TyFun (NonEmpty a6989586621679791983) Nat -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (TransposeSym0 :: TyFun (NonEmpty (NonEmpty a6989586621679791920)) (NonEmpty (NonEmpty a6989586621679791920)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldlSym2 :: (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) -> b6989586621679269790 -> TyFun [a6989586621679269789] b6989586621679269790 -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldlSym1 :: (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) -> TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ComparingSym2 :: (TyFun b6989586621679315161 a6989586621679315160 -> Type) -> b6989586621679315161 -> TyFun b6989586621679315161 Ordering -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ComparingSym1 :: (TyFun b6989586621679315161 a6989586621679315160 -> Type) -> TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapMaybeSym1 :: (TyFun a6989586621679419775 (Maybe b6989586621679419776) -> Type) -> TyFun [a6989586621679419775] [b6989586621679419776] -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (($!@#@$$) :: (TyFun a6989586621679435589 b6989586621679435590 -> Type) -> TyFun a6989586621679435589 b6989586621679435590 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (($@#@$$) :: (TyFun a6989586621679435591 b6989586621679435592 -> Type) -> TyFun a6989586621679435591 b6989586621679435592 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapSym1 :: (TyFun a6989586621679435604 b6989586621679435605 -> Type) -> TyFun [a6989586621679435604] [b6989586621679435605] -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldrSym2 :: (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) -> b6989586621679435607 -> TyFun [a6989586621679435606] b6989586621679435607 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldrSym1 :: (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) -> TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldrSym1 :: (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) -> TyFun b6989586621679458459 [a6989586621679458460] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym1 :: (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) -> TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym2 :: (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) -> b6989586621679458469 -> TyFun [a6989586621679458468] [b6989586621679458469] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym1 :: (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) -> TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym2 :: (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) -> b6989586621679458471 -> TyFun [a6989586621679458472] [b6989586621679458471] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConcatMapSym1 :: (TyFun a6989586621679458475 [b6989586621679458476] -> Type) -> TyFun [a6989586621679458475] [b6989586621679458476] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl'Sym2 :: (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) -> b6989586621679458482 -> TyFun [a6989586621679458481] b6989586621679458482 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl'Sym1 :: (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) -> TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupWithSym1 :: (TyFun a6989586621679791941 b6989586621679791940 -> Type) -> TyFun [a6989586621679791941] [NonEmpty a6989586621679791941] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupAllWithSym1 :: (TyFun a6989586621679791939 b6989586621679791938 -> Type) -> TyFun [a6989586621679791939] [NonEmpty a6989586621679791939] -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupWith1Sym1 :: (TyFun a6989586621679791935 b6989586621679791934 -> Type) -> TyFun (NonEmpty a6989586621679791935) (NonEmpty (NonEmpty a6989586621679791935)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapSym1 :: (TyFun a6989586621679791964 b6989586621679791965 -> Type) -> TyFun (NonEmpty a6989586621679791964) (NonEmpty b6989586621679791965) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortWithSym1 :: (TyFun a6989586621679791918 o6989586621679791917 -> Type) -> TyFun (NonEmpty a6989586621679791918) (NonEmpty a6989586621679791918) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupAllWith1Sym1 :: (TyFun a6989586621679791933 b6989586621679791932 -> Type) -> TyFun (NonEmpty a6989586621679791933) (NonEmpty (NonEmpty a6989586621679791933)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym2 :: (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) -> b6989586621679791959 -> TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym1 :: (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) -> TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym2 :: (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) -> b6989586621679791958 -> TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym1 :: (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) -> TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldrSym1 :: (TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) -> TyFun a6989586621679791977 (NonEmpty b6989586621679791978) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldSym1 :: (TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) -> TyFun a6989586621679791981 (NonEmpty b6989586621679791982) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipSym1 :: [a6989586621679458450] -> TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericIndexSym1 :: [a6989586621679950133] -> TyFun i6989586621679950132 a6989586621679950133 -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple2Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Maybe_Sym2 :: b6989586621679418662 -> (TyFun a6989586621679418663 b6989586621679418662 -> Type) -> TyFun (Maybe a6989586621679418663) b6989586621679418662 -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Maybe_Sym1 :: b6989586621679418662 -> TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SeqSym1 :: a6989586621679435587 -> TyFun b6989586621679435588 b6989586621679435588 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConstSym1 :: a6989586621679435600 -> TyFun b6989586621679435601 a6989586621679435600 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LookupSym1 :: a6989586621679458381 -> TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((&@#@$$) :: a6989586621679782850 -> TyFun (TyFun a6989586621679782850 b6989586621679782851 -> Type) b6989586621679782851 -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericReplicateSym1 :: i6989586621679950130 -> TyFun a6989586621679950131 [a6989586621679950131] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericSplitAtSym1 :: i6989586621679950134 -> TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericDropSym1 :: i6989586621679950136 -> TyFun [a6989586621679950137] [a6989586621679950137] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericTakeSym1 :: i6989586621679950138 -> TyFun [a6989586621679950139] [a6989586621679950139] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipSym1 :: NonEmpty a6989586621679791928 -> TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ApplySym1 :: (k16989586621679025039 ~> k26989586621679025040) -> TyFun k16989586621679025039 k26989586621679025040 -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((@@@#@$$) :: (k16989586621679031134 ~> k6989586621679031133) -> TyFun k16989586621679031134 k6989586621679031133 -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldlSym0 :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ComparingSym0 :: TyFun (TyFun b6989586621679315161 a6989586621679315160 -> Type) (TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Ord Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapMaybeSym0 :: TyFun (TyFun a6989586621679419775 (Maybe b6989586621679419776) -> Type) (TyFun [a6989586621679419775] [b6989586621679419776] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (($!@#@$) :: TyFun (TyFun a6989586621679435589 b6989586621679435590 -> Type) (TyFun a6989586621679435589 b6989586621679435590 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (($@#@$) :: TyFun (TyFun a6989586621679435591 b6989586621679435592 -> Type) (TyFun a6989586621679435591 b6989586621679435592 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapSym0 :: TyFun (TyFun a6989586621679435604 b6989586621679435605 -> Type) (TyFun [a6989586621679435604] [b6989586621679435605] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FoldrSym0 :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldrSym0 :: TyFun (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (TyFun b6989586621679458459 [a6989586621679458460] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym0 :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym0 :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConcatMapSym0 :: TyFun (TyFun a6989586621679458475 [b6989586621679458476] -> Type) (TyFun [a6989586621679458475] [b6989586621679458476] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Foldl'Sym0 :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupWithSym0 :: TyFun (TyFun a6989586621679791941 b6989586621679791940 -> Type) (TyFun [a6989586621679791941] [NonEmpty a6989586621679791941] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupAllWithSym0 :: TyFun (TyFun a6989586621679791939 b6989586621679791938 -> Type) (TyFun [a6989586621679791939] [NonEmpty a6989586621679791939] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupWith1Sym0 :: TyFun (TyFun a6989586621679791935 b6989586621679791934 -> Type) (TyFun (NonEmpty a6989586621679791935) (NonEmpty (NonEmpty a6989586621679791935)) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapSym0 :: TyFun (TyFun a6989586621679791964 b6989586621679791965 -> Type) (TyFun (NonEmpty a6989586621679791964) (NonEmpty b6989586621679791965) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SortWithSym0 :: TyFun (TyFun a6989586621679791918 o6989586621679791917 -> Type) (TyFun (NonEmpty a6989586621679791918) (NonEmpty a6989586621679791918) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GroupAllWith1Sym0 :: TyFun (TyFun a6989586621679791933 b6989586621679791932 -> Type) (TyFun (NonEmpty a6989586621679791933) (NonEmpty (NonEmpty a6989586621679791933)) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanlSym0 :: TyFun (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) (TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ScanrSym0 :: TyFun (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) (TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldrSym0 :: TyFun (TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) (TyFun a6989586621679791977 (NonEmpty b6989586621679791978) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnfoldSym0 :: TyFun (TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) (TyFun a6989586621679791981 (NonEmpty b6989586621679791982) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (RightsSym0 :: TyFun [Either a6989586621679940977 b6989586621679940978] [b6989586621679940978] -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LeftsSym0 :: TyFun [Either a6989586621679940979 b6989586621679940980] [a6989586621679940979] -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnzipSym0 :: TyFun [(a6989586621679458438, b6989586621679458439)] ([a6989586621679458438], [b6989586621679458439]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericLengthSym0 :: TyFun [a6989586621679458367] i6989586621679458366 -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipSym0 :: TyFun [a6989586621679458450] (TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericIndexSym0 :: TyFun [a6989586621679950133] (TyFun i6989586621679950132 a6989586621679950133 -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsRightSym0 :: TyFun (Either a6989586621679940971 b6989586621679940972) Bool -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (IsLeftSym0 :: TyFun (Either a6989586621679940973 b6989586621679940974) Bool -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SwapSym0 :: TyFun (a6989586621679297381, b6989586621679297382) (b6989586621679297382, a6989586621679297381) -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SndSym0 :: TyFun (a6989586621679297389, b6989586621679297390) b6989586621679297390 -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FstSym0 :: TyFun (a6989586621679297391, b6989586621679297392) a6989586621679297391 -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LeftSym0 :: TyFun a6989586621679083011 (Either a6989586621679083011 b6989586621679083012) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (RightSym0 :: TyFun b6989586621679083012 (Either a6989586621679083011 b6989586621679083012) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ErrorSym0 :: TyFun k06989586621679393131 k6989586621679393132 -> *) # | |
Defined in Data.Singletons.TypeLits.Internal Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Maybe_Sym0 :: TyFun b6989586621679418662 (TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Maybe Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (SeqSym0 :: TyFun a6989586621679435587 (TyFun b6989586621679435588 b6989586621679435588 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ConstSym0 :: TyFun a6989586621679435600 (TyFun b6989586621679435601 a6989586621679435600 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (LookupSym0 :: TyFun a6989586621679458381 (TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((&@#@$) :: TyFun a6989586621679782850 (TyFun (TyFun a6989586621679782850 b6989586621679782851 -> Type) b6989586621679782851 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericReplicateSym0 :: TyFun i6989586621679950130 (TyFun a6989586621679950131 [a6989586621679950131] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericSplitAtSym0 :: TyFun i6989586621679950134 (TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericDropSym0 :: TyFun i6989586621679950136 (TyFun [a6989586621679950137] [a6989586621679950137] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (GenericTakeSym0 :: TyFun i6989586621679950138 (TyFun [a6989586621679950139] [a6989586621679950139] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UnzipSym0 :: TyFun (NonEmpty (a6989586621679791923, b6989586621679791924)) (NonEmpty a6989586621679791923, NonEmpty b6989586621679791924) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipSym0 :: TyFun (NonEmpty a6989586621679791928) (TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ApplySym0 :: TyFun (k16989586621679025039 ~> k26989586621679025040) (TyFun k16989586621679025039 k26989586621679025040 -> Type) -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((@@@#@$) :: TyFun (k16989586621679031134 ~> k6989586621679031133) (TyFun k16989586621679031134 k6989586621679031133 -> *) -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CurrySym2 :: (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) -> a6989586621679297386 -> TyFun b6989586621679297387 c6989586621679297388 -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CurrySym1 :: (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) -> TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UncurrySym1 :: (TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) -> TyFun (a6989586621679297383, b6989586621679297384) c6989586621679297385 -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FlipSym2 :: (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) -> b6989586621679435595 -> TyFun a6989586621679435594 c6989586621679435596 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FlipSym1 :: (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) -> TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((.@#@$$$) :: (TyFun b6989586621679435597 c6989586621679435598 -> Type) -> (TyFun a6989586621679435599 b6989586621679435597 -> Type) -> TyFun a6989586621679435599 c6989586621679435598 -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((.@#@$$) :: (TyFun b6989586621679435597 c6989586621679435598 -> Type) -> TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym1 :: (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) -> TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym2 :: (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) -> [a6989586621679458444] -> TyFun [b6989586621679458445] [c6989586621679458446] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapAccumRSym1 :: (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) -> TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapAccumRSym2 :: (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) -> acc6989586621679458461 -> TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapAccumLSym1 :: (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) -> TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapAccumLSym2 :: (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) -> acc6989586621679458464 -> TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (OnSym3 :: (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) -> (TyFun a6989586621679782854 b6989586621679782852 -> Type) -> a6989586621679782854 -> TyFun a6989586621679782854 c6989586621679782853 -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (OnSym2 :: (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) -> (TyFun a6989586621679782854 b6989586621679782852 -> Type) -> TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (OnSym1 :: (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) -> TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym2 :: (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) -> NonEmpty a6989586621679791925 -> TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym1 :: (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Either_Sym2 :: (TyFun a6989586621679939843 c6989586621679939844 -> Type) -> (TyFun b6989586621679939845 c6989586621679939844 -> Type) -> TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Either_Sym1 :: (TyFun a6989586621679939843 c6989586621679939844 -> Type) -> TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip3Sym1 :: [a6989586621679458447] -> TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip3Sym2 :: [a6989586621679458447] -> [b6989586621679458448] -> TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple3Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple3Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (CurrySym0 :: TyFun (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) (TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (UncurrySym0 :: TyFun (TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) (TyFun (a6989586621679297383, b6989586621679297384) c6989586621679297385 -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Tuple Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (FlipSym0 :: TyFun (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) (TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings ((.@#@$) :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Base Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym0 :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapAccumRSym0 :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (MapAccumLSym0 :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (OnSym0 :: TyFun (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) (TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Function Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWithSym0 :: TyFun (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Either_Sym0 :: TyFun (TyFun a6989586621679939843 c6989586621679939844 -> Type) (TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Either Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Unzip3Sym0 :: TyFun [(a6989586621679458435, b6989586621679458436, c6989586621679458437)] ([a6989586621679458435], [b6989586621679458436], [c6989586621679458437]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip3Sym0 :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith3Sym1 :: (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) -> TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith3Sym2 :: (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) -> [a6989586621679458440] -> TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith3Sym3 :: (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) -> [a6989586621679458440] -> [b6989586621679458441] -> TyFun [c6989586621679458442] [d6989586621679458443] -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip4Sym3 :: [a6989586621679950184] -> [b6989586621679950185] -> [c6989586621679950186] -> TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip4Sym2 :: [a6989586621679950184] -> [b6989586621679950185] -> TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip4Sym1 :: [a6989586621679950184] -> TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple4Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple4Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple4Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith3Sym0 :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Unzip4Sym0 :: TyFun [(a6989586621679458431, b6989586621679458432, c6989586621679458433, d6989586621679458434)] ([a6989586621679458431], [b6989586621679458432], [c6989586621679458433], [d6989586621679458434]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip4Sym0 :: TyFun [a6989586621679950184] (TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym1 :: (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym2 :: (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950161] -> TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym3 :: (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950161] -> [b6989586621679950162] -> TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym4 :: (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950161] -> [b6989586621679950162] -> [c6989586621679950163] -> TyFun [d6989586621679950164] [e6989586621679950165] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym4 :: [a6989586621679950179] -> [b6989586621679950180] -> [c6989586621679950181] -> [d6989586621679950182] -> TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym3 :: [a6989586621679950179] -> [b6989586621679950180] -> [c6989586621679950181] -> TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym2 :: [a6989586621679950179] -> [b6989586621679950180] -> TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym1 :: [a6989586621679950179] -> TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith4Sym0 :: TyFun (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Unzip5Sym0 :: TyFun [(a6989586621679458426, b6989586621679458427, c6989586621679458428, d6989586621679458429, e6989586621679458430)] ([a6989586621679458426], [b6989586621679458427], [c6989586621679458428], [d6989586621679458429], [e6989586621679458430]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip5Sym0 :: TyFun [a6989586621679950179] (TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym1 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym2 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950155] -> TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym3 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950155] -> [b6989586621679950156] -> TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym4 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950155] -> [b6989586621679950156] -> [c6989586621679950157] -> TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym5 :: (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950155] -> [b6989586621679950156] -> [c6989586621679950157] -> [d6989586621679950158] -> TyFun [e6989586621679950159] [f6989586621679950160] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym5 :: [a6989586621679950173] -> [b6989586621679950174] -> [c6989586621679950175] -> [d6989586621679950176] -> [e6989586621679950177] -> TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym4 :: [a6989586621679950173] -> [b6989586621679950174] -> [c6989586621679950175] -> [d6989586621679950176] -> TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym3 :: [a6989586621679950173] -> [b6989586621679950174] -> [c6989586621679950175] -> TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym2 :: [a6989586621679950173] -> [b6989586621679950174] -> TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym1 :: [a6989586621679950173] -> TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym5 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith5Sym0 :: TyFun (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Unzip6Sym0 :: TyFun [(a6989586621679458420, b6989586621679458421, c6989586621679458422, d6989586621679458423, e6989586621679458424, f6989586621679458425)] ([a6989586621679458420], [b6989586621679458421], [c6989586621679458422], [d6989586621679458423], [e6989586621679458424], [f6989586621679458425]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip6Sym0 :: TyFun [a6989586621679950173] (TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple6Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym1 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym2 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym3 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> [b6989586621679950149] -> TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym4 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> [b6989586621679950149] -> [c6989586621679950150] -> TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym5 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> [b6989586621679950149] -> [c6989586621679950150] -> [d6989586621679950151] -> TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym6 :: (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950148] -> [b6989586621679950149] -> [c6989586621679950150] -> [d6989586621679950151] -> [e6989586621679950152] -> TyFun [f6989586621679950153] [g6989586621679950154] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym6 :: [a6989586621679950166] -> [b6989586621679950167] -> [c6989586621679950168] -> [d6989586621679950169] -> [e6989586621679950170] -> [f6989586621679950171] -> TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym5 :: [a6989586621679950166] -> [b6989586621679950167] -> [c6989586621679950168] -> [d6989586621679950169] -> [e6989586621679950170] -> TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym4 :: [a6989586621679950166] -> [b6989586621679950167] -> [c6989586621679950168] -> [d6989586621679950169] -> TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym3 :: [a6989586621679950166] -> [b6989586621679950167] -> [c6989586621679950168] -> TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym2 :: [a6989586621679950166] -> [b6989586621679950167] -> TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym1 :: [a6989586621679950166] -> TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym6 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> f3530822107858468870 -> TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym5 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym4 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym3 :: a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym2 :: a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym1 :: a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith6Sym0 :: TyFun (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Unzip7Sym0 :: TyFun [(a6989586621679458413, b6989586621679458414, c6989586621679458415, d6989586621679458416, e6989586621679458417, f6989586621679458418, g6989586621679458419)] ([a6989586621679458413], [b6989586621679458414], [c6989586621679458415], [d6989586621679458416], [e6989586621679458417], [f6989586621679458418], [g6989586621679458419]) -> *) # | |
Defined in Data.Singletons.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Zip7Sym0 :: TyFun [a6989586621679950166] (TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (Tuple7Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Singletons.Prelude.Instances Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym1 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym2 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym3 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym4 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> [c6989586621679950142] -> TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym5 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> [c6989586621679950142] -> [d6989586621679950143] -> TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym6 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> [c6989586621679950142] -> [d6989586621679950143] -> [e6989586621679950144] -> TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym7 :: (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679950140] -> [b6989586621679950141] -> [c6989586621679950142] -> [d6989586621679950143] -> [e6989586621679950144] -> [f6989586621679950145] -> TyFun [g6989586621679950146] [h6989586621679950147] -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| SuppressUnusedWarnings (ZipWith7Sym0 :: TyFun (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) # | |
Defined in Data.Promotion.Prelude.List Methods suppressUnusedWarnings :: () # | |
| type Apply (TyCon f :: k1 ~> k5) (x :: k1) # | |
Defined in Data.Singletons.Internal | |
| type Apply (&&@#@$) (l :: Bool) # | |
Defined in Data.Singletons.Prelude.Bool | |
| type Apply (||@#@$) (l :: Bool) # | |
Defined in Data.Singletons.Prelude.Bool | |
| type Apply ShowParenSym0 (l :: Bool) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply ThenCmpSym0 (l :: Ordering) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type Apply (~>@#@$) (l :: Type) # | |
Defined in Data.Singletons | |
| type Apply (^@#@$) (l :: Nat) # | |
Defined in Data.Singletons.TypeLits.Internal | |
| type Apply DivSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply ModSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply QuotSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply RemSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply QuotRemSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply DivModSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply ShowCharSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply ShowStringSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply (<>@#@$) (l :: Symbol) # | |
Defined in Data.Singletons.TypeLits.Internal | |
| type Apply (DropSym0 :: TyFun Nat (TyFun [a6989586621679458390] [a6989586621679458390] -> Type) -> *) (l :: Nat) # | |
| type Apply (TakeSym0 :: TyFun Nat (TyFun [a6989586621679458391] [a6989586621679458391] -> Type) -> *) (l :: Nat) # | |
| type Apply (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679458375 [a6989586621679458375] -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ShowsPrecSym0 :: TyFun Nat (TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> Type) -> *) (l :: Nat) # | |
| type Apply (TakeSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791952) [a6989586621679791952] -> Type) -> *) (l :: Nat) # | |
| type Apply (DropSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791951) [a6989586621679791951] -> Type) -> *) (l :: Nat) # | |
| type Apply (SplitAtSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791950) ([a6989586621679791950], [a6989586621679791950]) -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) (l :: a3530822107858468865) # | |
| type Apply ((:|@#@$) :: TyFun a6989586621679067720 (TyFun [a6989586621679067720] (NonEmpty a6989586621679067720) -> Type) -> *) (l :: a6989586621679067720) # | |
| type Apply (Bool_Sym0 :: TyFun a6989586621679301220 (TyFun a6989586621679301220 (TyFun Bool a6989586621679301220 -> Type) -> Type) -> *) (l :: a6989586621679301220) # | |
| type Apply ((==@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) (l :: a6989586621679303786) # | |
| type Apply ((/=@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) (l :: a6989586621679303786) # | |
| type Apply ((<=@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply (CompareSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type) -> *) (l :: a6989586621679315171) # | |
Defined in Data.Singletons.Prelude.Ord type Apply (CompareSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type) -> *) (l :: a6989586621679315171) = CompareSym1 l | |
| type Apply (MinSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 a6989586621679315171 -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply (MaxSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 a6989586621679315171 -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply ((>=@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply ((>@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply ((<@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply (FromMaybeSym0 :: TyFun a6989586621679419780 (TyFun (Maybe a6989586621679419780) a6989586621679419780 -> Type) -> *) (l :: a6989586621679419780) # | |
Defined in Data.Singletons.Prelude.Maybe type Apply (FromMaybeSym0 :: TyFun a6989586621679419780 (TyFun (Maybe a6989586621679419780) a6989586621679419780 -> Type) -> *) (l :: a6989586621679419780) = FromMaybeSym1 l | |
| type Apply ((-@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) (l :: a6989586621679428050) # | |
| type Apply ((+@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) (l :: a6989586621679428050) # | |
| type Apply ((*@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) (l :: a6989586621679428050) # | |
| type Apply (SubtractSym0 :: TyFun a6989586621679430323 (TyFun a6989586621679430323 a6989586621679430323 -> Type) -> *) (l :: a6989586621679430323) # | |
Defined in Data.Singletons.Prelude.Num type Apply (SubtractSym0 :: TyFun a6989586621679430323 (TyFun a6989586621679430323 a6989586621679430323 -> Type) -> *) (l :: a6989586621679430323) = SubtractSym1 l | |
| type Apply (AsTypeOfSym0 :: TyFun a6989586621679435593 (TyFun a6989586621679435593 a6989586621679435593 -> Type) -> *) (l :: a6989586621679435593) # | |
Defined in Data.Singletons.Prelude.Base type Apply (AsTypeOfSym0 :: TyFun a6989586621679435593 (TyFun a6989586621679435593 a6989586621679435593 -> Type) -> *) (l :: a6989586621679435593) = AsTypeOfSym1 l | |
| type Apply (InsertSym0 :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type) -> *) (l :: a6989586621679458385) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertSym0 :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type) -> *) (l :: a6989586621679458385) = InsertSym1 l | |
| type Apply (DeleteSym0 :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type) -> *) (l :: a6989586621679458412) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteSym0 :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type) -> *) (l :: a6989586621679458412) = DeleteSym1 l | |
| type Apply (ElemIndicesSym0 :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type) -> *) (l :: a6989586621679458401) # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndicesSym0 :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type) -> *) (l :: a6989586621679458401) = ElemIndicesSym1 l | |
| type Apply (ElemIndexSym0 :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type) -> *) (l :: a6989586621679458402) # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndexSym0 :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type) -> *) (l :: a6989586621679458402) = ElemIndexSym1 l | |
| type Apply (NotElemSym0 :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type) -> *) (l :: a6989586621679458452) # | |
Defined in Data.Singletons.Prelude.List type Apply (NotElemSym0 :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type) -> *) (l :: a6989586621679458452) = NotElemSym1 l | |
| type Apply (ElemSym0 :: TyFun a6989586621679458453 (TyFun [a6989586621679458453] Bool -> Type) -> *) (l :: a6989586621679458453) # | |
| type Apply (IntersperseSym0 :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type) -> *) (l :: a6989586621679458488) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersperseSym0 :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type) -> *) (l :: a6989586621679458488) = IntersperseSym1 l | |
| type Apply (ShowsSym0 :: TyFun a6989586621679693677 (TyFun Symbol Symbol -> Type) -> *) (l :: a6989586621679693677) # | |
| type Apply (IntersperseSym0 :: TyFun a6989586621679791954 (TyFun (NonEmpty a6989586621679791954) (NonEmpty a6989586621679791954) -> Type) -> *) (l :: a6989586621679791954) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IntersperseSym0 :: TyFun a6989586621679791954 (TyFun (NonEmpty a6989586621679791954) (NonEmpty a6989586621679791954) -> Type) -> *) (l :: a6989586621679791954) = IntersperseSym1 l | |
| type Apply (InsertSym0 :: TyFun a6989586621679791961 (TyFun [a6989586621679791961] (NonEmpty a6989586621679791961) -> Type) -> *) (l :: a6989586621679791961) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (InsertSym0 :: TyFun a6989586621679791961 (TyFun [a6989586621679791961] (NonEmpty a6989586621679791961) -> Type) -> *) (l :: a6989586621679791961) = InsertSym1 l | |
| type Apply ((<|@#@$) :: TyFun a6989586621679791972 (TyFun (NonEmpty a6989586621679791972) (NonEmpty a6989586621679791972) -> Type) -> *) (l :: a6989586621679791972) # | |
| type Apply (ConsSym0 :: TyFun a6989586621679791971 (TyFun (NonEmpty a6989586621679791971) (NonEmpty a6989586621679791971) -> Type) -> *) (l :: a6989586621679791971) # | |
| type Apply (EnumFromThenToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> Type) -> *) (l :: a6989586621679868770) # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromThenToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> Type) -> *) (l :: a6989586621679868770) = EnumFromThenToSym1 l | |
| type Apply (EnumFromToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) (l :: a6989586621679868770) # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) (l :: a6989586621679868770) = EnumFromToSym1 l | |
| type Apply (SameKindSym0 :: TyFun k6989586621679026900 (TyFun k6989586621679026900 Constraint -> *) -> *) (l :: k6989586621679026900) # | |
Defined in Data.Singletons type Apply (SameKindSym0 :: TyFun k6989586621679026900 (TyFun k6989586621679026900 Constraint -> *) -> *) (l :: k6989586621679026900) = SameKindSym1 l | |
| type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) = (Tuple2Sym1 l :: TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) | |
| type Apply (Bool_Sym1 l1 :: TyFun a6989586621679301220 (TyFun Bool a6989586621679301220 -> Type) -> *) (l2 :: a6989586621679301220) # | |
| type Apply (Maybe_Sym0 :: TyFun b6989586621679418662 (TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> Type) -> *) (l :: b6989586621679418662) # | |
Defined in Data.Singletons.Prelude.Maybe type Apply (Maybe_Sym0 :: TyFun b6989586621679418662 (TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> Type) -> *) (l :: b6989586621679418662) = (Maybe_Sym1 l :: TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> *) | |
| type Apply (SeqSym0 :: TyFun a6989586621679435587 (TyFun b6989586621679435588 b6989586621679435588 -> Type) -> *) (l :: a6989586621679435587) # | |
| type Apply (ConstSym0 :: TyFun a6989586621679435600 (TyFun b6989586621679435601 a6989586621679435600 -> Type) -> *) (l :: a6989586621679435600) # | |
| type Apply (LookupSym0 :: TyFun a6989586621679458381 (TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> Type) -> *) (l :: a6989586621679458381) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (InsertBySym1 l1 :: TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> *) (l2 :: a6989586621679458407) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym1 l1 :: TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> *) (l2 :: a6989586621679458407) = InsertBySym2 l1 l2 | |
| type Apply (DeleteBySym1 l1 :: TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> *) (l2 :: a6989586621679458410) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym1 l1 :: TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> *) (l2 :: a6989586621679458410) = DeleteBySym2 l1 l2 | |
| type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679693692) # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679693692) = ShowsPrecSym2 l1 l2 | |
| type Apply ((&@#@$) :: TyFun a6989586621679782850 (TyFun (TyFun a6989586621679782850 b6989586621679782851 -> Type) b6989586621679782851 -> Type) -> *) (l :: a6989586621679782850) # | |
Defined in Data.Singletons.Prelude.Function | |
| type Apply (EnumFromThenToSym1 l1 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) (l2 :: a6989586621679868770) # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromThenToSym1 l1 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) (l2 :: a6989586621679868770) = EnumFromThenToSym2 l1 l2 | |
| type Apply (GenericReplicateSym0 :: TyFun i6989586621679950130 (TyFun a6989586621679950131 [a6989586621679950131] -> Type) -> *) (l :: i6989586621679950130) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericReplicateSym0 :: TyFun i6989586621679950130 (TyFun a6989586621679950131 [a6989586621679950131] -> Type) -> *) (l :: i6989586621679950130) = (GenericReplicateSym1 l :: TyFun a6989586621679950131 [a6989586621679950131] -> *) | |
| type Apply (GenericSplitAtSym0 :: TyFun i6989586621679950134 (TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> Type) -> *) (l :: i6989586621679950134) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericSplitAtSym0 :: TyFun i6989586621679950134 (TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> Type) -> *) (l :: i6989586621679950134) = (GenericSplitAtSym1 l :: TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> *) | |
| type Apply (GenericDropSym0 :: TyFun i6989586621679950136 (TyFun [a6989586621679950137] [a6989586621679950137] -> Type) -> *) (l :: i6989586621679950136) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericDropSym0 :: TyFun i6989586621679950136 (TyFun [a6989586621679950137] [a6989586621679950137] -> Type) -> *) (l :: i6989586621679950136) = (GenericDropSym1 l :: TyFun [a6989586621679950137] [a6989586621679950137] -> *) | |
| type Apply (GenericTakeSym0 :: TyFun i6989586621679950138 (TyFun [a6989586621679950139] [a6989586621679950139] -> Type) -> *) (l :: i6989586621679950138) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericTakeSym0 :: TyFun i6989586621679950138 (TyFun [a6989586621679950139] [a6989586621679950139] -> Type) -> *) (l :: i6989586621679950138) = (GenericTakeSym1 l :: TyFun [a6989586621679950139] [a6989586621679950139] -> *) | |
| type Apply (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple3Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) | |
| type Apply (FoldlSym1 l1 :: TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> *) (l2 :: b6989586621679269790) # | |
| type Apply (ComparingSym1 l1 :: TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> *) (l2 :: b6989586621679315161) # | |
Defined in Data.Singletons.Prelude.Ord type Apply (ComparingSym1 l1 :: TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> *) (l2 :: b6989586621679315161) = ComparingSym2 l1 l2 | |
| type Apply (FoldrSym1 l1 :: TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> *) (l2 :: b6989586621679435607) # | |
| type Apply (ScanrSym1 l1 :: TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> *) (l2 :: b6989586621679458469) # | |
| type Apply (ScanlSym1 l1 :: TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> *) (l2 :: b6989586621679458471) # | |
| type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> *) (l2 :: b6989586621679458482) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> *) (l2 :: b6989586621679458482) = Foldl'Sym2 l1 l2 | |
| type Apply (ScanlSym1 l1 :: TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> *) (l2 :: b6989586621679791959) # | |
| type Apply (ScanrSym1 l1 :: TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> *) (l2 :: b6989586621679791958) # | |
| type Apply (Tuple3Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple3Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple3Sym2 l1 l2 :: TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) | |
| type Apply (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple4Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) | |
| type Apply (CurrySym1 l1 :: TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> *) (l2 :: a6989586621679297386) # | |
| type Apply (FlipSym1 l1 :: TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> *) (l2 :: b6989586621679435595) # | |
| type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> *) (l2 :: acc6989586621679458461) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> *) (l2 :: acc6989586621679458461) = MapAccumRSym2 l1 l2 | |
| type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> *) (l2 :: acc6989586621679458464) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> *) (l2 :: acc6989586621679458464) = MapAccumLSym2 l1 l2 | |
| type Apply (Tuple4Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple4Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) | |
| type Apply (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple5Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) | |
| type Apply (OnSym2 l1 l2 :: TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> *) (l3 :: a6989586621679782854) # | |
| type Apply (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple4Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) | |
| type Apply (Tuple5Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) | |
| type Apply (Tuple6Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple6Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) | |
| type Apply (Tuple6Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple7Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple7Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (l4 :: d3530822107858468868) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (l4 :: d3530822107858468868) = (Tuple5Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) | |
| type Apply (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) | |
| type Apply (Tuple7Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple7Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) = (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) | |
| type Apply (Tuple7Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple7Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (l5 :: e3530822107858468869) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (l5 :: e3530822107858468869) = (Tuple6Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) | |
| type Apply (Tuple7Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) = (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) | |
| type Apply (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (l5 :: e3530822107858468869) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (l5 :: e3530822107858468869) = (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) | |
| type Apply (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (l6 :: f3530822107858468870) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (l6 :: f3530822107858468870) = (Tuple7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) | |
| type Apply ((++@#@$) :: TyFun [a6989586621679435603] (TyFun [a6989586621679435603] [a6989586621679435603] -> Type) -> *) (l :: [a6989586621679435603]) # | |
| type Apply ((!!@#@$) :: TyFun [a6989586621679458373] (TyFun Nat a6989586621679458373 -> Type) -> *) (l :: [a6989586621679458373]) # | |
| type Apply (UnionSym0 :: TyFun [a6989586621679458368] (TyFun [a6989586621679458368] [a6989586621679458368] -> Type) -> *) (l :: [a6989586621679458368]) # | |
| type Apply ((\\@#@$) :: TyFun [a6989586621679458411] (TyFun [a6989586621679458411] [a6989586621679458411] -> Type) -> *) (l :: [a6989586621679458411]) # | |
| type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type) -> *) (l :: [a6989586621679458456]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type) -> *) (l :: [a6989586621679458456]) = IsPrefixOfSym1 l | |
| type Apply (IsInfixOfSym0 :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type) -> *) (l :: [a6989586621679458454]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsInfixOfSym0 :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type) -> *) (l :: [a6989586621679458454]) = IsInfixOfSym1 l | |
| type Apply (IntersectSym0 :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type) -> *) (l :: [a6989586621679458398]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectSym0 :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type) -> *) (l :: [a6989586621679458398]) = IntersectSym1 l | |
| type Apply (IntercalateSym0 :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type) -> *) (l :: [a6989586621679458487]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntercalateSym0 :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type) -> *) (l :: [a6989586621679458487]) = IntercalateSym1 l | |
| type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type) -> *) (l :: [a6989586621679458455]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type) -> *) (l :: [a6989586621679458455]) = IsSuffixOfSym1 l | |
| type Apply (ShowListSym0 :: TyFun [a6989586621679693692] (TyFun Symbol Symbol -> Type) -> *) (l :: [a6989586621679693692]) # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowListSym0 :: TyFun [a6989586621679693692] (TyFun Symbol Symbol -> Type) -> *) (l :: [a6989586621679693692]) = ShowListSym1 l | |
| type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679791931] (TyFun (NonEmpty a6989586621679791931) Bool -> Type) -> *) (l :: [a6989586621679791931]) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679791931] (TyFun (NonEmpty a6989586621679791931) Bool -> Type) -> *) (l :: [a6989586621679791931]) = IsPrefixOfSym1 l | |
| type Apply (StripPrefixSym0 :: TyFun [a6989586621679950188] (TyFun [a6989586621679950188] (Maybe [a6989586621679950188]) -> Type) -> *) (l :: [a6989586621679950188]) # | |
Defined in Data.Promotion.Prelude.List type Apply (StripPrefixSym0 :: TyFun [a6989586621679950188] (TyFun [a6989586621679950188] (Maybe [a6989586621679950188]) -> Type) -> *) (l :: [a6989586621679950188]) = StripPrefixSym1 l | |
| type Apply ((!!@#@$) :: TyFun (NonEmpty a6989586621679791930) (TyFun Nat a6989586621679791930 -> Type) -> *) (l :: NonEmpty a6989586621679791930) # | |
| type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> *) (l2 :: [a6989586621679458409]) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> *) (l2 :: [a6989586621679458409]) = DeleteFirstsBySym2 l1 l2 | |
| type Apply (UnionBySym1 l1 :: TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> *) (l2 :: [a6989586621679458369]) # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym1 l1 :: TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> *) (l2 :: [a6989586621679458369]) = UnionBySym2 l1 l2 | |
| type Apply (ZipSym0 :: TyFun [a6989586621679458450] (TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> Type) -> *) (l :: [a6989586621679458450]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> *) (l2 :: [a6989586621679458397]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> *) (l2 :: [a6989586621679458397]) = IntersectBySym2 l1 l2 | |
| type Apply (ShowListWithSym1 l1 :: TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> *) (l2 :: [a6989586621679693676]) # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowListWithSym1 l1 :: TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> *) (l2 :: [a6989586621679693676]) = ShowListWithSym2 l1 l2 | |
| type Apply (GenericIndexSym0 :: TyFun [a6989586621679950133] (TyFun i6989586621679950132 a6989586621679950133 -> Type) -> *) (l :: [a6989586621679950133]) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericIndexSym0 :: TyFun [a6989586621679950133] (TyFun i6989586621679950132 a6989586621679950133 -> Type) -> *) (l :: [a6989586621679950133]) = (GenericIndexSym1 l :: TyFun i6989586621679950132 a6989586621679950133 -> *) | |
| type Apply (ZipSym0 :: TyFun (NonEmpty a6989586621679791928) (TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> Type) -> *) (l :: NonEmpty a6989586621679791928) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ZipSym0 :: TyFun (NonEmpty a6989586621679791928) (TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> Type) -> *) (l :: NonEmpty a6989586621679791928) = (ZipSym1 l :: TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> *) | |
| type Apply (Zip3Sym0 :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type) -> *) (l :: [a6989586621679458447]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym0 :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type) -> *) (l :: [a6989586621679458447]) = (Zip3Sym1 l :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) | |
| type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> *) (l2 :: [a6989586621679458444]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> *) (l2 :: [a6989586621679458444]) = ZipWithSym2 l1 l2 | |
| type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) (l2 :: [b6989586621679458448]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) (l2 :: [b6989586621679458448]) = (Zip3Sym2 l1 l2 :: TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> *) | |
| type Apply (Zip4Sym0 :: TyFun [a6989586621679950184] (TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950184]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym0 :: TyFun [a6989586621679950184] (TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950184]) = (Zip4Sym1 l :: TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> *) | |
| type Apply (ZipWithSym1 l1 :: TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> *) (l2 :: NonEmpty a6989586621679791925) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> *) (l2 :: [a6989586621679458440]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> *) (l2 :: [a6989586621679458440]) = ZipWith3Sym2 l1 l2 | |
| type Apply (Zip5Sym0 :: TyFun [a6989586621679950179] (TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950179]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym0 :: TyFun [a6989586621679950179] (TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950179]) = (Zip5Sym1 l :: TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> *) (l2 :: [b6989586621679950185]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> *) (l2 :: [b6989586621679950185]) = (Zip4Sym2 l1 l2 :: TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> *) | |
| type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> *) (l3 :: [b6989586621679458441]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> *) (l3 :: [b6989586621679458441]) = ZipWith3Sym3 l1 l2 l3 | |
| type Apply (ZipWith4Sym1 l1 :: TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950161]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (Zip6Sym0 :: TyFun [a6989586621679950173] (TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950173]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym0 :: TyFun [a6989586621679950173] (TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950173]) = (Zip6Sym1 l :: TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950180]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950180]) = (Zip5Sym2 l1 l2 :: TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> *) | |
| type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> *) (l3 :: [c6989586621679950186]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> *) (l3 :: [c6989586621679950186]) = (Zip4Sym3 l1 l2 l3 :: TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> *) | |
| type Apply (ZipWith5Sym1 l1 :: TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950155]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> *) (l3 :: [b6989586621679950162]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> *) (l3 :: [b6989586621679950162]) = ZipWith4Sym3 l1 l2 l3 | |
| type Apply (Zip7Sym0 :: TyFun [a6989586621679950166] (TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950166]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym0 :: TyFun [a6989586621679950166] (TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950166]) = (Zip7Sym1 l :: TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950174]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950174]) = (Zip6Sym2 l1 l2 :: TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> *) (l3 :: [c6989586621679950181]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> *) (l3 :: [c6989586621679950181]) = (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> *) | |
| type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950148]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950148]) = ZipWith6Sym2 l1 l2 | |
| type Apply (ZipWith5Sym2 l1 l2 :: TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950156]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> *) (l4 :: [c6989586621679950163]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> *) (l4 :: [c6989586621679950163]) = ZipWith4Sym4 l1 l2 l3 l4 | |
| type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950167]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950167]) = (Zip7Sym2 l1 l2 :: TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950175]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950175]) = (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> *) | |
| type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> *) (l4 :: [d6989586621679950182]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> *) (l4 :: [d6989586621679950182]) = (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> *) | |
| type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950140]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950140]) = ZipWith7Sym2 l1 l2 | |
| type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950149]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950149]) = ZipWith6Sym3 l1 l2 l3 | |
| type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> *) (l4 :: [c6989586621679950157]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> *) (l4 :: [c6989586621679950157]) = ZipWith5Sym4 l1 l2 l3 l4 | |
| type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950168]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950168]) = (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> *) (l4 :: [d6989586621679950176]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> *) (l4 :: [d6989586621679950176]) = (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> *) | |
| type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950141]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950141]) = ZipWith7Sym3 l1 l2 l3 | |
| type Apply (ZipWith6Sym3 l1 l2 l3 :: TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679950150]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> *) (l5 :: [d6989586621679950158]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> *) (l5 :: [d6989586621679950158]) = ZipWith5Sym5 l1 l2 l3 l4 l5 | |
| type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679950169]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679950169]) = (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> *) | |
| type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> *) (l5 :: [e6989586621679950177]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> *) (l5 :: [e6989586621679950177]) = (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> *) | |
| type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679950142]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679950142]) = ZipWith7Sym4 l1 l2 l3 l4 | |
| type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> *) (l5 :: [d6989586621679950151]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> *) (l5 :: [d6989586621679950151]) = ZipWith6Sym5 l1 l2 l3 l4 l5 | |
| type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> *) (l5 :: [e6989586621679950170]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> *) (l5 :: [e6989586621679950170]) = (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> *) | |
| type Apply (ZipWith7Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> *) (l5 :: [d6989586621679950143]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> *) (l6 :: [e6989586621679950152]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> *) (l6 :: [e6989586621679950152]) = ZipWith6Sym6 l1 l2 l3 l4 l5 l6 | |
| type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> *) (l6 :: [f6989586621679950171]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> *) (l6 :: [f6989586621679950171]) = (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> *) | |
| type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> *) (l6 :: [e6989586621679950144]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> *) (l6 :: [e6989586621679950144]) = ZipWith7Sym6 l1 l2 l3 l4 l5 l6 | |
| type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> *) (l7 :: [f6989586621679950145]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> *) (l7 :: [f6989586621679950145]) = ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 | |
| type Demote (k1 ~> k2) # | |
Defined in Data.Singletons.Internal | |
| data Sing (f :: k1 ~> k2) # | |
| type Apply ((&@#@$$) l1 :: TyFun (TyFun a b -> Type) b -> *) (l2 :: TyFun a b -> Type) # | |
| type Apply (ShowParenSym1 l1 :: TyFun (TyFun Symbol Symbol -> Type) (TyFun Symbol Symbol -> Type) -> *) (l2 :: TyFun Symbol Symbol -> Type) # | |
| type Apply (NubBySym0 :: TyFun (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (TyFun [a6989586621679458371] [a6989586621679458371] -> Type) -> *) (l :: TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679458380 Bool -> Type) (TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> Type) -> *) (l :: TyFun a6989586621679458380 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (BreakSym0 :: TyFun (TyFun a6989586621679458392 Bool -> Type) (TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> Type) -> *) (l :: TyFun a6989586621679458392 Bool -> Type) # | |
| type Apply (SpanSym0 :: TyFun (TyFun a6989586621679458393 Bool -> Type) (TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> Type) -> *) (l :: TyFun a6989586621679458393 Bool -> Type) # | |
| type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (TyFun [a6989586621679458383] [[a6989586621679458383]] -> Type) -> *) (l :: TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679458395 Bool -> Type) (TyFun [a6989586621679458395] [a6989586621679458395] -> Type) -> *) (l :: TyFun a6989586621679458395 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679458396 Bool -> Type) (TyFun [a6989586621679458396] [a6989586621679458396] -> Type) -> *) (l :: TyFun a6989586621679458396 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FilterSym0 :: TyFun (TyFun a6989586621679458404 Bool -> Type) (TyFun [a6989586621679458404] [a6989586621679458404] -> Type) -> *) (l :: TyFun a6989586621679458404 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FindSym0 :: TyFun (TyFun a6989586621679458403 Bool -> Type) (TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> Type) -> *) (l :: TyFun a6989586621679458403 Bool -> Type) # | |
| type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) = InsertBySym1 l | |
| type Apply (SortBySym0 :: TyFun (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (TyFun [a6989586621679458408] [a6989586621679458408] -> Type) -> *) (l :: TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) = DeleteBySym1 l | |
| type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) = DeleteFirstsBySym1 l | |
| type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) = UnionBySym1 l | |
| type Apply (FindIndicesSym0 :: TyFun (TyFun a6989586621679458399 Bool -> Type) (TyFun [a6989586621679458399] [Nat] -> Type) -> *) (l :: TyFun a6989586621679458399 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FindIndexSym0 :: TyFun (TyFun a6989586621679458400 Bool -> Type) (TyFun [a6989586621679458400] (Maybe Nat) -> Type) -> *) (l :: TyFun a6989586621679458400 Bool -> Type) # | |
| type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type) -> *) (l :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type) -> *) (l :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) = Scanr1Sym1 l | |
| type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type) -> *) (l :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type) -> *) (l :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) = Scanl1Sym1 l | |
| type Apply (AnySym0 :: TyFun (TyFun a6989586621679458473 Bool -> Type) (TyFun [a6989586621679458473] Bool -> Type) -> *) (l :: TyFun a6989586621679458473 Bool -> Type) # | |
| type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) = IntersectBySym1 l | |
| type Apply (AllSym0 :: TyFun (TyFun a6989586621679458474 Bool -> Type) (TyFun [a6989586621679458474] Bool -> Type) -> *) (l :: TyFun a6989586621679458474 Bool -> Type) # | |
| type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type) -> *) (l :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type) -> *) (l :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) = Foldr1Sym1 l | |
| type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type) -> *) (l :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type) -> *) (l :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) = Foldl1Sym1 l | |
| type Apply (MaximumBySym0 :: TyFun (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (TyFun [a6989586621679458406] a6989586621679458406 -> Type) -> *) (l :: TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (MinimumBySym0 :: TyFun (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (TyFun [a6989586621679458405] a6989586621679458405 -> Type) -> *) (l :: TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type) -> *) (l :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type) -> *) (l :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) = Foldl1'Sym1 l | |
| type Apply (DropWhileEndSym0 :: TyFun (TyFun a6989586621679458394 Bool -> Type) (TyFun [a6989586621679458394] [a6989586621679458394] -> Type) -> *) (l :: TyFun a6989586621679458394 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ShowListWithSym0 :: TyFun (TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) (TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> Type) -> *) (l :: TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply (NubBySym0 :: TyFun (TyFun a6989586621679791921 (TyFun a6989586621679791921 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791921) (NonEmpty a6989586621679791921) -> Type) -> *) (l :: TyFun a6989586621679791921 (TyFun a6989586621679791921 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679791942 (TyFun a6989586621679791942 Bool -> Type) -> Type) (TyFun [a6989586621679791942] [NonEmpty a6989586621679791942] -> Type) -> *) (l :: TyFun a6989586621679791942 (TyFun a6989586621679791942 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupBy1Sym0 :: TyFun (TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791936) (NonEmpty (NonEmpty a6989586621679791936)) -> Type) -> *) (l :: TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (GroupBy1Sym0 :: TyFun (TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791936) (NonEmpty (NonEmpty a6989586621679791936)) -> Type) -> *) (l :: TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) = GroupBy1Sym1 l | |
| type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679791949 Bool -> Type) (TyFun (NonEmpty a6989586621679791949) [a6989586621679791949] -> Type) -> *) (l :: TyFun a6989586621679791949 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679791948 Bool -> Type) (TyFun (NonEmpty a6989586621679791948) [a6989586621679791948] -> Type) -> *) (l :: TyFun a6989586621679791948 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (SpanSym0 :: TyFun (TyFun a6989586621679791947 Bool -> Type) (TyFun (NonEmpty a6989586621679791947) ([a6989586621679791947], [a6989586621679791947]) -> Type) -> *) (l :: TyFun a6989586621679791947 Bool -> Type) # | |
| type Apply (BreakSym0 :: TyFun (TyFun a6989586621679791946 Bool -> Type) (TyFun (NonEmpty a6989586621679791946) ([a6989586621679791946], [a6989586621679791946]) -> Type) -> *) (l :: TyFun a6989586621679791946 Bool -> Type) # | |
| type Apply (FilterSym0 :: TyFun (TyFun a6989586621679791945 Bool -> Type) (TyFun (NonEmpty a6989586621679791945) [a6989586621679791945] -> Type) -> *) (l :: TyFun a6989586621679791945 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679791944 Bool -> Type) (TyFun (NonEmpty a6989586621679791944) ([a6989586621679791944], [a6989586621679791944]) -> Type) -> *) (l :: TyFun a6989586621679791944 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (SortBySym0 :: TyFun (TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679791919) (NonEmpty a6989586621679791919) -> Type) -> *) (l :: TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (SortBySym0 :: TyFun (TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679791919) (NonEmpty a6989586621679791919) -> Type) -> *) (l :: TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) = SortBySym1 l | |
| type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791956) (NonEmpty a6989586621679791956) -> Type) -> *) (l :: TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791956) (NonEmpty a6989586621679791956) -> Type) -> *) (l :: TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) = Scanl1Sym1 l | |
| type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791955) (NonEmpty a6989586621679791955) -> Type) -> *) (l :: TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791955) (NonEmpty a6989586621679791955) -> Type) -> *) (l :: TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) = Scanr1Sym1 l | |
| type Apply (UntilSym0 :: TyFun (TyFun a6989586621679987157 Bool -> Type) (TyFun (TyFun a6989586621679987157 a6989586621679987157 -> Type) (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> Type) -> *) (l :: TyFun a6989586621679987157 Bool -> Type) # | |
Defined in Data.Promotion.Prelude.Base | |
| type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type) -> *) (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type) -> *) (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) = FoldlSym1 l | |
| type Apply (ComparingSym0 :: TyFun (TyFun b6989586621679315161 a6989586621679315160 -> Type) (TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> Type) -> *) (l :: TyFun b6989586621679315161 a6989586621679315160 -> Type) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type Apply (MapMaybeSym0 :: TyFun (TyFun a6989586621679419775 (Maybe b6989586621679419776) -> Type) (TyFun [a6989586621679419775] [b6989586621679419776] -> Type) -> *) (l :: TyFun a6989586621679419775 (Maybe b6989586621679419776) -> Type) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (($!@#@$) :: TyFun (TyFun a6989586621679435589 b6989586621679435590 -> Type) (TyFun a6989586621679435589 b6989586621679435590 -> Type) -> *) (l :: TyFun a6989586621679435589 b6989586621679435590 -> Type) # | |
| type Apply (($@#@$) :: TyFun (TyFun a6989586621679435591 b6989586621679435592 -> Type) (TyFun a6989586621679435591 b6989586621679435592 -> Type) -> *) (l :: TyFun a6989586621679435591 b6989586621679435592 -> Type) # | |
| type Apply (MapSym0 :: TyFun (TyFun a6989586621679435604 b6989586621679435605 -> Type) (TyFun [a6989586621679435604] [b6989586621679435605] -> Type) -> *) (l :: TyFun a6989586621679435604 b6989586621679435605 -> Type) # | |
| type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Base type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) = FoldrSym1 l | |
| type Apply (UnfoldrSym0 :: TyFun (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (TyFun b6989586621679458459 [a6989586621679458460] -> Type) -> *) (l :: TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) = ScanrSym1 l | |
| type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type) -> *) (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type) -> *) (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) = ScanlSym1 l | |
| type Apply (ConcatMapSym0 :: TyFun (TyFun a6989586621679458475 [b6989586621679458476] -> Type) (TyFun [a6989586621679458475] [b6989586621679458476] -> Type) -> *) (l :: TyFun a6989586621679458475 [b6989586621679458476] -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type) -> *) (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type) -> *) (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) = Foldl'Sym1 l | |
| type Apply (GroupWithSym0 :: TyFun (TyFun a6989586621679791941 b6989586621679791940 -> Type) (TyFun [a6989586621679791941] [NonEmpty a6989586621679791941] -> Type) -> *) (l :: TyFun a6989586621679791941 b6989586621679791940 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupAllWithSym0 :: TyFun (TyFun a6989586621679791939 b6989586621679791938 -> Type) (TyFun [a6989586621679791939] [NonEmpty a6989586621679791939] -> Type) -> *) (l :: TyFun a6989586621679791939 b6989586621679791938 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupWith1Sym0 :: TyFun (TyFun a6989586621679791935 b6989586621679791934 -> Type) (TyFun (NonEmpty a6989586621679791935) (NonEmpty (NonEmpty a6989586621679791935)) -> Type) -> *) (l :: TyFun a6989586621679791935 b6989586621679791934 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (MapSym0 :: TyFun (TyFun a6989586621679791964 b6989586621679791965 -> Type) (TyFun (NonEmpty a6989586621679791964) (NonEmpty b6989586621679791965) -> Type) -> *) (l :: TyFun a6989586621679791964 b6989586621679791965 -> Type) # | |
| type Apply (SortWithSym0 :: TyFun (TyFun a6989586621679791918 o6989586621679791917 -> Type) (TyFun (NonEmpty a6989586621679791918) (NonEmpty a6989586621679791918) -> Type) -> *) (l :: TyFun a6989586621679791918 o6989586621679791917 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupAllWith1Sym0 :: TyFun (TyFun a6989586621679791933 b6989586621679791932 -> Type) (TyFun (NonEmpty a6989586621679791933) (NonEmpty (NonEmpty a6989586621679791933)) -> Type) -> *) (l :: TyFun a6989586621679791933 b6989586621679791932 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) (TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> Type) -> *) (l :: TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) (TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> Type) -> *) (l :: TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) = ScanlSym1 l | |
| type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) (TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> Type) -> *) (l :: TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) (TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> Type) -> *) (l :: TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) = ScanrSym1 l | |
| type Apply (UnfoldrSym0 :: TyFun (TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) (TyFun a6989586621679791977 (NonEmpty b6989586621679791978) -> Type) -> *) (l :: TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (UnfoldrSym0 :: TyFun (TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) (TyFun a6989586621679791977 (NonEmpty b6989586621679791978) -> Type) -> *) (l :: TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) = UnfoldrSym1 l | |
| type Apply (UnfoldSym0 :: TyFun (TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) (TyFun a6989586621679791981 (NonEmpty b6989586621679791982) -> Type) -> *) (l :: TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (UnfoldSym0 :: TyFun (TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) (TyFun a6989586621679791981 (NonEmpty b6989586621679791982) -> Type) -> *) (l :: TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) = UnfoldSym1 l | |
| type Apply (UntilSym1 l1 :: TyFun (TyFun a6989586621679987157 a6989586621679987157 -> Type) (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> *) (l2 :: TyFun a6989586621679987157 a6989586621679987157 -> Type) # | |
| type Apply (ApplySym0 :: TyFun (k16989586621679025039 ~> k26989586621679025040) (TyFun k16989586621679025039 k26989586621679025040 -> Type) -> *) (l :: k16989586621679025039 ~> k26989586621679025040) # | |
| type Apply ((@@@#@$) :: TyFun (k16989586621679031134 ~> k6989586621679031133) (TyFun k16989586621679031134 k6989586621679031133 -> *) -> *) (l :: k16989586621679031134 ~> k6989586621679031133) # | |
| type Apply (CurrySym0 :: TyFun (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) (TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> Type) -> *) (l :: TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) # | |
Defined in Data.Singletons.Prelude.Tuple type Apply (CurrySym0 :: TyFun (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) (TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> Type) -> *) (l :: TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) = CurrySym1 l | |
| type Apply (UncurrySym0 :: TyFun (TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) (TyFun (a6989586621679297383, b6989586621679297384) c6989586621679297385 -> Type) -> *) (l :: TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Tuple type Apply (UncurrySym0 :: TyFun (TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) (TyFun (a6989586621679297383, b6989586621679297384) c6989586621679297385 -> Type) -> *) (l :: TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) = UncurrySym1 l | |
| type Apply (Maybe_Sym1 l1 :: TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> *) (l2 :: TyFun a6989586621679418663 b6989586621679418662 -> Type) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (FlipSym0 :: TyFun (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) (TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Base type Apply (FlipSym0 :: TyFun (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) (TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) = FlipSym1 l | |
| type Apply ((.@#@$) :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type) -> *) (l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) # | |
Defined in Data.Singletons.Prelude.Base type Apply ((.@#@$) :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type) -> *) (l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) = ((.@#@$$) l :: TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> *) | |
| type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) = ZipWithSym1 l | |
| type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) = MapAccumRSym1 l | |
| type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) = MapAccumLSym1 l | |
| type Apply (OnSym0 :: TyFun (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) (TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> Type) -> *) (l :: TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Function type Apply (OnSym0 :: TyFun (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) (TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> Type) -> *) (l :: TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) = (OnSym1 l :: TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> *) | |
| type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> Type) -> *) (l :: TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> Type) -> *) (l :: TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) = ZipWithSym1 l | |
| type Apply (Either_Sym0 :: TyFun (TyFun a6989586621679939843 c6989586621679939844 -> Type) (TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> Type) -> *) (l :: TyFun a6989586621679939843 c6989586621679939844 -> Type) # | |
Defined in Data.Singletons.Prelude.Either type Apply (Either_Sym0 :: TyFun (TyFun a6989586621679939843 c6989586621679939844 -> Type) (TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> Type) -> *) (l :: TyFun a6989586621679939843 c6989586621679939844 -> Type) = (Either_Sym1 l :: TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> *) | |
| type Apply ((.@#@$$) l1 :: TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> *) (l2 :: TyFun a6989586621679435599 b6989586621679435597 -> Type) # | |
| type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) = ZipWith3Sym1 l | |
| type Apply (OnSym1 l1 :: TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> *) (l2 :: TyFun a6989586621679782854 b6989586621679782852 -> Type) # | |
Defined in Data.Singletons.Prelude.Function | |
| type Apply (Either_Sym1 l1 :: TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> *) (l2 :: TyFun b6989586621679939845 c6989586621679939844 -> Type) # | |
Defined in Data.Singletons.Prelude.Either | |
| type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) = ZipWith4Sym1 l | |
| type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith5Sym1 l | |
| type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith6Sym1 l | |
| type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith7Sym1 l | |
type (~>) a b = TyFun a b -> * infixr 0 #
Something of kind `a ~> b` is a defunctionalized type function that is not necessarily generative or injective.
type TyCon1 = (TyCon :: (k1 -> k2) -> k1 ~> k2) #
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)) #
Similar to TyCon1, but for two-parameter type constructors.
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 #
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 #
Type level function application
Instances
| type Apply NotSym0 (l :: Bool) # | |
Defined in Data.Singletons.Prelude.Bool | |
| type Apply DemoteSym0 (l :: Type) # | |
Defined in Data.Singletons | |
| type Apply KnownNatSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply Log2Sym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply KnownSymbolSym0 (l :: Symbol) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply ShowCommaSpaceSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply ShowSpaceSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply ((&&@#@$$) l1 :: TyFun Bool Bool -> *) (l2 :: Bool) # | |
| type Apply ((||@#@$$) l1 :: TyFun Bool Bool -> *) (l2 :: Bool) # | |
| type Apply (ThenCmpSym1 l1 :: TyFun Ordering Ordering -> *) (l2 :: Ordering) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type Apply ((^@#@$$) l1 :: TyFun Nat Nat -> *) (l2 :: Nat) # | |
| type Apply (DivSym1 l1 :: TyFun Nat Nat -> *) (l2 :: Nat) # | |
| type Apply (ModSym1 l1 :: TyFun Nat Nat -> *) (l2 :: Nat) # | |
| type Apply (QuotSym1 l1 :: TyFun Nat Nat -> *) (l2 :: Nat) # | |
| type Apply (RemSym1 l1 :: TyFun Nat Nat -> *) (l2 :: Nat) # | |
| type Apply (FromIntegerSym0 :: TyFun Nat k2 -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.Num | |
| type Apply (ToEnumSym0 :: TyFun Nat k2 -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.Enum | |
| type Apply ((<>@#@$$) l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) # | |
| type Apply (ShowCharSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply (ShowStringSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply (FromStringSym0 :: TyFun Symbol k2 -> *) (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.IsString | |
| type Apply (NegateSym0 :: TyFun a a -> *) (l :: a) # | |
Defined in Data.Singletons.Prelude.Num | |
| type Apply (SignumSym0 :: TyFun a a -> *) (l :: a) # | |
Defined in Data.Singletons.Prelude.Num | |
| type Apply (AbsSym0 :: TyFun a a -> *) (l :: a) # | |
| type Apply (IdSym0 :: TyFun a a -> *) (l :: a) # | |
| type Apply (Show_Sym0 :: TyFun a Symbol -> *) (l :: a) # | |
| type Apply (FromEnumSym0 :: TyFun a Nat -> *) (l :: a) # | |
Defined in Data.Singletons.Prelude.Enum | |
| type Apply (PredSym0 :: TyFun a a -> *) (l :: a) # | |
| type Apply (SuccSym0 :: TyFun a a -> *) (l :: a) # | |
| type Apply (AbsurdSym0 :: TyFun Void k2 -> *) (l :: Void) # | |
Defined in Data.Singletons.Prelude.Void | |
| type Apply ((!!@#@$$) l1 :: TyFun Nat a -> *) (l2 :: Nat) # | |
| type Apply ((!!@#@$$) l1 :: TyFun Nat a -> *) (l2 :: Nat) # | |
| type Apply (ShowListSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply (ShowsSym1 l1 :: TyFun Symbol Symbol -> *) (l2 :: Symbol) # | |
| type Apply (ShowParenSym2 l1 l2 :: TyFun Symbol Symbol -> *) (l3 :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply ((==@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) # | |
| type Apply ((/=@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) # | |
| type Apply ((<=@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) # | |
| type Apply (CompareSym1 l1 :: TyFun a Ordering -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type Apply (MinSym1 l1 :: TyFun a a -> *) (l2 :: a) # | |
| type Apply (MaxSym1 l1 :: TyFun a a -> *) (l2 :: a) # | |
| type Apply ((>=@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) # | |
| type Apply ((>@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) # | |
| type Apply ((<@#@$$) l1 :: TyFun a Bool -> *) (l2 :: a) # | |
| type Apply (ErrorSym0 :: TyFun k0 k2 -> *) (l :: k0) # | |
| type Apply ((-@#@$$) l1 :: TyFun a a -> *) (l2 :: a) # | |
| type Apply ((+@#@$$) l1 :: TyFun a a -> *) (l2 :: a) # | |
| type Apply ((*@#@$$) l1 :: TyFun a a -> *) (l2 :: a) # | |
| type Apply (SubtractSym1 l1 :: TyFun a a -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.Num | |
| type Apply (AsTypeOfSym1 l1 :: TyFun a a -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.Base | |
| type Apply (SameKindSym1 l1 :: TyFun k Constraint -> *) (l2 :: k) # | |
Defined in Data.Singletons | |
| type Apply (Bool_Sym2 l1 l2 :: TyFun Bool a -> *) (l3 :: Bool) # | |
| type Apply (ShowsPrecSym2 l1 l2 :: TyFun Symbol Symbol -> *) (l3 :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply (ShowListWithSym2 l1 l2 :: TyFun Symbol Symbol -> *) (l3 :: Symbol) # | |
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) # | |
| type Apply (($!@#@$$) l1 :: TyFun a b -> *) (l2 :: a) # | |
| type Apply (($@#@$$) l1 :: TyFun a b -> *) (l2 :: a) # | |
| type Apply (ConstSym1 l1 :: TyFun b a -> *) (l2 :: b) # | |
| type Apply (ApplySym1 l1 :: TyFun k1 k2 -> *) (l2 :: k1) # | |
| type Apply ((@@@#@$$) l1 :: TyFun k1 k -> *) (l2 :: k1) # | |
| type Apply (GenericIndexSym1 l1 :: TyFun i a -> *) (l2 :: i) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (UntilSym2 l1 l2 :: TyFun a a -> *) (l3 :: a) # | |
| type Apply (TyCon f :: k1 ~> k5) (x :: k1) # | |
Defined in Data.Singletons.Internal | |
| type Apply (ComparingSym2 l1 l2 :: TyFun b Ordering -> *) (l3 :: b) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type Apply (CurrySym2 l1 l2 :: TyFun b c -> *) (l3 :: b) # | |
| type Apply (FlipSym2 l1 l2 :: TyFun a c -> *) (l3 :: a) # | |
| type Apply (l1 .@#@$$$ l2 :: TyFun a c -> *) (l3 :: a) # | |
| type Apply (OnSym3 l1 l2 l3 :: TyFun a c -> *) (l4 :: a) # | |
| type Apply ((~>@#@$$) l1 :: TyFun Type * -> *) (l2 :: Type) # | |
| type Apply (JustSym0 :: TyFun a (Maybe a) -> *) (l :: a) # | |
| type Apply (KindOfSym0 :: TyFun k * -> *) (l :: k) # | |
Defined in Data.Singletons | |
| type Apply (ReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (EnumFromToSym1 l1 :: TyFun a [a] -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.Enum | |
| type Apply (UnfoldrSym1 l1 :: TyFun b [a] -> *) (l2 :: b) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (UnfoldrSym1 l1 :: TyFun a (NonEmpty b) -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (UnfoldSym1 l1 :: TyFun a (NonEmpty b) -> *) (l2 :: a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (EnumFromThenToSym2 l1 l2 :: TyFun a [a] -> *) (l3 :: a) # | |
Defined in Data.Singletons.Prelude.Enum | |
| type Apply (GenericReplicateSym1 l1 :: TyFun a [a] -> *) (l2 :: a) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (&&@#@$) (l :: Bool) # | |
Defined in Data.Singletons.Prelude.Bool | |
| type Apply (||@#@$) (l :: Bool) # | |
Defined in Data.Singletons.Prelude.Bool | |
| type Apply ShowParenSym0 (l :: Bool) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply ThenCmpSym0 (l :: Ordering) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type Apply (~>@#@$) (l :: Type) # | |
Defined in Data.Singletons | |
| type Apply (^@#@$) (l :: Nat) # | |
Defined in Data.Singletons.TypeLits.Internal | |
| type Apply DivSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply ModSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply QuotSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply RemSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply QuotRemSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply DivModSym0 (l :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply ShowCharSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply ShowStringSym0 (l :: Symbol) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply (<>@#@$) (l :: Symbol) # | |
Defined in Data.Singletons.TypeLits.Internal | |
| type Apply (DropSym0 :: TyFun Nat (TyFun [a6989586621679458390] [a6989586621679458390] -> Type) -> *) (l :: Nat) # | |
| type Apply (TakeSym0 :: TyFun Nat (TyFun [a6989586621679458391] [a6989586621679458391] -> Type) -> *) (l :: Nat) # | |
| type Apply (SplitAtSym0 :: TyFun Nat (TyFun [a6989586621679458389] ([a6989586621679458389], [a6989586621679458389]) -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ReplicateSym0 :: TyFun Nat (TyFun a6989586621679458375 [a6989586621679458375] -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ShowsPrecSym0 :: TyFun Nat (TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> Type) -> *) (l :: Nat) # | |
| type Apply (TakeSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791952) [a6989586621679791952] -> Type) -> *) (l :: Nat) # | |
| type Apply (DropSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791951) [a6989586621679791951] -> Type) -> *) (l :: Nat) # | |
| type Apply (SplitAtSym0 :: TyFun Nat (TyFun (NonEmpty a6989586621679791950) ([a6989586621679791950], [a6989586621679791950]) -> Type) -> *) (l :: Nat) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (QuotRemSym1 l1 :: TyFun Nat (Nat, Nat) -> *) (l2 :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply (DivModSym1 l1 :: TyFun Nat (Nat, Nat) -> *) (l2 :: Nat) # | |
Defined in Data.Singletons.TypeLits | |
| type Apply ((:@#@$) :: TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) (l :: a3530822107858468865) # | |
| type Apply ((:|@#@$) :: TyFun a6989586621679067720 (TyFun [a6989586621679067720] (NonEmpty a6989586621679067720) -> Type) -> *) (l :: a6989586621679067720) # | |
| type Apply (Bool_Sym0 :: TyFun a6989586621679301220 (TyFun a6989586621679301220 (TyFun Bool a6989586621679301220 -> Type) -> Type) -> *) (l :: a6989586621679301220) # | |
| type Apply ((==@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) (l :: a6989586621679303786) # | |
| type Apply ((/=@#@$) :: TyFun a6989586621679303786 (TyFun a6989586621679303786 Bool -> Type) -> *) (l :: a6989586621679303786) # | |
| type Apply ((<=@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply (CompareSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type) -> *) (l :: a6989586621679315171) # | |
Defined in Data.Singletons.Prelude.Ord type Apply (CompareSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Ordering -> Type) -> *) (l :: a6989586621679315171) = CompareSym1 l | |
| type Apply (MinSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 a6989586621679315171 -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply (MaxSym0 :: TyFun a6989586621679315171 (TyFun a6989586621679315171 a6989586621679315171 -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply ((>=@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply ((>@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply ((<@#@$) :: TyFun a6989586621679315171 (TyFun a6989586621679315171 Bool -> Type) -> *) (l :: a6989586621679315171) # | |
| type Apply (FromMaybeSym0 :: TyFun a6989586621679419780 (TyFun (Maybe a6989586621679419780) a6989586621679419780 -> Type) -> *) (l :: a6989586621679419780) # | |
Defined in Data.Singletons.Prelude.Maybe type Apply (FromMaybeSym0 :: TyFun a6989586621679419780 (TyFun (Maybe a6989586621679419780) a6989586621679419780 -> Type) -> *) (l :: a6989586621679419780) = FromMaybeSym1 l | |
| type Apply ((-@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) (l :: a6989586621679428050) # | |
| type Apply ((+@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) (l :: a6989586621679428050) # | |
| type Apply ((*@#@$) :: TyFun a6989586621679428050 (TyFun a6989586621679428050 a6989586621679428050 -> Type) -> *) (l :: a6989586621679428050) # | |
| type Apply (SubtractSym0 :: TyFun a6989586621679430323 (TyFun a6989586621679430323 a6989586621679430323 -> Type) -> *) (l :: a6989586621679430323) # | |
Defined in Data.Singletons.Prelude.Num type Apply (SubtractSym0 :: TyFun a6989586621679430323 (TyFun a6989586621679430323 a6989586621679430323 -> Type) -> *) (l :: a6989586621679430323) = SubtractSym1 l | |
| type Apply (AsTypeOfSym0 :: TyFun a6989586621679435593 (TyFun a6989586621679435593 a6989586621679435593 -> Type) -> *) (l :: a6989586621679435593) # | |
Defined in Data.Singletons.Prelude.Base type Apply (AsTypeOfSym0 :: TyFun a6989586621679435593 (TyFun a6989586621679435593 a6989586621679435593 -> Type) -> *) (l :: a6989586621679435593) = AsTypeOfSym1 l | |
| type Apply (InsertSym0 :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type) -> *) (l :: a6989586621679458385) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertSym0 :: TyFun a6989586621679458385 (TyFun [a6989586621679458385] [a6989586621679458385] -> Type) -> *) (l :: a6989586621679458385) = InsertSym1 l | |
| type Apply (DeleteSym0 :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type) -> *) (l :: a6989586621679458412) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteSym0 :: TyFun a6989586621679458412 (TyFun [a6989586621679458412] [a6989586621679458412] -> Type) -> *) (l :: a6989586621679458412) = DeleteSym1 l | |
| type Apply (ElemIndicesSym0 :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type) -> *) (l :: a6989586621679458401) # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndicesSym0 :: TyFun a6989586621679458401 (TyFun [a6989586621679458401] [Nat] -> Type) -> *) (l :: a6989586621679458401) = ElemIndicesSym1 l | |
| type Apply (ElemIndexSym0 :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type) -> *) (l :: a6989586621679458402) # | |
Defined in Data.Singletons.Prelude.List type Apply (ElemIndexSym0 :: TyFun a6989586621679458402 (TyFun [a6989586621679458402] (Maybe Nat) -> Type) -> *) (l :: a6989586621679458402) = ElemIndexSym1 l | |
| type Apply (NotElemSym0 :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type) -> *) (l :: a6989586621679458452) # | |
Defined in Data.Singletons.Prelude.List type Apply (NotElemSym0 :: TyFun a6989586621679458452 (TyFun [a6989586621679458452] Bool -> Type) -> *) (l :: a6989586621679458452) = NotElemSym1 l | |
| type Apply (ElemSym0 :: TyFun a6989586621679458453 (TyFun [a6989586621679458453] Bool -> Type) -> *) (l :: a6989586621679458453) # | |
| type Apply (IntersperseSym0 :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type) -> *) (l :: a6989586621679458488) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersperseSym0 :: TyFun a6989586621679458488 (TyFun [a6989586621679458488] [a6989586621679458488] -> Type) -> *) (l :: a6989586621679458488) = IntersperseSym1 l | |
| type Apply (ShowsSym0 :: TyFun a6989586621679693677 (TyFun Symbol Symbol -> Type) -> *) (l :: a6989586621679693677) # | |
| type Apply (IntersperseSym0 :: TyFun a6989586621679791954 (TyFun (NonEmpty a6989586621679791954) (NonEmpty a6989586621679791954) -> Type) -> *) (l :: a6989586621679791954) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IntersperseSym0 :: TyFun a6989586621679791954 (TyFun (NonEmpty a6989586621679791954) (NonEmpty a6989586621679791954) -> Type) -> *) (l :: a6989586621679791954) = IntersperseSym1 l | |
| type Apply (InsertSym0 :: TyFun a6989586621679791961 (TyFun [a6989586621679791961] (NonEmpty a6989586621679791961) -> Type) -> *) (l :: a6989586621679791961) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (InsertSym0 :: TyFun a6989586621679791961 (TyFun [a6989586621679791961] (NonEmpty a6989586621679791961) -> Type) -> *) (l :: a6989586621679791961) = InsertSym1 l | |
| type Apply ((<|@#@$) :: TyFun a6989586621679791972 (TyFun (NonEmpty a6989586621679791972) (NonEmpty a6989586621679791972) -> Type) -> *) (l :: a6989586621679791972) # | |
| type Apply (ConsSym0 :: TyFun a6989586621679791971 (TyFun (NonEmpty a6989586621679791971) (NonEmpty a6989586621679791971) -> Type) -> *) (l :: a6989586621679791971) # | |
| type Apply (EnumFromThenToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> Type) -> *) (l :: a6989586621679868770) # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromThenToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> Type) -> *) (l :: a6989586621679868770) = EnumFromThenToSym1 l | |
| type Apply (EnumFromToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) (l :: a6989586621679868770) # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromToSym0 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) (l :: a6989586621679868770) = EnumFromToSym1 l | |
| type Apply (SameKindSym0 :: TyFun k6989586621679026900 (TyFun k6989586621679026900 Constraint -> *) -> *) (l :: k6989586621679026900) # | |
Defined in Data.Singletons type Apply (SameKindSym0 :: TyFun k6989586621679026900 (TyFun k6989586621679026900 Constraint -> *) -> *) (l :: k6989586621679026900) = SameKindSym1 l | |
| type Apply (LeftSym0 :: TyFun a (Either a b6989586621679083012) -> *) (l :: a) # | |
| type Apply (RightSym0 :: TyFun b (Either a6989586621679083011 b) -> *) (l :: b) # | |
| type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple2Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (l :: a3530822107858468865) = (Tuple2Sym1 l :: TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) | |
| type Apply (Bool_Sym1 l1 :: TyFun a6989586621679301220 (TyFun Bool a6989586621679301220 -> Type) -> *) (l2 :: a6989586621679301220) # | |
| type Apply (Maybe_Sym0 :: TyFun b6989586621679418662 (TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> Type) -> *) (l :: b6989586621679418662) # | |
Defined in Data.Singletons.Prelude.Maybe type Apply (Maybe_Sym0 :: TyFun b6989586621679418662 (TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> Type) -> *) (l :: b6989586621679418662) = (Maybe_Sym1 l :: TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> *) | |
| type Apply (SeqSym0 :: TyFun a6989586621679435587 (TyFun b6989586621679435588 b6989586621679435588 -> Type) -> *) (l :: a6989586621679435587) # | |
| type Apply (ConstSym0 :: TyFun a6989586621679435600 (TyFun b6989586621679435601 a6989586621679435600 -> Type) -> *) (l :: a6989586621679435600) # | |
| type Apply (LookupSym0 :: TyFun a6989586621679458381 (TyFun [(a6989586621679458381, b6989586621679458382)] (Maybe b6989586621679458382) -> Type) -> *) (l :: a6989586621679458381) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (InsertBySym1 l1 :: TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> *) (l2 :: a6989586621679458407) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym1 l1 :: TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> *) (l2 :: a6989586621679458407) = InsertBySym2 l1 l2 | |
| type Apply (DeleteBySym1 l1 :: TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> *) (l2 :: a6989586621679458410) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym1 l1 :: TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> *) (l2 :: a6989586621679458410) = DeleteBySym2 l1 l2 | |
| type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679693692) # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowsPrecSym1 l1 :: TyFun a6989586621679693692 (TyFun Symbol Symbol -> Type) -> *) (l2 :: a6989586621679693692) = ShowsPrecSym2 l1 l2 | |
| type Apply ((&@#@$) :: TyFun a6989586621679782850 (TyFun (TyFun a6989586621679782850 b6989586621679782851 -> Type) b6989586621679782851 -> Type) -> *) (l :: a6989586621679782850) # | |
Defined in Data.Singletons.Prelude.Function | |
| type Apply (EnumFromThenToSym1 l1 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) (l2 :: a6989586621679868770) # | |
Defined in Data.Singletons.Prelude.Enum type Apply (EnumFromThenToSym1 l1 :: TyFun a6989586621679868770 (TyFun a6989586621679868770 [a6989586621679868770] -> Type) -> *) (l2 :: a6989586621679868770) = EnumFromThenToSym2 l1 l2 | |
| type Apply (GenericReplicateSym0 :: TyFun i6989586621679950130 (TyFun a6989586621679950131 [a6989586621679950131] -> Type) -> *) (l :: i6989586621679950130) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericReplicateSym0 :: TyFun i6989586621679950130 (TyFun a6989586621679950131 [a6989586621679950131] -> Type) -> *) (l :: i6989586621679950130) = (GenericReplicateSym1 l :: TyFun a6989586621679950131 [a6989586621679950131] -> *) | |
| type Apply (GenericSplitAtSym0 :: TyFun i6989586621679950134 (TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> Type) -> *) (l :: i6989586621679950134) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericSplitAtSym0 :: TyFun i6989586621679950134 (TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> Type) -> *) (l :: i6989586621679950134) = (GenericSplitAtSym1 l :: TyFun [a6989586621679950135] ([a6989586621679950135], [a6989586621679950135]) -> *) | |
| type Apply (GenericDropSym0 :: TyFun i6989586621679950136 (TyFun [a6989586621679950137] [a6989586621679950137] -> Type) -> *) (l :: i6989586621679950136) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericDropSym0 :: TyFun i6989586621679950136 (TyFun [a6989586621679950137] [a6989586621679950137] -> Type) -> *) (l :: i6989586621679950136) = (GenericDropSym1 l :: TyFun [a6989586621679950137] [a6989586621679950137] -> *) | |
| type Apply (GenericTakeSym0 :: TyFun i6989586621679950138 (TyFun [a6989586621679950139] [a6989586621679950139] -> Type) -> *) (l :: i6989586621679950138) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericTakeSym0 :: TyFun i6989586621679950138 (TyFun [a6989586621679950139] [a6989586621679950139] -> Type) -> *) (l :: i6989586621679950138) = (GenericTakeSym1 l :: TyFun [a6989586621679950139] [a6989586621679950139] -> *) | |
| type Apply (Tuple2Sym1 l1 :: TyFun k1 (k2, k1) -> *) (l2 :: k1) # | |
Defined in Data.Singletons.Prelude.Instances | |
| type Apply (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple3Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple3Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) | |
| type Apply (FoldlSym1 l1 :: TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> *) (l2 :: b6989586621679269790) # | |
| type Apply (ComparingSym1 l1 :: TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> *) (l2 :: b6989586621679315161) # | |
Defined in Data.Singletons.Prelude.Ord type Apply (ComparingSym1 l1 :: TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> *) (l2 :: b6989586621679315161) = ComparingSym2 l1 l2 | |
| type Apply (FoldrSym1 l1 :: TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> *) (l2 :: b6989586621679435607) # | |
| type Apply (ScanrSym1 l1 :: TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> *) (l2 :: b6989586621679458469) # | |
| type Apply (ScanlSym1 l1 :: TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> *) (l2 :: b6989586621679458471) # | |
| type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> *) (l2 :: b6989586621679458482) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym1 l1 :: TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> *) (l2 :: b6989586621679458482) = Foldl'Sym2 l1 l2 | |
| type Apply (ScanlSym1 l1 :: TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> *) (l2 :: b6989586621679791959) # | |
| type Apply (ScanrSym1 l1 :: TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> *) (l2 :: b6989586621679791958) # | |
| type Apply (Tuple3Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple3Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple3Sym2 l1 l2 :: TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) | |
| type Apply (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple4Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple4Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) | |
| type Apply (CurrySym1 l1 :: TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> *) (l2 :: a6989586621679297386) # | |
| type Apply (FlipSym1 l1 :: TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> *) (l2 :: b6989586621679435595) # | |
| type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> *) (l2 :: acc6989586621679458461) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym1 l1 :: TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> *) (l2 :: acc6989586621679458461) = MapAccumRSym2 l1 l2 | |
| type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> *) (l2 :: acc6989586621679458464) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym1 l1 :: TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> *) (l2 :: acc6989586621679458464) = MapAccumLSym2 l1 l2 | |
| type Apply (Tuple4Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple4Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) | |
| type Apply (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple5Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) | |
| type Apply (OnSym2 l1 l2 :: TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> *) (l3 :: a6989586621679782854) # | |
| type Apply (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple4Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple4Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) | |
| type Apply (Tuple5Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) | |
| type Apply (Tuple6Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple6Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) | |
| type Apply (Tuple6Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple7Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym0 :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: a3530822107858468865) = (Tuple7Sym1 l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (l4 :: d3530822107858468868) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (l4 :: d3530822107858468868) = (Tuple5Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) | |
| type Apply (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) | |
| type Apply (Tuple7Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym1 l1 :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: b3530822107858468866) = (Tuple7Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) = (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) | |
| type Apply (Tuple7Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym2 l1 l2 :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: c3530822107858468867) = (Tuple7Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (l5 :: e3530822107858468869) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (l5 :: e3530822107858468869) = (Tuple6Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) | |
| type Apply (Tuple7Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym3 l1 l2 l3 :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) (l4 :: d3530822107858468868) = (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) | |
| type Apply (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (l5 :: e3530822107858468869) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym4 l1 l2 l3 l4 :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (l5 :: e3530822107858468869) = (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) | |
| type Apply (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (l6 :: f3530822107858468870) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym5 l1 l2 l3 l4 l5 :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (l6 :: f3530822107858468870) = (Tuple7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) | |
| type Apply (Tuple3Sym2 l1 l2 :: TyFun k3 (k2, k1, k3) -> *) (l3 :: k3) # | |
Defined in Data.Singletons.Prelude.Instances | |
| type Apply (Tuple4Sym3 l1 l2 l3 :: TyFun k4 (k2, k1, k3, k4) -> *) (l4 :: k4) # | |
Defined in Data.Singletons.Prelude.Instances | |
| type Apply (Tuple5Sym4 l1 l2 l3 l4 :: TyFun k5 (k2, k1, k3, k4, k5) -> *) (l5 :: k5) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple5Sym4 l1 l2 l3 l4 :: TyFun k5 (k2, k1, k3, k4, k5) -> *) (l5 :: k5) = (,,,,) l1 l2 l3 l4 l5 | |
| type Apply (Tuple6Sym5 l1 l2 l3 l4 l5 :: TyFun k6 (k2, k1, k3, k4, k5, k6) -> *) (l6 :: k6) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple6Sym5 l1 l2 l3 l4 l5 :: TyFun k6 (k2, k1, k3, k4, k5, k6) -> *) (l6 :: k6) = (,,,,,) l1 l2 l3 l4 l5 l6 | |
| type Apply (Tuple7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun k7 (k2, k1, k3, k4, k5, k6, k7) -> *) (l7 :: k7) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (Tuple7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun k7 (k2, k1, k3, k4, k5, k6, k7) -> *) (l7 :: k7) = (,,,,,,) l1 l2 l3 l4 l5 l6 l7 | |
| type Apply AndSym0 (l :: [Bool]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply OrSym0 (l :: [Bool]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply UnlinesSym0 (l :: [Symbol]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply UnwordsSym0 (l :: [Symbol]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply XorSym0 (l :: NonEmpty Bool) # | |
| type Apply (LengthSym0 :: TyFun [a] Nat -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ProductSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (SumSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
| type Apply (MaximumSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (MinimumSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (NullSym0 :: TyFun [a] Bool -> *) (l :: [a]) # | |
| type Apply (LastSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
| type Apply (HeadSym0 :: TyFun [a] a -> *) (l :: [a]) # | |
| type Apply (FromJustSym0 :: TyFun (Maybe a) a -> *) (l :: Maybe a) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (IsNothingSym0 :: TyFun (Maybe a) Bool -> *) (l :: Maybe a) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (IsJustSym0 :: TyFun (Maybe a) Bool -> *) (l :: Maybe a) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (LastSym0 :: TyFun (NonEmpty a) a -> *) (l :: NonEmpty a) # | |
| type Apply (HeadSym0 :: TyFun (NonEmpty a) a -> *) (l :: NonEmpty a) # | |
| type Apply (LengthSym0 :: TyFun (NonEmpty a) Nat -> *) (l :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GenericLengthSym0 :: TyFun [a] k2 -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (NotElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ElemSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
| type Apply (IsPrefixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (AnySym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
| type Apply (IsInfixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (AllSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
| type Apply (Foldr1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Foldl1Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (MaximumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (MinimumBySym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Foldl1'Sym1 l1 :: TyFun [a] a -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (IsSuffixOfSym1 l1 :: TyFun [a] Bool -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FromMaybeSym1 l1 :: TyFun (Maybe a) a -> *) (l2 :: Maybe a) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (IsPrefixOfSym1 l1 :: TyFun (NonEmpty a) Bool -> *) (l2 :: NonEmpty a) # | |
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]) # | |
| type Apply (FoldrSym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) # | |
| type Apply (Foldl'Sym2 l1 l2 :: TyFun [a] b -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Maybe_Sym2 l1 l2 :: TyFun (Maybe a) b -> *) (l3 :: Maybe a) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (ConcatSym0 :: TyFun [[a]] [a] -> *) (l :: [[a]]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (TransposeSym0 :: TyFun [[a]] [[a]] -> *) (l :: [[a]]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (CatMaybesSym0 :: TyFun [Maybe a] [a] -> *) (l :: [Maybe a]) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (ListToMaybeSym0 :: TyFun [a] (Maybe a) -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (GroupSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
| type Apply (SortSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
| type Apply (NubSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
| type Apply (TailsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
| type Apply (InitsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
| type Apply (PermutationsSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (SubsequencesSym0 :: TyFun [a] [[a]] -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ReverseSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (InitSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
| type Apply (TailSym0 :: TyFun [a] [a] -> *) (l :: [a]) # | |
| type Apply (GroupSym0 :: TyFun [a] [NonEmpty a] -> *) (l :: [a]) # | |
| type Apply (FromListSym0 :: TyFun [a] (NonEmpty a) -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (InitsSym0 :: TyFun [a] (NonEmpty [a]) -> *) (l :: [a]) # | |
| type Apply (TailsSym0 :: TyFun [a] (NonEmpty [a]) -> *) (l :: [a]) # | |
| type Apply (NonEmpty_Sym0 :: TyFun [a] (Maybe (NonEmpty a)) -> *) (l :: [a]) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (MaybeToListSym0 :: TyFun (Maybe a) [a] -> *) (l :: Maybe a) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (NubSym0 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l :: NonEmpty a) # | |
| type Apply (Group1Sym0 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (ToListSym0 :: TyFun (NonEmpty a) [a] -> *) (l :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (ReverseSym0 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (SortSym0 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l :: NonEmpty a) # | |
| type Apply (InitSym0 :: TyFun (NonEmpty a) [a] -> *) (l :: NonEmpty a) # | |
| type Apply (TailSym0 :: TyFun (NonEmpty a) [a] -> *) (l :: NonEmpty a) # | |
| type Apply (TransposeSym0 :: TyFun (NonEmpty (NonEmpty a)) (NonEmpty (NonEmpty a)) -> *) (l :: NonEmpty (NonEmpty a)) # | |
| type Apply (IntercalateSym1 l1 :: TyFun [[a]] [a] -> *) (l2 :: [[a]]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (RightsSym0 :: TyFun [Either a b] [b] -> *) (l :: [Either a b]) # | |
Defined in Data.Singletons.Prelude.Either | |
| type Apply (LeftsSym0 :: TyFun [Either a b] [a] -> *) (l :: [Either a b]) # | |
| type Apply ((:@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.Instances | |
| type Apply ((:|@#@$$) l1 :: TyFun [a] (NonEmpty a) -> *) (l2 :: [a]) # | |
| type Apply ((++@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
| type Apply (NubBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
| type Apply (DropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
| type Apply (TakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
| type Apply (GroupBySym1 l1 :: TyFun [a] [[a]] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (DropWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (TakeWhileSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FilterSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FindSym1 l1 :: TyFun [a] (Maybe a) -> *) (l2 :: [a]) # | |
| type Apply (InsertSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (SortBySym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (UnionSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
| type Apply (DeleteSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply ((\\@#@$$) l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
| type Apply (FindIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ElemIndicesSym1 l1 :: TyFun [a] [Nat] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FindIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ElemIndexSym1 l1 :: TyFun [a] (Maybe Nat) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Scanr1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Scanl1Sym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (IntersectSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (IntersperseSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (DropWhileEndSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (GroupBySym1 l1 :: TyFun [a] [NonEmpty a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (InsertSym1 l1 :: TyFun [a] (NonEmpty a) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (StripPrefixSym1 l1 :: TyFun [a] (Maybe [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (NubBySym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) # | |
| type Apply (GroupBy1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (IntersperseSym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) # | |
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) # | |
| type Apply (DropSym1 l1 :: TyFun (NonEmpty a) [a] -> *) (l2 :: NonEmpty a) # | |
| type Apply (TakeWhileSym1 l1 :: TyFun (NonEmpty a) [a] -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (DropWhileSym1 l1 :: TyFun (NonEmpty a) [a] -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (FilterSym1 l1 :: TyFun (NonEmpty a) [a] -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (SortBySym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (Scanl1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (Scanr1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply ((<|@#@$$) l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) # | |
| type Apply (ConsSym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) # | |
| type Apply (LookupSym1 l1 :: TyFun [(a, b)] (Maybe b) -> *) (l2 :: [(a, b)]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (MapMaybeSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (MapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) # | |
| type Apply (InsertBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (DeleteBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (DeleteFirstsBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (UnionBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ZipSym1 l1 :: TyFun [b] [(a, b)] -> *) (l2 :: [b]) # | |
| type Apply (IntersectBySym2 l1 l2 :: TyFun [a] [a] -> *) (l3 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ConcatMapSym1 l1 :: TyFun [a] [b] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (GroupWithSym1 l1 :: TyFun [a] [NonEmpty a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupAllWithSym1 l1 :: TyFun [a] [NonEmpty a] -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GenericDropSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (GenericTakeSym1 l1 :: TyFun [a] [a] -> *) (l2 :: [a]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipSym1 l1 :: TyFun (NonEmpty b) (NonEmpty (a, b)) -> *) (l2 :: NonEmpty b) # | |
| type Apply (GroupWith1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l2 :: NonEmpty a) # | |
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) # | |
| type Apply (SortWithSym1 l1 :: TyFun (NonEmpty a) (NonEmpty a) -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupAllWith1Sym1 l1 :: TyFun (NonEmpty a) (NonEmpty (NonEmpty a)) -> *) (l2 :: NonEmpty a) # | |
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]) # | |
| type Apply (ScanlSym2 l1 l2 :: TyFun [a] [b] -> *) (l3 :: [a]) # | |
| type Apply (ScanlSym2 l1 l2 :: TyFun [a] (NonEmpty b) -> *) (l3 :: [a]) # | |
| type Apply (ScanrSym2 l1 l2 :: TyFun [a] (NonEmpty b) -> *) (l3 :: [a]) # | |
| type Apply (ZipWithSym2 l1 l2 :: TyFun [b] [c] -> *) (l3 :: [b]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Zip3Sym2 l1 l2 :: TyFun [c] [(a, b, c)] -> *) (l3 :: [c]) # | |
| type Apply (ZipWithSym2 l1 l2 :: TyFun (NonEmpty b) (NonEmpty c) -> *) (l3 :: NonEmpty b) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (ZipWith3Sym3 l1 l2 l3 :: TyFun [c] [d] -> *) (l4 :: [c]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Zip4Sym3 l1 l2 l3 :: TyFun [d] [(a, b, c, d)] -> *) (l4 :: [d]) # | |
| type Apply (ZipWith4Sym4 l1 l2 l3 l4 :: TyFun [d] [e] -> *) (l5 :: [d]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e] [(a, b, c, d, e)] -> *) (l5 :: [e]) # | |
| type Apply (ZipWith5Sym5 l1 l2 l3 l4 l5 :: TyFun [e] [f] -> *) (l6 :: [e]) # | |
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]) # | |
| type Apply (ZipWith6Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f] [g] -> *) (l7 :: [f]) # | |
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]) # | |
| type Apply (ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 :: TyFun [g] [h] -> *) (l8 :: [g]) # | |
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 [a6989586621679435603] (TyFun [a6989586621679435603] [a6989586621679435603] -> Type) -> *) (l :: [a6989586621679435603]) # | |
| type Apply ((!!@#@$) :: TyFun [a6989586621679458373] (TyFun Nat a6989586621679458373 -> Type) -> *) (l :: [a6989586621679458373]) # | |
| type Apply (UnionSym0 :: TyFun [a6989586621679458368] (TyFun [a6989586621679458368] [a6989586621679458368] -> Type) -> *) (l :: [a6989586621679458368]) # | |
| type Apply ((\\@#@$) :: TyFun [a6989586621679458411] (TyFun [a6989586621679458411] [a6989586621679458411] -> Type) -> *) (l :: [a6989586621679458411]) # | |
| type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type) -> *) (l :: [a6989586621679458456]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679458456] (TyFun [a6989586621679458456] Bool -> Type) -> *) (l :: [a6989586621679458456]) = IsPrefixOfSym1 l | |
| type Apply (IsInfixOfSym0 :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type) -> *) (l :: [a6989586621679458454]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsInfixOfSym0 :: TyFun [a6989586621679458454] (TyFun [a6989586621679458454] Bool -> Type) -> *) (l :: [a6989586621679458454]) = IsInfixOfSym1 l | |
| type Apply (IntersectSym0 :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type) -> *) (l :: [a6989586621679458398]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectSym0 :: TyFun [a6989586621679458398] (TyFun [a6989586621679458398] [a6989586621679458398] -> Type) -> *) (l :: [a6989586621679458398]) = IntersectSym1 l | |
| type Apply (IntercalateSym0 :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type) -> *) (l :: [a6989586621679458487]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntercalateSym0 :: TyFun [a6989586621679458487] (TyFun [[a6989586621679458487]] [a6989586621679458487] -> Type) -> *) (l :: [a6989586621679458487]) = IntercalateSym1 l | |
| type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type) -> *) (l :: [a6989586621679458455]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IsSuffixOfSym0 :: TyFun [a6989586621679458455] (TyFun [a6989586621679458455] Bool -> Type) -> *) (l :: [a6989586621679458455]) = IsSuffixOfSym1 l | |
| type Apply (ShowListSym0 :: TyFun [a6989586621679693692] (TyFun Symbol Symbol -> Type) -> *) (l :: [a6989586621679693692]) # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowListSym0 :: TyFun [a6989586621679693692] (TyFun Symbol Symbol -> Type) -> *) (l :: [a6989586621679693692]) = ShowListSym1 l | |
| type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679791931] (TyFun (NonEmpty a6989586621679791931) Bool -> Type) -> *) (l :: [a6989586621679791931]) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (IsPrefixOfSym0 :: TyFun [a6989586621679791931] (TyFun (NonEmpty a6989586621679791931) Bool -> Type) -> *) (l :: [a6989586621679791931]) = IsPrefixOfSym1 l | |
| type Apply (StripPrefixSym0 :: TyFun [a6989586621679950188] (TyFun [a6989586621679950188] (Maybe [a6989586621679950188]) -> Type) -> *) (l :: [a6989586621679950188]) # | |
Defined in Data.Promotion.Prelude.List type Apply (StripPrefixSym0 :: TyFun [a6989586621679950188] (TyFun [a6989586621679950188] (Maybe [a6989586621679950188]) -> Type) -> *) (l :: [a6989586621679950188]) = StripPrefixSym1 l | |
| type Apply ((!!@#@$) :: TyFun (NonEmpty a6989586621679791930) (TyFun Nat a6989586621679791930 -> Type) -> *) (l :: NonEmpty a6989586621679791930) # | |
| type Apply (UnconsSym0 :: TyFun (NonEmpty a) (a, Maybe (NonEmpty a)) -> *) (l :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (UnzipSym0 :: TyFun [(a, b)] ([a], [b]) -> *) (l :: [(a, b)]) # | |
| type Apply (PartitionSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (SplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (BreakSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
| type Apply (SpanSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
| type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> *) (l2 :: [a6989586621679458409]) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym1 l1 :: TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> *) (l2 :: [a6989586621679458409]) = DeleteFirstsBySym2 l1 l2 | |
| type Apply (UnionBySym1 l1 :: TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> *) (l2 :: [a6989586621679458369]) # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym1 l1 :: TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> *) (l2 :: [a6989586621679458369]) = UnionBySym2 l1 l2 | |
| type Apply (ZipSym0 :: TyFun [a6989586621679458450] (TyFun [b6989586621679458451] [(a6989586621679458450, b6989586621679458451)] -> Type) -> *) (l :: [a6989586621679458450]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> *) (l2 :: [a6989586621679458397]) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym1 l1 :: TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> *) (l2 :: [a6989586621679458397]) = IntersectBySym2 l1 l2 | |
| type Apply (ShowListWithSym1 l1 :: TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> *) (l2 :: [a6989586621679693676]) # | |
Defined in Data.Singletons.Prelude.Show type Apply (ShowListWithSym1 l1 :: TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> *) (l2 :: [a6989586621679693676]) = ShowListWithSym2 l1 l2 | |
| type Apply (GenericIndexSym0 :: TyFun [a6989586621679950133] (TyFun i6989586621679950132 a6989586621679950133 -> Type) -> *) (l :: [a6989586621679950133]) # | |
Defined in Data.Promotion.Prelude.List type Apply (GenericIndexSym0 :: TyFun [a6989586621679950133] (TyFun i6989586621679950132 a6989586621679950133 -> Type) -> *) (l :: [a6989586621679950133]) = (GenericIndexSym1 l :: TyFun i6989586621679950132 a6989586621679950133 -> *) | |
| type Apply (UnzipSym0 :: TyFun (NonEmpty (a, b)) (NonEmpty a, NonEmpty b) -> *) (l :: NonEmpty (a, b)) # | |
| type Apply (ZipSym0 :: TyFun (NonEmpty a6989586621679791928) (TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> Type) -> *) (l :: NonEmpty a6989586621679791928) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ZipSym0 :: TyFun (NonEmpty a6989586621679791928) (TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> Type) -> *) (l :: NonEmpty a6989586621679791928) = (ZipSym1 l :: TyFun (NonEmpty b6989586621679791929) (NonEmpty (a6989586621679791928, b6989586621679791929)) -> *) | |
| type Apply (SplitAtSym1 l1 :: TyFun (NonEmpty a) ([a], [a]) -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (SpanSym1 l1 :: TyFun (NonEmpty a) ([a], [a]) -> *) (l2 :: NonEmpty a) # | |
| type Apply (BreakSym1 l1 :: TyFun (NonEmpty a) ([a], [a]) -> *) (l2 :: NonEmpty a) # | |
| type Apply (PartitionSym1 l1 :: TyFun (NonEmpty a) ([a], [a]) -> *) (l2 :: NonEmpty a) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (Zip3Sym0 :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type) -> *) (l :: [a6989586621679458447]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym0 :: TyFun [a6989586621679458447] (TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> Type) -> *) (l :: [a6989586621679458447]) = (Zip3Sym1 l :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) | |
| type Apply (GenericSplitAtSym1 l1 :: TyFun [a] ([a], [a]) -> *) (l2 :: [a]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> *) (l2 :: [a6989586621679458444]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym1 l1 :: TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> *) (l2 :: [a6989586621679458444]) = ZipWithSym2 l1 l2 | |
| type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) (l2 :: [b6989586621679458448]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Zip3Sym1 l1 :: TyFun [b6989586621679458448] (TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> Type) -> *) (l2 :: [b6989586621679458448]) = (Zip3Sym2 l1 l2 :: TyFun [c6989586621679458449] [(a6989586621679458447, b6989586621679458448, c6989586621679458449)] -> *) | |
| type Apply (Zip4Sym0 :: TyFun [a6989586621679950184] (TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950184]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym0 :: TyFun [a6989586621679950184] (TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950184]) = (Zip4Sym1 l :: TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> *) | |
| type Apply (ZipWithSym1 l1 :: TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> *) (l2 :: NonEmpty a6989586621679791925) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> *) (l2 :: [a6989586621679458440]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym1 l1 :: TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> *) (l2 :: [a6989586621679458440]) = ZipWith3Sym2 l1 l2 | |
| type Apply (MapAccumRSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (MapAccumLSym2 l1 l2 :: TyFun [x] (acc, [y]) -> *) (l3 :: [x]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Zip5Sym0 :: TyFun [a6989586621679950179] (TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950179]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym0 :: TyFun [a6989586621679950179] (TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950179]) = (Zip5Sym1 l :: TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> *) (l2 :: [b6989586621679950185]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym1 l1 :: TyFun [b6989586621679950185] (TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> Type) -> *) (l2 :: [b6989586621679950185]) = (Zip4Sym2 l1 l2 :: TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> *) | |
| type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> *) (l3 :: [b6989586621679458441]) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym2 l1 l2 :: TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> *) (l3 :: [b6989586621679458441]) = ZipWith3Sym3 l1 l2 l3 | |
| type Apply (ZipWith4Sym1 l1 :: TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950161]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (Zip6Sym0 :: TyFun [a6989586621679950173] (TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950173]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym0 :: TyFun [a6989586621679950173] (TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950173]) = (Zip6Sym1 l :: TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950180]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym1 l1 :: TyFun [b6989586621679950180] (TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950180]) = (Zip5Sym2 l1 l2 :: TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> *) | |
| type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> *) (l3 :: [c6989586621679950186]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip4Sym2 l1 l2 :: TyFun [c6989586621679950186] (TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> Type) -> *) (l3 :: [c6989586621679950186]) = (Zip4Sym3 l1 l2 l3 :: TyFun [d6989586621679950187] [(a6989586621679950184, b6989586621679950185, c6989586621679950186, d6989586621679950187)] -> *) | |
| type Apply (ZipWith5Sym1 l1 :: TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950155]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> *) (l3 :: [b6989586621679950162]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym2 l1 l2 :: TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> *) (l3 :: [b6989586621679950162]) = ZipWith4Sym3 l1 l2 l3 | |
| type Apply (Zip7Sym0 :: TyFun [a6989586621679950166] (TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950166]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym0 :: TyFun [a6989586621679950166] (TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: [a6989586621679950166]) = (Zip7Sym1 l :: TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950174]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym1 l1 :: TyFun [b6989586621679950174] (TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950174]) = (Zip6Sym2 l1 l2 :: TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> *) (l3 :: [c6989586621679950181]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym2 l1 l2 :: TyFun [c6989586621679950181] (TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> Type) -> *) (l3 :: [c6989586621679950181]) = (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> *) | |
| type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950148]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym1 l1 :: TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950148]) = ZipWith6Sym2 l1 l2 | |
| type Apply (ZipWith5Sym2 l1 l2 :: TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950156]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> *) (l4 :: [c6989586621679950163]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym3 l1 l2 l3 :: TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> *) (l4 :: [c6989586621679950163]) = ZipWith4Sym4 l1 l2 l3 l4 | |
| type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950167]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym1 l1 :: TyFun [b6989586621679950167] (TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [b6989586621679950167]) = (Zip7Sym2 l1 l2 :: TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950175]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym2 l1 l2 :: TyFun [c6989586621679950175] (TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950175]) = (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> *) | |
| type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> *) (l4 :: [d6989586621679950182]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip5Sym3 l1 l2 l3 :: TyFun [d6989586621679950182] (TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> Type) -> *) (l4 :: [d6989586621679950182]) = (Zip5Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950183] [(a6989586621679950179, b6989586621679950180, c6989586621679950181, d6989586621679950182, e6989586621679950183)] -> *) | |
| type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950140]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym1 l1 :: TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l2 :: [a6989586621679950140]) = ZipWith7Sym2 l1 l2 | |
| type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950149]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym2 l1 l2 :: TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950149]) = ZipWith6Sym3 l1 l2 l3 | |
| type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> *) (l4 :: [c6989586621679950157]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym3 l1 l2 l3 :: TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> *) (l4 :: [c6989586621679950157]) = ZipWith5Sym4 l1 l2 l3 l4 | |
| type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950168]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym2 l1 l2 :: TyFun [c6989586621679950168] (TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [c6989586621679950168]) = (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> *) | |
| type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> *) (l4 :: [d6989586621679950176]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym3 l1 l2 l3 :: TyFun [d6989586621679950176] (TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> Type) -> *) (l4 :: [d6989586621679950176]) = (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> *) | |
| type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950141]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym2 l1 l2 :: TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l3 :: [b6989586621679950141]) = ZipWith7Sym3 l1 l2 l3 | |
| type Apply (ZipWith6Sym3 l1 l2 l3 :: TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679950150]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> *) (l5 :: [d6989586621679950158]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> *) (l5 :: [d6989586621679950158]) = ZipWith5Sym5 l1 l2 l3 l4 l5 | |
| type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679950169]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym3 l1 l2 l3 :: TyFun [d6989586621679950169] (TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> Type) -> *) (l4 :: [d6989586621679950169]) = (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> *) | |
| type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> *) (l5 :: [e6989586621679950177]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip6Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950177] (TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> Type) -> *) (l5 :: [e6989586621679950177]) = (Zip6Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950178] [(a6989586621679950173, b6989586621679950174, c6989586621679950175, d6989586621679950176, e6989586621679950177, f6989586621679950178)] -> *) | |
| type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679950142]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym3 l1 l2 l3 :: TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> *) (l4 :: [c6989586621679950142]) = ZipWith7Sym4 l1 l2 l3 l4 | |
| type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> *) (l5 :: [d6989586621679950151]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> *) (l5 :: [d6989586621679950151]) = ZipWith6Sym5 l1 l2 l3 l4 l5 | |
| type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> *) (l5 :: [e6989586621679950170]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym4 l1 l2 l3 l4 :: TyFun [e6989586621679950170] (TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> Type) -> *) (l5 :: [e6989586621679950170]) = (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> *) | |
| type Apply (ZipWith7Sym4 l1 l2 l3 l4 :: TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> *) (l5 :: [d6989586621679950143]) # | |
Defined in Data.Promotion.Prelude.List | |
| type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> *) (l6 :: [e6989586621679950152]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> *) (l6 :: [e6989586621679950152]) = ZipWith6Sym6 l1 l2 l3 l4 l5 l6 | |
| type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> *) (l6 :: [f6989586621679950171]) # | |
Defined in Data.Promotion.Prelude.List type Apply (Zip7Sym5 l1 l2 l3 l4 l5 :: TyFun [f6989586621679950171] (TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> Type) -> *) (l6 :: [f6989586621679950171]) = (Zip7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [g6989586621679950172] [(a6989586621679950166, b6989586621679950167, c6989586621679950168, d6989586621679950169, e6989586621679950170, f6989586621679950171, g6989586621679950172)] -> *) | |
| type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> *) (l6 :: [e6989586621679950144]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym5 l1 l2 l3 l4 l5 :: TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> *) (l6 :: [e6989586621679950144]) = ZipWith7Sym6 l1 l2 l3 l4 l5 l6 | |
| type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> *) (l7 :: [f6989586621679950145]) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym6 l1 l2 l3 l4 l5 l6 :: TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> *) (l7 :: [f6989586621679950145]) = ZipWith7Sym7 l1 l2 l3 l4 l5 l6 l7 | |
| type Apply (Unzip3Sym0 :: TyFun [(a, b, c)] ([a], [b], [c]) -> *) (l :: [(a, b, c)]) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip4Sym0 :: TyFun [(a, b, c, d)] ([a], [b], [c], [d]) -> *) (l :: [(a, b, c, d)]) = Unzip4 l | |
| type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip5Sym0 :: TyFun [(a, b, c, d, e)] ([a], [b], [c], [d], [e]) -> *) (l :: [(a, b, c, d, e)]) = Unzip5 l | |
| type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip6Sym0 :: TyFun [(a, b, c, d, e, f)] ([a], [b], [c], [d], [e], [f]) -> *) (l :: [(a, b, c, d, e, f)]) = Unzip6 l | |
| type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) # | |
Defined in Data.Singletons.Prelude.List type Apply (Unzip7Sym0 :: TyFun [(a, b, c, d, e, f, g)] ([a], [b], [c], [d], [e], [f], [g]) -> *) (l :: [(a, b, c, d, e, f, g)]) = Unzip7 l | |
| type Apply (IsRightSym0 :: TyFun (Either a b) Bool -> *) (l :: Either a b) # | |
Defined in Data.Singletons.Prelude.Either | |
| type Apply (IsLeftSym0 :: TyFun (Either a b) Bool -> *) (l :: Either a b) # | |
Defined in Data.Singletons.Prelude.Either | |
| type Apply (SndSym0 :: TyFun (a, b) b -> *) (l :: (a, b)) # | |
| type Apply (FstSym0 :: TyFun (a, b) a -> *) (l :: (a, b)) # | |
| type Apply ((&@#@$$) l1 :: TyFun (TyFun a b -> Type) b -> *) (l2 :: TyFun a b -> Type) # | |
| type Apply (UncurrySym1 l1 :: TyFun (a, b) c -> *) (l2 :: (a, b)) # | |
Defined in Data.Singletons.Prelude.Tuple | |
| type Apply (Either_Sym2 l1 l2 :: TyFun (Either a b) c -> *) (l3 :: Either a b) # | |
Defined in Data.Singletons.Prelude.Either | |
| type Apply (ShowParenSym1 l1 :: TyFun (TyFun Symbol Symbol -> Type) (TyFun Symbol Symbol -> Type) -> *) (l2 :: TyFun Symbol Symbol -> Type) # | |
| type Apply (NubBySym0 :: TyFun (TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) (TyFun [a6989586621679458371] [a6989586621679458371] -> Type) -> *) (l :: TyFun a6989586621679458371 (TyFun a6989586621679458371 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679458380 Bool -> Type) (TyFun [a6989586621679458380] ([a6989586621679458380], [a6989586621679458380]) -> Type) -> *) (l :: TyFun a6989586621679458380 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (BreakSym0 :: TyFun (TyFun a6989586621679458392 Bool -> Type) (TyFun [a6989586621679458392] ([a6989586621679458392], [a6989586621679458392]) -> Type) -> *) (l :: TyFun a6989586621679458392 Bool -> Type) # | |
| type Apply (SpanSym0 :: TyFun (TyFun a6989586621679458393 Bool -> Type) (TyFun [a6989586621679458393] ([a6989586621679458393], [a6989586621679458393]) -> Type) -> *) (l :: TyFun a6989586621679458393 Bool -> Type) # | |
| type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) (TyFun [a6989586621679458383] [[a6989586621679458383]] -> Type) -> *) (l :: TyFun a6989586621679458383 (TyFun a6989586621679458383 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679458395 Bool -> Type) (TyFun [a6989586621679458395] [a6989586621679458395] -> Type) -> *) (l :: TyFun a6989586621679458395 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679458396 Bool -> Type) (TyFun [a6989586621679458396] [a6989586621679458396] -> Type) -> *) (l :: TyFun a6989586621679458396 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FilterSym0 :: TyFun (TyFun a6989586621679458404 Bool -> Type) (TyFun [a6989586621679458404] [a6989586621679458404] -> Type) -> *) (l :: TyFun a6989586621679458404 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FindSym0 :: TyFun (TyFun a6989586621679458403 Bool -> Type) (TyFun [a6989586621679458403] (Maybe a6989586621679458403) -> Type) -> *) (l :: TyFun a6989586621679458403 Bool -> Type) # | |
| type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (InsertBySym0 :: TyFun (TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) (TyFun a6989586621679458407 (TyFun [a6989586621679458407] [a6989586621679458407] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458407 (TyFun a6989586621679458407 Ordering -> Type) -> Type) = InsertBySym1 l | |
| type Apply (SortBySym0 :: TyFun (TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) (TyFun [a6989586621679458408] [a6989586621679458408] -> Type) -> *) (l :: TyFun a6989586621679458408 (TyFun a6989586621679458408 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteBySym0 :: TyFun (TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) (TyFun a6989586621679458410 (TyFun [a6989586621679458410] [a6989586621679458410] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458410 (TyFun a6989586621679458410 Bool -> Type) -> Type) = DeleteBySym1 l | |
| type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (DeleteFirstsBySym0 :: TyFun (TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) (TyFun [a6989586621679458409] (TyFun [a6989586621679458409] [a6989586621679458409] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458409 (TyFun a6989586621679458409 Bool -> Type) -> Type) = DeleteFirstsBySym1 l | |
| type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (UnionBySym0 :: TyFun (TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) (TyFun [a6989586621679458369] (TyFun [a6989586621679458369] [a6989586621679458369] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458369 (TyFun a6989586621679458369 Bool -> Type) -> Type) = UnionBySym1 l | |
| type Apply (FindIndicesSym0 :: TyFun (TyFun a6989586621679458399 Bool -> Type) (TyFun [a6989586621679458399] [Nat] -> Type) -> *) (l :: TyFun a6989586621679458399 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (FindIndexSym0 :: TyFun (TyFun a6989586621679458400 Bool -> Type) (TyFun [a6989586621679458400] (Maybe Nat) -> Type) -> *) (l :: TyFun a6989586621679458400 Bool -> Type) # | |
| type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type) -> *) (l :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) (TyFun [a6989586621679458467] [a6989586621679458467] -> Type) -> *) (l :: TyFun a6989586621679458467 (TyFun a6989586621679458467 a6989586621679458467 -> Type) -> Type) = Scanr1Sym1 l | |
| type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type) -> *) (l :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) (TyFun [a6989586621679458470] [a6989586621679458470] -> Type) -> *) (l :: TyFun a6989586621679458470 (TyFun a6989586621679458470 a6989586621679458470 -> Type) -> Type) = Scanl1Sym1 l | |
| type Apply (AnySym0 :: TyFun (TyFun a6989586621679458473 Bool -> Type) (TyFun [a6989586621679458473] Bool -> Type) -> *) (l :: TyFun a6989586621679458473 Bool -> Type) # | |
| type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (IntersectBySym0 :: TyFun (TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) (TyFun [a6989586621679458397] (TyFun [a6989586621679458397] [a6989586621679458397] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458397 (TyFun a6989586621679458397 Bool -> Type) -> Type) = IntersectBySym1 l | |
| type Apply (AllSym0 :: TyFun (TyFun a6989586621679458474 Bool -> Type) (TyFun [a6989586621679458474] Bool -> Type) -> *) (l :: TyFun a6989586621679458474 Bool -> Type) # | |
| type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type) -> *) (l :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldr1Sym0 :: TyFun (TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) (TyFun [a6989586621679458478] a6989586621679458478 -> Type) -> *) (l :: TyFun a6989586621679458478 (TyFun a6989586621679458478 a6989586621679458478 -> Type) -> Type) = Foldr1Sym1 l | |
| type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type) -> *) (l :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1Sym0 :: TyFun (TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) (TyFun [a6989586621679458480] a6989586621679458480 -> Type) -> *) (l :: TyFun a6989586621679458480 (TyFun a6989586621679458480 a6989586621679458480 -> Type) -> Type) = Foldl1Sym1 l | |
| type Apply (MaximumBySym0 :: TyFun (TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) (TyFun [a6989586621679458406] a6989586621679458406 -> Type) -> *) (l :: TyFun a6989586621679458406 (TyFun a6989586621679458406 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (MinimumBySym0 :: TyFun (TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) (TyFun [a6989586621679458405] a6989586621679458405 -> Type) -> *) (l :: TyFun a6989586621679458405 (TyFun a6989586621679458405 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type) -> *) (l :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl1'Sym0 :: TyFun (TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) (TyFun [a6989586621679458479] a6989586621679458479 -> Type) -> *) (l :: TyFun a6989586621679458479 (TyFun a6989586621679458479 a6989586621679458479 -> Type) -> Type) = Foldl1'Sym1 l | |
| type Apply (DropWhileEndSym0 :: TyFun (TyFun a6989586621679458394 Bool -> Type) (TyFun [a6989586621679458394] [a6989586621679458394] -> Type) -> *) (l :: TyFun a6989586621679458394 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ShowListWithSym0 :: TyFun (TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) (TyFun [a6989586621679693676] (TyFun Symbol Symbol -> Type) -> Type) -> *) (l :: TyFun a6989586621679693676 (TyFun Symbol Symbol -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Show | |
| type Apply (NubBySym0 :: TyFun (TyFun a6989586621679791921 (TyFun a6989586621679791921 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791921) (NonEmpty a6989586621679791921) -> Type) -> *) (l :: TyFun a6989586621679791921 (TyFun a6989586621679791921 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupBySym0 :: TyFun (TyFun a6989586621679791942 (TyFun a6989586621679791942 Bool -> Type) -> Type) (TyFun [a6989586621679791942] [NonEmpty a6989586621679791942] -> Type) -> *) (l :: TyFun a6989586621679791942 (TyFun a6989586621679791942 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupBy1Sym0 :: TyFun (TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791936) (NonEmpty (NonEmpty a6989586621679791936)) -> Type) -> *) (l :: TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (GroupBy1Sym0 :: TyFun (TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679791936) (NonEmpty (NonEmpty a6989586621679791936)) -> Type) -> *) (l :: TyFun a6989586621679791936 (TyFun a6989586621679791936 Bool -> Type) -> Type) = GroupBy1Sym1 l | |
| type Apply (TakeWhileSym0 :: TyFun (TyFun a6989586621679791949 Bool -> Type) (TyFun (NonEmpty a6989586621679791949) [a6989586621679791949] -> Type) -> *) (l :: TyFun a6989586621679791949 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (DropWhileSym0 :: TyFun (TyFun a6989586621679791948 Bool -> Type) (TyFun (NonEmpty a6989586621679791948) [a6989586621679791948] -> Type) -> *) (l :: TyFun a6989586621679791948 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (SpanSym0 :: TyFun (TyFun a6989586621679791947 Bool -> Type) (TyFun (NonEmpty a6989586621679791947) ([a6989586621679791947], [a6989586621679791947]) -> Type) -> *) (l :: TyFun a6989586621679791947 Bool -> Type) # | |
| type Apply (BreakSym0 :: TyFun (TyFun a6989586621679791946 Bool -> Type) (TyFun (NonEmpty a6989586621679791946) ([a6989586621679791946], [a6989586621679791946]) -> Type) -> *) (l :: TyFun a6989586621679791946 Bool -> Type) # | |
| type Apply (FilterSym0 :: TyFun (TyFun a6989586621679791945 Bool -> Type) (TyFun (NonEmpty a6989586621679791945) [a6989586621679791945] -> Type) -> *) (l :: TyFun a6989586621679791945 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (PartitionSym0 :: TyFun (TyFun a6989586621679791944 Bool -> Type) (TyFun (NonEmpty a6989586621679791944) ([a6989586621679791944], [a6989586621679791944]) -> Type) -> *) (l :: TyFun a6989586621679791944 Bool -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (SortBySym0 :: TyFun (TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679791919) (NonEmpty a6989586621679791919) -> Type) -> *) (l :: TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (SortBySym0 :: TyFun (TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679791919) (NonEmpty a6989586621679791919) -> Type) -> *) (l :: TyFun a6989586621679791919 (TyFun a6989586621679791919 Ordering -> Type) -> Type) = SortBySym1 l | |
| type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791956) (NonEmpty a6989586621679791956) -> Type) -> *) (l :: TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (Scanl1Sym0 :: TyFun (TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791956) (NonEmpty a6989586621679791956) -> Type) -> *) (l :: TyFun a6989586621679791956 (TyFun a6989586621679791956 a6989586621679791956 -> Type) -> Type) = Scanl1Sym1 l | |
| type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791955) (NonEmpty a6989586621679791955) -> Type) -> *) (l :: TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (Scanr1Sym0 :: TyFun (TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791955) (NonEmpty a6989586621679791955) -> Type) -> *) (l :: TyFun a6989586621679791955 (TyFun a6989586621679791955 a6989586621679791955 -> Type) -> Type) = Scanr1Sym1 l | |
| type Apply (UntilSym0 :: TyFun (TyFun a6989586621679987157 Bool -> Type) (TyFun (TyFun a6989586621679987157 a6989586621679987157 -> Type) (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> Type) -> *) (l :: TyFun a6989586621679987157 Bool -> Type) # | |
Defined in Data.Promotion.Prelude.Base | |
| type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type) -> *) (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Instances type Apply (FoldlSym0 :: TyFun (TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) (TyFun b6989586621679269790 (TyFun [a6989586621679269789] b6989586621679269790 -> Type) -> Type) -> *) (l :: TyFun b6989586621679269790 (TyFun a6989586621679269789 b6989586621679269790 -> Type) -> Type) = FoldlSym1 l | |
| type Apply (ComparingSym0 :: TyFun (TyFun b6989586621679315161 a6989586621679315160 -> Type) (TyFun b6989586621679315161 (TyFun b6989586621679315161 Ordering -> Type) -> Type) -> *) (l :: TyFun b6989586621679315161 a6989586621679315160 -> Type) # | |
Defined in Data.Singletons.Prelude.Ord | |
| type Apply (MapMaybeSym0 :: TyFun (TyFun a6989586621679419775 (Maybe b6989586621679419776) -> Type) (TyFun [a6989586621679419775] [b6989586621679419776] -> Type) -> *) (l :: TyFun a6989586621679419775 (Maybe b6989586621679419776) -> Type) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (($!@#@$) :: TyFun (TyFun a6989586621679435589 b6989586621679435590 -> Type) (TyFun a6989586621679435589 b6989586621679435590 -> Type) -> *) (l :: TyFun a6989586621679435589 b6989586621679435590 -> Type) # | |
| type Apply (($@#@$) :: TyFun (TyFun a6989586621679435591 b6989586621679435592 -> Type) (TyFun a6989586621679435591 b6989586621679435592 -> Type) -> *) (l :: TyFun a6989586621679435591 b6989586621679435592 -> Type) # | |
| type Apply (MapSym0 :: TyFun (TyFun a6989586621679435604 b6989586621679435605 -> Type) (TyFun [a6989586621679435604] [b6989586621679435605] -> Type) -> *) (l :: TyFun a6989586621679435604 b6989586621679435605 -> Type) # | |
| type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Base type Apply (FoldrSym0 :: TyFun (TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) (TyFun b6989586621679435607 (TyFun [a6989586621679435606] b6989586621679435607 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435606 (TyFun b6989586621679435607 b6989586621679435607 -> Type) -> Type) = FoldrSym1 l | |
| type Apply (UnfoldrSym0 :: TyFun (TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) (TyFun b6989586621679458459 [a6989586621679458460] -> Type) -> *) (l :: TyFun b6989586621679458459 (Maybe (a6989586621679458460, b6989586621679458459)) -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) (TyFun b6989586621679458469 (TyFun [a6989586621679458468] [b6989586621679458469] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458468 (TyFun b6989586621679458469 b6989586621679458469 -> Type) -> Type) = ScanrSym1 l | |
| type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type) -> *) (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) (TyFun b6989586621679458471 (TyFun [a6989586621679458472] [b6989586621679458471] -> Type) -> Type) -> *) (l :: TyFun b6989586621679458471 (TyFun a6989586621679458472 b6989586621679458471 -> Type) -> Type) = ScanlSym1 l | |
| type Apply (ConcatMapSym0 :: TyFun (TyFun a6989586621679458475 [b6989586621679458476] -> Type) (TyFun [a6989586621679458475] [b6989586621679458476] -> Type) -> *) (l :: TyFun a6989586621679458475 [b6989586621679458476] -> Type) # | |
Defined in Data.Singletons.Prelude.List | |
| type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type) -> *) (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (Foldl'Sym0 :: TyFun (TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) (TyFun b6989586621679458482 (TyFun [a6989586621679458481] b6989586621679458482 -> Type) -> Type) -> *) (l :: TyFun b6989586621679458482 (TyFun a6989586621679458481 b6989586621679458482 -> Type) -> Type) = Foldl'Sym1 l | |
| type Apply (GroupWithSym0 :: TyFun (TyFun a6989586621679791941 b6989586621679791940 -> Type) (TyFun [a6989586621679791941] [NonEmpty a6989586621679791941] -> Type) -> *) (l :: TyFun a6989586621679791941 b6989586621679791940 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupAllWithSym0 :: TyFun (TyFun a6989586621679791939 b6989586621679791938 -> Type) (TyFun [a6989586621679791939] [NonEmpty a6989586621679791939] -> Type) -> *) (l :: TyFun a6989586621679791939 b6989586621679791938 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupWith1Sym0 :: TyFun (TyFun a6989586621679791935 b6989586621679791934 -> Type) (TyFun (NonEmpty a6989586621679791935) (NonEmpty (NonEmpty a6989586621679791935)) -> Type) -> *) (l :: TyFun a6989586621679791935 b6989586621679791934 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (MapSym0 :: TyFun (TyFun a6989586621679791964 b6989586621679791965 -> Type) (TyFun (NonEmpty a6989586621679791964) (NonEmpty b6989586621679791965) -> Type) -> *) (l :: TyFun a6989586621679791964 b6989586621679791965 -> Type) # | |
| type Apply (SortWithSym0 :: TyFun (TyFun a6989586621679791918 o6989586621679791917 -> Type) (TyFun (NonEmpty a6989586621679791918) (NonEmpty a6989586621679791918) -> Type) -> *) (l :: TyFun a6989586621679791918 o6989586621679791917 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (GroupAllWith1Sym0 :: TyFun (TyFun a6989586621679791933 b6989586621679791932 -> Type) (TyFun (NonEmpty a6989586621679791933) (NonEmpty (NonEmpty a6989586621679791933)) -> Type) -> *) (l :: TyFun a6989586621679791933 b6989586621679791932 -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty | |
| type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) (TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> Type) -> *) (l :: TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ScanlSym0 :: TyFun (TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) (TyFun b6989586621679791959 (TyFun [a6989586621679791960] (NonEmpty b6989586621679791959) -> Type) -> Type) -> *) (l :: TyFun b6989586621679791959 (TyFun a6989586621679791960 b6989586621679791959 -> Type) -> Type) = ScanlSym1 l | |
| type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) (TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> Type) -> *) (l :: TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ScanrSym0 :: TyFun (TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) (TyFun b6989586621679791958 (TyFun [a6989586621679791957] (NonEmpty b6989586621679791958) -> Type) -> Type) -> *) (l :: TyFun a6989586621679791957 (TyFun b6989586621679791958 b6989586621679791958 -> Type) -> Type) = ScanrSym1 l | |
| type Apply (UnfoldrSym0 :: TyFun (TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) (TyFun a6989586621679791977 (NonEmpty b6989586621679791978) -> Type) -> *) (l :: TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (UnfoldrSym0 :: TyFun (TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) (TyFun a6989586621679791977 (NonEmpty b6989586621679791978) -> Type) -> *) (l :: TyFun a6989586621679791977 (b6989586621679791978, Maybe a6989586621679791977) -> Type) = UnfoldrSym1 l | |
| type Apply (UnfoldSym0 :: TyFun (TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) (TyFun a6989586621679791981 (NonEmpty b6989586621679791982) -> Type) -> *) (l :: TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (UnfoldSym0 :: TyFun (TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) (TyFun a6989586621679791981 (NonEmpty b6989586621679791982) -> Type) -> *) (l :: TyFun a6989586621679791981 (b6989586621679791982, Maybe a6989586621679791981) -> Type) = UnfoldSym1 l | |
| type Apply (UntilSym1 l1 :: TyFun (TyFun a6989586621679987157 a6989586621679987157 -> Type) (TyFun a6989586621679987157 a6989586621679987157 -> Type) -> *) (l2 :: TyFun a6989586621679987157 a6989586621679987157 -> Type) # | |
| type Apply (SwapSym0 :: TyFun (a, b) (b, a) -> *) (l :: (a, b)) # | |
| type Apply (ApplySym0 :: TyFun (k16989586621679025039 ~> k26989586621679025040) (TyFun k16989586621679025039 k26989586621679025040 -> Type) -> *) (l :: k16989586621679025039 ~> k26989586621679025040) # | |
| type Apply ((@@@#@$) :: TyFun (k16989586621679031134 ~> k6989586621679031133) (TyFun k16989586621679031134 k6989586621679031133 -> *) -> *) (l :: k16989586621679031134 ~> k6989586621679031133) # | |
| type Apply (CurrySym0 :: TyFun (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) (TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> Type) -> *) (l :: TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) # | |
Defined in Data.Singletons.Prelude.Tuple type Apply (CurrySym0 :: TyFun (TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) (TyFun a6989586621679297386 (TyFun b6989586621679297387 c6989586621679297388 -> Type) -> Type) -> *) (l :: TyFun (a6989586621679297386, b6989586621679297387) c6989586621679297388 -> Type) = CurrySym1 l | |
| type Apply (UncurrySym0 :: TyFun (TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) (TyFun (a6989586621679297383, b6989586621679297384) c6989586621679297385 -> Type) -> *) (l :: TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Tuple type Apply (UncurrySym0 :: TyFun (TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) (TyFun (a6989586621679297383, b6989586621679297384) c6989586621679297385 -> Type) -> *) (l :: TyFun a6989586621679297383 (TyFun b6989586621679297384 c6989586621679297385 -> Type) -> Type) = UncurrySym1 l | |
| type Apply (Maybe_Sym1 l1 :: TyFun (TyFun a6989586621679418663 b6989586621679418662 -> Type) (TyFun (Maybe a6989586621679418663) b6989586621679418662 -> Type) -> *) (l2 :: TyFun a6989586621679418663 b6989586621679418662 -> Type) # | |
Defined in Data.Singletons.Prelude.Maybe | |
| type Apply (FlipSym0 :: TyFun (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) (TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Base type Apply (FlipSym0 :: TyFun (TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) (TyFun b6989586621679435595 (TyFun a6989586621679435594 c6989586621679435596 -> Type) -> Type) -> *) (l :: TyFun a6989586621679435594 (TyFun b6989586621679435595 c6989586621679435596 -> Type) -> Type) = FlipSym1 l | |
| type Apply ((.@#@$) :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type) -> *) (l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) # | |
Defined in Data.Singletons.Prelude.Base type Apply ((.@#@$) :: TyFun (TyFun b6989586621679435597 c6989586621679435598 -> Type) (TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> Type) -> *) (l :: TyFun b6989586621679435597 c6989586621679435598 -> Type) = ((.@#@$$) l :: TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> *) | |
| type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) (TyFun [a6989586621679458444] (TyFun [b6989586621679458445] [c6989586621679458446] -> Type) -> Type) -> *) (l :: TyFun a6989586621679458444 (TyFun b6989586621679458445 c6989586621679458446 -> Type) -> Type) = ZipWithSym1 l | |
| type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumRSym0 :: TyFun (TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) (TyFun acc6989586621679458461 (TyFun [x6989586621679458462] (acc6989586621679458461, [y6989586621679458463]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458461 (TyFun x6989586621679458462 (acc6989586621679458461, y6989586621679458463) -> Type) -> Type) = MapAccumRSym1 l | |
| type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (MapAccumLSym0 :: TyFun (TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) (TyFun acc6989586621679458464 (TyFun [x6989586621679458465] (acc6989586621679458464, [y6989586621679458466]) -> Type) -> Type) -> *) (l :: TyFun acc6989586621679458464 (TyFun x6989586621679458465 (acc6989586621679458464, y6989586621679458466) -> Type) -> Type) = MapAccumLSym1 l | |
| type Apply (OnSym0 :: TyFun (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) (TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> Type) -> *) (l :: TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.Function type Apply (OnSym0 :: TyFun (TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) (TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> Type) -> *) (l :: TyFun b6989586621679782852 (TyFun b6989586621679782852 c6989586621679782853 -> Type) -> Type) = (OnSym1 l :: TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> *) | |
| type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> Type) -> *) (l :: TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List.NonEmpty type Apply (ZipWithSym0 :: TyFun (TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) (TyFun (NonEmpty a6989586621679791925) (TyFun (NonEmpty b6989586621679791926) (NonEmpty c6989586621679791927) -> Type) -> Type) -> *) (l :: TyFun a6989586621679791925 (TyFun b6989586621679791926 c6989586621679791927 -> Type) -> Type) = ZipWithSym1 l | |
| type Apply (Either_Sym0 :: TyFun (TyFun a6989586621679939843 c6989586621679939844 -> Type) (TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> Type) -> *) (l :: TyFun a6989586621679939843 c6989586621679939844 -> Type) # | |
Defined in Data.Singletons.Prelude.Either type Apply (Either_Sym0 :: TyFun (TyFun a6989586621679939843 c6989586621679939844 -> Type) (TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> Type) -> *) (l :: TyFun a6989586621679939843 c6989586621679939844 -> Type) = (Either_Sym1 l :: TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> *) | |
| type Apply ((.@#@$$) l1 :: TyFun (TyFun a6989586621679435599 b6989586621679435597 -> Type) (TyFun a6989586621679435599 c6989586621679435598 -> Type) -> *) (l2 :: TyFun a6989586621679435599 b6989586621679435597 -> Type) # | |
| type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) # | |
Defined in Data.Singletons.Prelude.List type Apply (ZipWith3Sym0 :: TyFun (TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) (TyFun [a6989586621679458440] (TyFun [b6989586621679458441] (TyFun [c6989586621679458442] [d6989586621679458443] -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679458440 (TyFun b6989586621679458441 (TyFun c6989586621679458442 d6989586621679458443 -> Type) -> Type) -> Type) = ZipWith3Sym1 l | |
| type Apply (OnSym1 l1 :: TyFun (TyFun a6989586621679782854 b6989586621679782852 -> Type) (TyFun a6989586621679782854 (TyFun a6989586621679782854 c6989586621679782853 -> Type) -> Type) -> *) (l2 :: TyFun a6989586621679782854 b6989586621679782852 -> Type) # | |
Defined in Data.Singletons.Prelude.Function | |
| type Apply (Either_Sym1 l1 :: TyFun (TyFun b6989586621679939845 c6989586621679939844 -> Type) (TyFun (Either a6989586621679939843 b6989586621679939845) c6989586621679939844 -> Type) -> *) (l2 :: TyFun b6989586621679939845 c6989586621679939844 -> Type) # | |
Defined in Data.Singletons.Prelude.Either | |
| type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith4Sym0 :: TyFun (TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950161] (TyFun [b6989586621679950162] (TyFun [c6989586621679950163] (TyFun [d6989586621679950164] [e6989586621679950165] -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950161 (TyFun b6989586621679950162 (TyFun c6989586621679950163 (TyFun d6989586621679950164 e6989586621679950165 -> Type) -> Type) -> Type) -> Type) = ZipWith4Sym1 l | |
| type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith5Sym0 :: TyFun (TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950155] (TyFun [b6989586621679950156] (TyFun [c6989586621679950157] (TyFun [d6989586621679950158] (TyFun [e6989586621679950159] [f6989586621679950160] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950155 (TyFun b6989586621679950156 (TyFun c6989586621679950157 (TyFun d6989586621679950158 (TyFun e6989586621679950159 f6989586621679950160 -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith5Sym1 l | |
| type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith6Sym0 :: TyFun (TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950148] (TyFun [b6989586621679950149] (TyFun [c6989586621679950150] (TyFun [d6989586621679950151] (TyFun [e6989586621679950152] (TyFun [f6989586621679950153] [g6989586621679950154] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950148 (TyFun b6989586621679950149 (TyFun c6989586621679950150 (TyFun d6989586621679950151 (TyFun e6989586621679950152 (TyFun f6989586621679950153 g6989586621679950154 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) = ZipWith6Sym1 l | |
| type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) # | |
Defined in Data.Promotion.Prelude.List type Apply (ZipWith7Sym0 :: TyFun (TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679950140] (TyFun [b6989586621679950141] (TyFun [c6989586621679950142] (TyFun [d6989586621679950143] (TyFun [e6989586621679950144] (TyFun [f6989586621679950145] (TyFun [g6989586621679950146] [h6989586621679950147] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (l :: TyFun a6989586621679950140 (TyFun b6989586621679950141 (TyFun c6989586621679950142 (TyFun d6989586621679950143 (TyFun e6989586621679950144 (TyFun f6989586621679950145 (TyFun g6989586621679950146 h6989586621679950147 -> 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 #
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 #
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 #
This is the inverse of singFun1, and likewise for the other
unSingFun... functions.
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 #
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 >>> >>> :tSLambda2SLambda2::SingFunction2f ->Singf >>> :tSLambda2@TakeSym0SLambda2::SingFunction2TakeSym0 ->SingTakeSym0 >>> :tSLambda2@TakeSym0 sTakeSLambda2::SingTakeSym0
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'') ->SingFunction2f
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 #
These type synonyms are exported only to improve error messages; users should not have to mention them.
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) #
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 EitherProxy
>>>Proxy :: Proxy FunctorProxy
>>>Proxy :: Proxy complicatedStructureProxy
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) #
Instances
| SuppressUnusedWarnings DemoteSym0 # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| type Apply DemoteSym0 (l :: Type) # | |
Defined in Data.Singletons | |
type DemoteSym1 (t :: Type) = Demote t #
data SameKindSym0 l #
Instances
| SuppressUnusedWarnings (SameKindSym0 :: TyFun k6989586621679026900 (TyFun k6989586621679026900 Constraint -> *) -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| type Apply (SameKindSym0 :: TyFun k6989586621679026900 (TyFun k6989586621679026900 Constraint -> *) -> *) (l :: k6989586621679026900) # | |
Defined in Data.Singletons type Apply (SameKindSym0 :: TyFun k6989586621679026900 (TyFun k6989586621679026900 Constraint -> *) -> *) (l :: k6989586621679026900) = SameKindSym1 l | |
data SameKindSym1 (l :: k6989586621679026900) l #
Instances
| SuppressUnusedWarnings (SameKindSym1 :: k6989586621679026900 -> TyFun k6989586621679026900 Constraint -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| type Apply (SameKindSym1 l1 :: TyFun k Constraint -> *) (l2 :: k) # | |
Defined in Data.Singletons | |
type SameKindSym2 (t :: k6989586621679026900) (t :: k6989586621679026900) = SameKind t t #
data KindOfSym0 l #
Instances
| SuppressUnusedWarnings (KindOfSym0 :: TyFun k6989586621679026903 * -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| type Apply (KindOfSym0 :: TyFun k * -> *) (l :: k) # | |
Defined in Data.Singletons | |
type KindOfSym1 (t :: k6989586621679026903) = KindOf t #
Instances
| SuppressUnusedWarnings (~>@#@$) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| type Apply (~>@#@$) (l :: Type) # | |
Defined in Data.Singletons | |
type (~>@#@$$$) (t :: Type) (t :: Type) = (~>) t t #
data ApplySym0 (l :: TyFun ((~>) k16989586621679025039 k26989586621679025040) (TyFun k16989586621679025039 k26989586621679025040 -> Type)) #
Instances
| SuppressUnusedWarnings (ApplySym0 :: TyFun (k16989586621679025039 ~> k26989586621679025040) (TyFun k16989586621679025039 k26989586621679025040 -> Type) -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| type Apply (ApplySym0 :: TyFun (k16989586621679025039 ~> k26989586621679025040) (TyFun k16989586621679025039 k26989586621679025040 -> Type) -> *) (l :: k16989586621679025039 ~> k26989586621679025040) # | |
data ApplySym1 (l :: (~>) k16989586621679025039 k26989586621679025040) (l :: TyFun k16989586621679025039 k26989586621679025040) #
Instances
| SuppressUnusedWarnings (ApplySym1 :: (k16989586621679025039 ~> k26989586621679025040) -> TyFun k16989586621679025039 k26989586621679025040 -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| type Apply (ApplySym1 l1 :: TyFun k1 k2 -> *) (l2 :: k1) # | |
type ApplySym2 (t :: (~>) k16989586621679025039 k26989586621679025040) (t :: k16989586621679025039) = Apply t t #
Instances
| SuppressUnusedWarnings ((@@@#@$) :: TyFun (k16989586621679031134 ~> k6989586621679031133) (TyFun k16989586621679031134 k6989586621679031133 -> *) -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| type Apply ((@@@#@$) :: TyFun (k16989586621679031134 ~> k6989586621679031133) (TyFun k16989586621679031134 k6989586621679031133 -> *) -> *) (l :: k16989586621679031134 ~> k6989586621679031133) # | |
data (l :: (~>) k16989586621679031134 k6989586621679031133) @@@#@$$ l #
Instances
| SuppressUnusedWarnings ((@@@#@$$) :: (k16989586621679031134 ~> k6989586621679031133) -> TyFun k16989586621679031134 k6989586621679031133 -> *) # | |
Defined in Data.Singletons Methods suppressUnusedWarnings :: () # | |
| type Apply ((@@@#@$$) l1 :: TyFun k1 k -> *) (l2 :: k1) # | |
type (@@@#@$$$) (t :: (~>) k16989586621679031134 k6989586621679031133) (t :: k16989586621679031134) = (@@) t t #
Orphan instances
| SBounded k => Bounded (SomeSing k) # | |
| (SEnum k, SingKind k) => Enum (SomeSing k) # | |
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) # | |
| SOrd k => Ord (SomeSing k) # | |
| ShowSing k => Show (SomeSing k) # | |