singletons-2.3.1: A framework for generating singleton types

Copyright(C) 2013 Richard Eisenberg
LicenseBSD-style (see LICENSE)
MaintainerRichard Eisenberg (rae@cs.brynmawr.edu)
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Data.Singletons.TH

Contents

Description

This module contains everything you need to derive your own singletons via Template Haskell.

TURN ON -XScopedTypeVariables IN YOUR MODULE IF YOU WANT THIS TO WORK.

Synopsis

Primary Template Haskell generation functions

singletons :: DsMonad q => q [Dec] -> q [Dec] #

Make promoted and singleton versions of all declarations given, retaining the original declarations. See https://github.com/goldfirere/singletons/blob/master/README.md for further explanation.

singletonsOnly :: DsMonad q => q [Dec] -> q [Dec] #

Make promoted and singleton versions of all declarations given, discarding the original declarations. Note that a singleton based on a datatype needs the original datatype, so this will fail if it sees any datatype declarations. Classes, instances, and functions are all fine.

genSingletons :: DsMonad q => [Name] -> q [Dec] #

Generate singleton definitions from a type that is already defined. For example, the singletons package itself uses

$(genSingletons [''Bool, ''Maybe, ''Either, ''[]])

to generate singletons for Prelude types.

promote :: DsMonad q => q [Dec] -> q [Dec] #

Promote every declaration given to the type level, retaining the originals.

promoteOnly :: DsMonad q => q [Dec] -> q [Dec] #

Promote each declaration, discarding the originals. Note that a promoted datatype uses the same definition as an original datatype, so this will not work with datatypes. Classes, instances, and functions are all fine.

genDefunSymbols :: DsMonad q => [Name] -> q [Dec] #

Generate defunctionalization symbols for existing type family

genPromotions :: DsMonad q => [Name] -> q [Dec] #

Generate promoted definitions from a type that is already defined. This is generally only useful with classes.

Functions to generate equality instances

promoteEqInstances :: DsMonad q => [Name] -> q [Dec] #

Produce instances for '(:==)' (type-level equality) from the given types

promoteEqInstance :: DsMonad q => Name -> q [Dec] #

Produce an instance for '(:==)' (type-level equality) from the given type

singEqInstances :: DsMonad q => [Name] -> q [Dec] #

Create instances of SEq and type-level '(:==)' for each type in the list

singEqInstance :: DsMonad q => Name -> q [Dec] #

Create instance of SEq and type-level '(:==)' for the given type

singEqInstancesOnly :: DsMonad q => [Name] -> q [Dec] #

Create instances of SEq (only -- no instance for '(:==)', which SEq generally relies on) for each type in the list

singEqInstanceOnly :: DsMonad q => Name -> q [Dec] #

Create instances of SEq (only -- no instance for '(:==)', which SEq generally relies on) for the given type

singDecideInstances :: DsMonad q => [Name] -> q [Dec] #

Create instances of SDecide for each type in the list.

singDecideInstance :: DsMonad q => Name -> q [Dec] #

Create instance of SDecide for the given type.

Functions to generate Ord instances

promoteOrdInstances :: DsMonad q => [Name] -> q [Dec] #

Produce instances for POrd from the given types

promoteOrdInstance :: DsMonad q => Name -> q [Dec] #

Produce an instance for POrd from the given type

singOrdInstances :: DsMonad q => [Name] -> q [Dec] #

Create instances of SOrd for the given types

singOrdInstance :: DsMonad q => Name -> q [Dec] #

Create instance of SOrd for the given type

Functions to generate Bounded instances

promoteBoundedInstances :: DsMonad q => [Name] -> q [Dec] #

Produce instances for PBounded from the given types

promoteBoundedInstance :: DsMonad q => Name -> q [Dec] #

Produce an instance for PBounded from the given type

singBoundedInstances :: DsMonad q => [Name] -> q [Dec] #

Create instances of SBounded for the given types

singBoundedInstance :: DsMonad q => Name -> q [Dec] #

Create instance of SBounded for the given type

Functions to generate Enum instances

promoteEnumInstances :: DsMonad q => [Name] -> q [Dec] #

Produce instances for PEnum from the given types

promoteEnumInstance :: DsMonad q => Name -> q [Dec] #

Produce an instance for PEnum from the given type

singEnumInstances :: DsMonad q => [Name] -> q [Dec] #

Create instances of SEnum for the given types

singEnumInstance :: DsMonad q => Name -> q [Dec] #

Create instance of SEnum for the given type

Utility functions

cases #

Arguments

:: DsMonad q 
=> Name

The head of the type of the scrutinee. (Like ''Maybe or ''Bool.)

-> q Exp

The scrutinee, in a Template Haskell quote

-> q Exp

The body, in a Template Haskell quote

-> q Exp 

The function cases generates a case expression where each right-hand side is identical. This may be useful if the type-checker requires knowledge of which constructor is used to satisfy equality or type-class constraints, but where each constructor is treated the same.

sCases #

Arguments

:: DsMonad q 
=> Name

The head of the type the scrutinee's type is based on. (Like ''Maybe or ''Bool.)

-> q Exp

The scrutinee, in a Template Haskell quote

-> q Exp

The body, in a Template Haskell quote

-> q Exp 

The function sCases generates a case expression where each right-hand side is identical. This may be useful if the type-checker requires knowledge of which constructor is used to satisfy equality or type-class constraints, but where each constructor is treated the same. For sCases, unlike cases, the scrutinee is a singleton. But make sure to pass in the name of the original datatype, preferring ''Maybe over ''SMaybe.

Basic singleton definitions

data family Sing (a :: k) #

The singleton kind-indexed data family.

Instances

data Sing Bool # 
data Sing Bool where
data Sing Ordering # 
data Sing * # 
data Sing * where
data Sing Nat # 
data Sing Nat where
data Sing Symbol # 
data Sing Symbol where
data Sing () # 
data Sing () where
data Sing [a] # 
data Sing [a] where
data Sing (Maybe a) # 
data Sing (Maybe a) where
data Sing (NonEmpty a) # 
data Sing (NonEmpty a) where
data Sing (Either a b) # 
data Sing (Either a b) where
data Sing (a, b) # 
data Sing (a, b) where
data Sing ((~>) k1 k2) # 
data Sing ((~>) k1 k2) = SLambda {}
data Sing (a, b, c) # 
data Sing (a, b, c) where
data Sing (a, b, c, d) # 
data Sing (a, b, c, d) where
data Sing (a, b, c, d, e) # 
data Sing (a, b, c, d, e) where
data Sing (a, b, c, d, e, f) # 
data Sing (a, b, c, d, e, f) where
data Sing (a, b, c, d, e, f, g) # 
data Sing (a, b, c, d, e, f, g) where

Auxiliary definitions

These definitions might be mentioned in code generated by Template Haskell, so they must be in scope.

class PEq a #

The promoted analogue of Eq. If you supply no definition for '(:==)', then it defaults to a use of '(==)', from Data.Type.Equality.

Associated Types

type (x :: a) :== (y :: a) :: Bool infix 4 #

type (x :: a) :/= (y :: a) :: Bool infix 4 #

Instances

PEq Bool # 

Associated Types

type (Bool :== (x :: Bool)) (y :: Bool) :: Bool #

type (Bool :/= (x :: Bool)) (y :: Bool) :: Bool #

PEq Ordering # 

Associated Types

type (Ordering :== (x :: Ordering)) (y :: Ordering) :: Bool #

type (Ordering :/= (x :: Ordering)) (y :: Ordering) :: Bool #

PEq () # 

Associated Types

type (() :== (x :: ())) (y :: ()) :: Bool #

type (() :/= (x :: ())) (y :: ()) :: Bool #

PEq [k] # 

Associated Types

type ([k] :== (x :: [k])) (y :: [k]) :: Bool #

type ([k] :/= (x :: [k])) (y :: [k]) :: Bool #

PEq (Maybe k) # 

Associated Types

type ((Maybe k) :== (x :: Maybe k)) (y :: Maybe k) :: Bool #

type ((Maybe k) :/= (x :: Maybe k)) (y :: Maybe k) :: Bool #

PEq (NonEmpty k) # 

Associated Types

type ((NonEmpty k) :== (x :: NonEmpty k)) (y :: NonEmpty k) :: Bool #

type ((NonEmpty k) :/= (x :: NonEmpty k)) (y :: NonEmpty k) :: Bool #

PEq (Either k1 k2) # 

Associated Types

type ((Either k1 k2) :== (x :: Either k1 k2)) (y :: Either k1 k2) :: Bool #

type ((Either k1 k2) :/= (x :: Either k1 k2)) (y :: Either k1 k2) :: Bool #

PEq (k1, k2) # 

Associated Types

type ((k1, k2) :== (x :: (k1, k2))) (y :: (k1, k2)) :: Bool #

type ((k1, k2) :/= (x :: (k1, k2))) (y :: (k1, k2)) :: Bool #

PEq (k1, k2, k3) # 

Associated Types

type ((k1, k2, k3) :== (x :: (k1, k2, k3))) (y :: (k1, k2, k3)) :: Bool #

type ((k1, k2, k3) :/= (x :: (k1, k2, k3))) (y :: (k1, k2, k3)) :: Bool #

PEq (k1, k2, k3, k4) # 

Associated Types

type ((k1, k2, k3, k4) :== (x :: (k1, k2, k3, k4))) (y :: (k1, k2, k3, k4)) :: Bool #

type ((k1, k2, k3, k4) :/= (x :: (k1, k2, k3, k4))) (y :: (k1, k2, k3, k4)) :: Bool #

PEq (k1, k2, k3, k4, k5) # 

Associated Types

type ((k1, k2, k3, k4, k5) :== (x :: (k1, k2, k3, k4, k5))) (y :: (k1, k2, k3, k4, k5)) :: Bool #

type ((k1, k2, k3, k4, k5) :/= (x :: (k1, k2, k3, k4, k5))) (y :: (k1, k2, k3, k4, k5)) :: Bool #

PEq (k1, k2, k3, k4, k5, k6) # 

Associated Types

type ((k1, k2, k3, k4, k5, k6) :== (x :: (k1, k2, k3, k4, k5, k6))) (y :: (k1, k2, k3, k4, k5, k6)) :: Bool #

type ((k1, k2, k3, k4, k5, k6) :/= (x :: (k1, k2, k3, k4, k5, k6))) (y :: (k1, k2, k3, k4, k5, k6)) :: Bool #

PEq (k1, k2, k3, k4, k5, k6, k7) # 

Associated Types

type ((k1, k2, k3, k4, k5, k6, k7) :== (x :: (k1, k2, k3, k4, k5, k6, k7))) (y :: (k1, k2, k3, k4, k5, k6, k7)) :: Bool #

type ((k1, k2, k3, k4, k5, k6, k7) :/= (x :: (k1, k2, k3, k4, k5, k6, k7))) (y :: (k1, k2, k3, k4, k5, k6, k7)) :: Bool #

type family If k (cond :: Bool) (tru :: k) (fls :: k) :: k where ... #

Type-level If. If True a b ==> a; If False a b ==> b

Equations

If k True tru fls = tru 
If k False tru fls = fls 

sIf :: Sing a -> Sing b -> Sing c -> Sing (If a b c) #

Conditional over singletons

type family (a :: Bool) :&& (a :: Bool) :: Bool where ... infixr 3 #

Equations

False :&& _z_6989586621679289204 = FalseSym0 
True :&& x = x 

class SEq k where #

The singleton analogue of Eq. Unlike the definition for Eq, it is required that instances define a body for '(%:==)'. You may also supply a body for '(%:/=)'.

Minimal complete definition

(%:==)

Methods

(%:==) :: forall (a :: k) (b :: k). Sing a -> Sing b -> Sing (a :== b) infix 4 #

Boolean equality on singletons

(%:/=) :: forall (a :: k) (b :: k). Sing a -> Sing b -> Sing (a :/= b) infix 4 #

Boolean disequality on singletons

(%:/=) :: forall (a :: k) (b :: k). (a :/= b) ~ Not (a :== b) => Sing a -> Sing b -> Sing (a :/= b) infix 4 #

Boolean disequality on singletons

Instances

SEq Bool # 

Methods

(%:==) :: Sing Bool a -> Sing Bool b -> Sing Bool ((Bool :== a) b) #

(%:/=) :: Sing Bool a -> Sing Bool b -> Sing Bool ((Bool :/= a) b) #

SEq Ordering # 

Methods

(%:==) :: Sing Ordering a -> Sing Ordering b -> Sing Bool ((Ordering :== a) b) #

(%:/=) :: Sing Ordering a -> Sing Ordering b -> Sing Bool ((Ordering :/= a) b) #

SEq () # 

Methods

(%:==) :: Sing () a -> Sing () b -> Sing Bool ((() :== a) b) #

(%:/=) :: Sing () a -> Sing () b -> Sing Bool ((() :/= a) b) #

SEq a => SEq [a] # 

Methods

(%:==) :: Sing [a] a -> Sing [a] b -> Sing Bool (([a] :== a) b) #

(%:/=) :: Sing [a] a -> Sing [a] b -> Sing Bool (([a] :/= a) b) #

SEq a => SEq (Maybe a) # 

Methods

(%:==) :: Sing (Maybe a) a -> Sing (Maybe a) b -> Sing Bool ((Maybe a :== a) b) #

(%:/=) :: Sing (Maybe a) a -> Sing (Maybe a) b -> Sing Bool ((Maybe a :/= a) b) #

SEq a => SEq (NonEmpty a) # 

Methods

(%:==) :: Sing (NonEmpty a) a -> Sing (NonEmpty a) b -> Sing Bool ((NonEmpty a :== a) b) #

(%:/=) :: Sing (NonEmpty a) a -> Sing (NonEmpty a) b -> Sing Bool ((NonEmpty a :/= a) b) #

(SEq a, SEq b) => SEq (Either a b) # 

Methods

(%:==) :: Sing (Either a b) a -> Sing (Either a b) b -> Sing Bool ((Either a b :== a) b) #

(%:/=) :: Sing (Either a b) a -> Sing (Either a b) b -> Sing Bool ((Either a b :/= a) b) #

(SEq a, SEq b) => SEq (a, b) # 

Methods

(%:==) :: Sing (a, b) a -> Sing (a, b) b -> Sing Bool (((a, b) :== a) b) #

(%:/=) :: Sing (a, b) a -> Sing (a, b) b -> Sing Bool (((a, b) :/= a) b) #

(SEq a, SEq b, SEq c) => SEq (a, b, c) # 

Methods

(%:==) :: Sing (a, b, c) a -> Sing (a, b, c) b -> Sing Bool (((a, b, c) :== a) b) #

(%:/=) :: Sing (a, b, c) a -> Sing (a, b, c) b -> Sing Bool (((a, b, c) :/= a) b) #

(SEq a, SEq b, SEq c, SEq d) => SEq (a, b, c, d) # 

Methods

(%:==) :: Sing (a, b, c, d) a -> Sing (a, b, c, d) b -> Sing Bool (((a, b, c, d) :== a) b) #

(%:/=) :: Sing (a, b, c, d) a -> Sing (a, b, c, d) b -> Sing Bool (((a, b, c, d) :/= a) b) #

(SEq a, SEq b, SEq c, SEq d, SEq e) => SEq (a, b, c, d, e) # 

Methods

(%:==) :: Sing (a, b, c, d, e) a -> Sing (a, b, c, d, e) b -> Sing Bool (((a, b, c, d, e) :== a) b) #

(%:/=) :: Sing (a, b, c, d, e) a -> Sing (a, b, c, d, e) b -> Sing Bool (((a, b, c, d, e) :/= a) b) #

(SEq a, SEq b, SEq c, SEq d, SEq e, SEq f) => SEq (a, b, c, d, e, f) # 

Methods

(%:==) :: Sing (a, b, c, d, e, f) a -> Sing (a, b, c, d, e, f) b -> Sing Bool (((a, b, c, d, e, f) :== a) b) #

(%:/=) :: Sing (a, b, c, d, e, f) a -> Sing (a, b, c, d, e, f) b -> Sing Bool (((a, b, c, d, e, f) :/= a) b) #

(SEq a, SEq b, SEq c, SEq d, SEq e, SEq f, SEq g) => SEq (a, b, c, d, e, f, g) # 

Methods

(%:==) :: Sing (a, b, c, d, e, f, g) a -> Sing (a, b, c, d, e, f, g) b -> Sing Bool (((a, b, c, d, e, f, g) :== a) b) #

(%:/=) :: Sing (a, b, c, d, e, f, g) a -> Sing (a, b, c, d, e, f, g) b -> Sing Bool (((a, b, c, d, e, f, g) :/= a) b) #

class PEq a => POrd (a :: Type) #

Associated Types

type Compare (arg :: a) (arg :: a) :: Ordering #

type (arg :: a) :< (arg :: a) :: Bool infix 4 #

type (arg :: a) :<= (arg :: a) :: Bool infix 4 #

type (arg :: a) :> (arg :: a) :: Bool infix 4 #

type (arg :: a) :>= (arg :: a) :: Bool infix 4 #

type Max (arg :: a) (arg :: a) :: a #

type Min (arg :: a) (arg :: a) :: a #

Instances

POrd Bool # 

Associated Types

type Compare Bool (arg :: Bool) (arg :: Bool) :: Ordering #

type (Bool :< (arg :: Bool)) (arg :: Bool) :: Bool #

type (Bool :<= (arg :: Bool)) (arg :: Bool) :: Bool #

type (Bool :> (arg :: Bool)) (arg :: Bool) :: Bool #

type (Bool :>= (arg :: Bool)) (arg :: Bool) :: Bool #

type Max Bool (arg :: Bool) (arg :: Bool) :: a #

type Min Bool (arg :: Bool) (arg :: Bool) :: a #

POrd Ordering # 

Associated Types

type Compare Ordering (arg :: Ordering) (arg :: Ordering) :: Ordering #

type (Ordering :< (arg :: Ordering)) (arg :: Ordering) :: Bool #

type (Ordering :<= (arg :: Ordering)) (arg :: Ordering) :: Bool #

type (Ordering :> (arg :: Ordering)) (arg :: Ordering) :: Bool #

type (Ordering :>= (arg :: Ordering)) (arg :: Ordering) :: Bool #

type Max Ordering (arg :: Ordering) (arg :: Ordering) :: a #

type Min Ordering (arg :: Ordering) (arg :: Ordering) :: a #

POrd () # 

Associated Types

type Compare () (arg :: ()) (arg :: ()) :: Ordering #

type (() :< (arg :: ())) (arg :: ()) :: Bool #

type (() :<= (arg :: ())) (arg :: ()) :: Bool #

type (() :> (arg :: ())) (arg :: ()) :: Bool #

type (() :>= (arg :: ())) (arg :: ()) :: Bool #

type Max () (arg :: ()) (arg :: ()) :: a #

type Min () (arg :: ()) (arg :: ()) :: a #

POrd [a] # 

Associated Types

type Compare [a] (arg :: [a]) (arg :: [a]) :: Ordering #

type ([a] :< (arg :: [a])) (arg :: [a]) :: Bool #

type ([a] :<= (arg :: [a])) (arg :: [a]) :: Bool #

type ([a] :> (arg :: [a])) (arg :: [a]) :: Bool #

type ([a] :>= (arg :: [a])) (arg :: [a]) :: Bool #

type Max [a] (arg :: [a]) (arg :: [a]) :: a #

type Min [a] (arg :: [a]) (arg :: [a]) :: a #

POrd (Maybe a) # 

Associated Types

type Compare (Maybe a) (arg :: Maybe a) (arg :: Maybe a) :: Ordering #

type ((Maybe a) :< (arg :: Maybe a)) (arg :: Maybe a) :: Bool #

type ((Maybe a) :<= (arg :: Maybe a)) (arg :: Maybe a) :: Bool #

type ((Maybe a) :> (arg :: Maybe a)) (arg :: Maybe a) :: Bool #

type ((Maybe a) :>= (arg :: Maybe a)) (arg :: Maybe a) :: Bool #

type Max (Maybe a) (arg :: Maybe a) (arg :: Maybe a) :: a #

type Min (Maybe a) (arg :: Maybe a) (arg :: Maybe a) :: a #

POrd (NonEmpty a) # 

Associated Types

type Compare (NonEmpty a) (arg :: NonEmpty a) (arg :: NonEmpty a) :: Ordering #

type ((NonEmpty a) :< (arg :: NonEmpty a)) (arg :: NonEmpty a) :: Bool #

type ((NonEmpty a) :<= (arg :: NonEmpty a)) (arg :: NonEmpty a) :: Bool #

type ((NonEmpty a) :> (arg :: NonEmpty a)) (arg :: NonEmpty a) :: Bool #

type ((NonEmpty a) :>= (arg :: NonEmpty a)) (arg :: NonEmpty a) :: Bool #

type Max (NonEmpty a) (arg :: NonEmpty a) (arg :: NonEmpty a) :: a #

type Min (NonEmpty a) (arg :: NonEmpty a) (arg :: NonEmpty a) :: a #

POrd (Either a b) # 

Associated Types

type Compare (Either a b) (arg :: Either a b) (arg :: Either a b) :: Ordering #

type ((Either a b) :< (arg :: Either a b)) (arg :: Either a b) :: Bool #

type ((Either a b) :<= (arg :: Either a b)) (arg :: Either a b) :: Bool #

type ((Either a b) :> (arg :: Either a b)) (arg :: Either a b) :: Bool #

type ((Either a b) :>= (arg :: Either a b)) (arg :: Either a b) :: Bool #

type Max (Either a b) (arg :: Either a b) (arg :: Either a b) :: a #

type Min (Either a b) (arg :: Either a b) (arg :: Either a b) :: a #

POrd (a, b) # 

Associated Types

type Compare (a, b) (arg :: (a, b)) (arg :: (a, b)) :: Ordering #

type ((a, b) :< (arg :: (a, b))) (arg :: (a, b)) :: Bool #

type ((a, b) :<= (arg :: (a, b))) (arg :: (a, b)) :: Bool #

type ((a, b) :> (arg :: (a, b))) (arg :: (a, b)) :: Bool #

type ((a, b) :>= (arg :: (a, b))) (arg :: (a, b)) :: Bool #

type Max (a, b) (arg :: (a, b)) (arg :: (a, b)) :: a #

type Min (a, b) (arg :: (a, b)) (arg :: (a, b)) :: a #

POrd (a, b, c) # 

Associated Types

type Compare (a, b, c) (arg :: (a, b, c)) (arg :: (a, b, c)) :: Ordering #

type ((a, b, c) :< (arg :: (a, b, c))) (arg :: (a, b, c)) :: Bool #

type ((a, b, c) :<= (arg :: (a, b, c))) (arg :: (a, b, c)) :: Bool #

type ((a, b, c) :> (arg :: (a, b, c))) (arg :: (a, b, c)) :: Bool #

type ((a, b, c) :>= (arg :: (a, b, c))) (arg :: (a, b, c)) :: Bool #

type Max (a, b, c) (arg :: (a, b, c)) (arg :: (a, b, c)) :: a #

type Min (a, b, c) (arg :: (a, b, c)) (arg :: (a, b, c)) :: a #

POrd (a, b, c, d) # 

Associated Types

type Compare (a, b, c, d) (arg :: (a, b, c, d)) (arg :: (a, b, c, d)) :: Ordering #

type ((a, b, c, d) :< (arg :: (a, b, c, d))) (arg :: (a, b, c, d)) :: Bool #

type ((a, b, c, d) :<= (arg :: (a, b, c, d))) (arg :: (a, b, c, d)) :: Bool #

type ((a, b, c, d) :> (arg :: (a, b, c, d))) (arg :: (a, b, c, d)) :: Bool #

type ((a, b, c, d) :>= (arg :: (a, b, c, d))) (arg :: (a, b, c, d)) :: Bool #

type Max (a, b, c, d) (arg :: (a, b, c, d)) (arg :: (a, b, c, d)) :: a #

type Min (a, b, c, d) (arg :: (a, b, c, d)) (arg :: (a, b, c, d)) :: a #

POrd (a, b, c, d, e) # 

Associated Types

type Compare (a, b, c, d, e) (arg :: (a, b, c, d, e)) (arg :: (a, b, c, d, e)) :: Ordering #

type ((a, b, c, d, e) :< (arg :: (a, b, c, d, e))) (arg :: (a, b, c, d, e)) :: Bool #

type ((a, b, c, d, e) :<= (arg :: (a, b, c, d, e))) (arg :: (a, b, c, d, e)) :: Bool #

type ((a, b, c, d, e) :> (arg :: (a, b, c, d, e))) (arg :: (a, b, c, d, e)) :: Bool #

type ((a, b, c, d, e) :>= (arg :: (a, b, c, d, e))) (arg :: (a, b, c, d, e)) :: Bool #

type Max (a, b, c, d, e) (arg :: (a, b, c, d, e)) (arg :: (a, b, c, d, e)) :: a #

type Min (a, b, c, d, e) (arg :: (a, b, c, d, e)) (arg :: (a, b, c, d, e)) :: a #

POrd (a, b, c, d, e, f) # 

Associated Types

type Compare (a, b, c, d, e, f) (arg :: (a, b, c, d, e, f)) (arg :: (a, b, c, d, e, f)) :: Ordering #

type ((a, b, c, d, e, f) :< (arg :: (a, b, c, d, e, f))) (arg :: (a, b, c, d, e, f)) :: Bool #

type ((a, b, c, d, e, f) :<= (arg :: (a, b, c, d, e, f))) (arg :: (a, b, c, d, e, f)) :: Bool #

type ((a, b, c, d, e, f) :> (arg :: (a, b, c, d, e, f))) (arg :: (a, b, c, d, e, f)) :: Bool #

type ((a, b, c, d, e, f) :>= (arg :: (a, b, c, d, e, f))) (arg :: (a, b, c, d, e, f)) :: Bool #

type Max (a, b, c, d, e, f) (arg :: (a, b, c, d, e, f)) (arg :: (a, b, c, d, e, f)) :: a #

type Min (a, b, c, d, e, f) (arg :: (a, b, c, d, e, f)) (arg :: (a, b, c, d, e, f)) :: a #

POrd (a, b, c, d, e, f, g) # 

Associated Types

type Compare (a, b, c, d, e, f, g) (arg :: (a, b, c, d, e, f, g)) (arg :: (a, b, c, d, e, f, g)) :: Ordering #

type ((a, b, c, d, e, f, g) :< (arg :: (a, b, c, d, e, f, g))) (arg :: (a, b, c, d, e, f, g)) :: Bool #

type ((a, b, c, d, e, f, g) :<= (arg :: (a, b, c, d, e, f, g))) (arg :: (a, b, c, d, e, f, g)) :: Bool #

type ((a, b, c, d, e, f, g) :> (arg :: (a, b, c, d, e, f, g))) (arg :: (a, b, c, d, e, f, g)) :: Bool #

type ((a, b, c, d, e, f, g) :>= (arg :: (a, b, c, d, e, f, g))) (arg :: (a, b, c, d, e, f, g)) :: Bool #

type Max (a, b, c, d, e, f, g) (arg :: (a, b, c, d, e, f, g)) (arg :: (a, b, c, d, e, f, g)) :: a #

type Min (a, b, c, d, e, f, g) (arg :: (a, b, c, d, e, f, g)) (arg :: (a, b, c, d, e, f, g)) :: a #

class SEq a => SOrd a where #

Methods

sCompare :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply CompareSym0 t) t :: Ordering) #

(%:<) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (:<$) t) t :: Bool) infix 4 #

(%:<=) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (:<=$) t) t :: Bool) infix 4 #

(%:>) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (:>$) t) t :: Bool) infix 4 #

(%:>=) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (:>=$) t) t :: Bool) infix 4 #

sMax :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply MaxSym0 t) t :: a) #

sMin :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply MinSym0 t) t :: a) #

sCompare :: forall (t :: a) (t :: a). ((Apply (Apply CompareSym0 t) t :: Ordering) ~ Apply (Apply Compare_6989586621679326558Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply CompareSym0 t) t :: Ordering) #

(%:<) :: forall (t :: a) (t :: a). ((Apply (Apply (:<$) t) t :: Bool) ~ Apply (Apply TFHelper_6989586621679326591Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply (:<$) t) t :: Bool) infix 4 #

(%:<=) :: forall (t :: a) (t :: a). ((Apply (Apply (:<=$) t) t :: Bool) ~ Apply (Apply TFHelper_6989586621679326624Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply (:<=$) t) t :: Bool) infix 4 #

(%:>) :: forall (t :: a) (t :: a). ((Apply (Apply (:>$) t) t :: Bool) ~ Apply (Apply TFHelper_6989586621679326657Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply (:>$) t) t :: Bool) infix 4 #

(%:>=) :: forall (t :: a) (t :: a). ((Apply (Apply (:>=$) t) t :: Bool) ~ Apply (Apply TFHelper_6989586621679326690Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply (:>=$) t) t :: Bool) infix 4 #

sMax :: forall (t :: a) (t :: a). ((Apply (Apply MaxSym0 t) t :: a) ~ Apply (Apply Max_6989586621679326723Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply MaxSym0 t) t :: a) #

sMin :: forall (t :: a) (t :: a). ((Apply (Apply MinSym0 t) t :: a) ~ Apply (Apply Min_6989586621679326756Sym0 t) t) => Sing t -> Sing t -> Sing (Apply (Apply MinSym0 t) t :: a) #

Instances

SOrd Bool # 
SOrd Ordering # 
SOrd () # 

Methods

sCompare :: Sing () t -> Sing () t -> Sing Ordering (Apply () Ordering (Apply () (TyFun () Ordering -> Type) (CompareSym0 ()) t) t) #

(%:<) :: Sing () t -> Sing () t -> Sing Bool (Apply () Bool (Apply () (TyFun () Bool -> Type) ((:<$) ()) t) t) #

(%:<=) :: Sing () t -> Sing () t -> Sing Bool (Apply () Bool (Apply () (TyFun () Bool -> Type) ((:<=$) ()) t) t) #

(%:>) :: Sing () t -> Sing () t -> Sing Bool (Apply () Bool (Apply () (TyFun () Bool -> Type) ((:>$) ()) t) t) #

(%:>=) :: Sing () t -> Sing () t -> Sing Bool (Apply () Bool (Apply () (TyFun () Bool -> Type) ((:>=$) ()) t) t) #

sMax :: Sing () t -> Sing () t -> Sing () (Apply () () (Apply () (TyFun () () -> Type) (MaxSym0 ()) t) t) #

sMin :: Sing () t -> Sing () t -> Sing () (Apply () () (Apply () (TyFun () () -> Type) (MinSym0 ()) t) t) #

(SOrd a, SOrd [a]) => SOrd [a] # 

Methods

sCompare :: Sing [a] t -> Sing [a] t -> Sing Ordering (Apply [a] Ordering (Apply [a] (TyFun [a] Ordering -> Type) (CompareSym0 [a]) t) t) #

(%:<) :: Sing [a] t -> Sing [a] t -> Sing Bool (Apply [a] Bool (Apply [a] (TyFun [a] Bool -> Type) ((:<$) [a]) t) t) #

(%:<=) :: Sing [a] t -> Sing [a] t -> Sing Bool (Apply [a] Bool (Apply [a] (TyFun [a] Bool -> Type) ((:<=$) [a]) t) t) #

(%:>) :: Sing [a] t -> Sing [a] t -> Sing Bool (Apply [a] Bool (Apply [a] (TyFun [a] Bool -> Type) ((:>$) [a]) t) t) #

(%:>=) :: Sing [a] t -> Sing [a] t -> Sing Bool (Apply [a] Bool (Apply [a] (TyFun [a] Bool -> Type) ((:>=$) [a]) t) t) #

sMax :: Sing [a] t -> Sing [a] t -> Sing [a] (Apply [a] [a] (Apply [a] (TyFun [a] [a] -> Type) (MaxSym0 [a]) t) t) #

sMin :: Sing [a] t -> Sing [a] t -> Sing [a] (Apply [a] [a] (Apply [a] (TyFun [a] [a] -> Type) (MinSym0 [a]) t) t) #

SOrd a => SOrd (Maybe a) # 

Methods

sCompare :: Sing (Maybe a) t -> Sing (Maybe a) t -> Sing Ordering (Apply (Maybe a) Ordering (Apply (Maybe a) (TyFun (Maybe a) Ordering -> Type) (CompareSym0 (Maybe a)) t) t) #

(%:<) :: Sing (Maybe a) t -> Sing (Maybe a) t -> Sing Bool (Apply (Maybe a) Bool (Apply (Maybe a) (TyFun (Maybe a) Bool -> Type) ((:<$) (Maybe a)) t) t) #

(%:<=) :: Sing (Maybe a) t -> Sing (Maybe a) t -> Sing Bool (Apply (Maybe a) Bool (Apply (Maybe a) (TyFun (Maybe a) Bool -> Type) ((:<=$) (Maybe a)) t) t) #

(%:>) :: Sing (Maybe a) t -> Sing (Maybe a) t -> Sing Bool (Apply (Maybe a) Bool (Apply (Maybe a) (TyFun (Maybe a) Bool -> Type) ((:>$) (Maybe a)) t) t) #

(%:>=) :: Sing (Maybe a) t -> Sing (Maybe a) t -> Sing Bool (Apply (Maybe a) Bool (Apply (Maybe a) (TyFun (Maybe a) Bool -> Type) ((:>=$) (Maybe a)) t) t) #

sMax :: Sing (Maybe a) t -> Sing (Maybe a) t -> Sing (Maybe a) (Apply (Maybe a) (Maybe a) (Apply (Maybe a) (TyFun (Maybe a) (Maybe a) -> Type) (MaxSym0 (Maybe a)) t) t) #

sMin :: Sing (Maybe a) t -> Sing (Maybe a) t -> Sing (Maybe a) (Apply (Maybe a) (Maybe a) (Apply (Maybe a) (TyFun (Maybe a) (Maybe a) -> Type) (MinSym0 (Maybe a)) t) t) #

(SOrd a, SOrd [a]) => SOrd (NonEmpty a) # 

Methods

sCompare :: Sing (NonEmpty a) t -> Sing (NonEmpty a) t -> Sing Ordering (Apply (NonEmpty a) Ordering (Apply (NonEmpty a) (TyFun (NonEmpty a) Ordering -> Type) (CompareSym0 (NonEmpty a)) t) t) #

(%:<) :: Sing (NonEmpty a) t -> Sing (NonEmpty a) t -> Sing Bool (Apply (NonEmpty a) Bool (Apply (NonEmpty a) (TyFun (NonEmpty a) Bool -> Type) ((:<$) (NonEmpty a)) t) t) #

(%:<=) :: Sing (NonEmpty a) t -> Sing (NonEmpty a) t -> Sing Bool (Apply (NonEmpty a) Bool (Apply (NonEmpty a) (TyFun (NonEmpty a) Bool -> Type) ((:<=$) (NonEmpty a)) t) t) #

(%:>) :: Sing (NonEmpty a) t -> Sing (NonEmpty a) t -> Sing Bool (Apply (NonEmpty a) Bool (Apply (NonEmpty a) (TyFun (NonEmpty a) Bool -> Type) ((:>$) (NonEmpty a)) t) t) #

(%:>=) :: Sing (NonEmpty a) t -> Sing (NonEmpty a) t -> Sing Bool (Apply (NonEmpty a) Bool (Apply (NonEmpty a) (TyFun (NonEmpty a) Bool -> Type) ((:>=$) (NonEmpty a)) t) t) #

sMax :: Sing (NonEmpty a) t -> Sing (NonEmpty a) t -> Sing (NonEmpty a) (Apply (NonEmpty a) (NonEmpty a) (Apply (NonEmpty a) (TyFun (NonEmpty a) (NonEmpty a) -> Type) (MaxSym0 (NonEmpty a)) t) t) #

sMin :: Sing (NonEmpty a) t -> Sing (NonEmpty a) t -> Sing (NonEmpty a) (Apply (NonEmpty a) (NonEmpty a) (Apply (NonEmpty a) (TyFun (NonEmpty a) (NonEmpty a) -> Type) (MinSym0 (NonEmpty a)) t) t) #

(SOrd a, SOrd b) => SOrd (Either a b) # 

Methods

sCompare :: Sing (Either a b) t -> Sing (Either a b) t -> Sing Ordering (Apply (Either a b) Ordering (Apply (Either a b) (TyFun (Either a b) Ordering -> Type) (CompareSym0 (Either a b)) t) t) #

(%:<) :: Sing (Either a b) t -> Sing (Either a b) t -> Sing Bool (Apply (Either a b) Bool (Apply (Either a b) (TyFun (Either a b) Bool -> Type) ((:<$) (Either a b)) t) t) #

(%:<=) :: Sing (Either a b) t -> Sing (Either a b) t -> Sing Bool (Apply (Either a b) Bool (Apply (Either a b) (TyFun (Either a b) Bool -> Type) ((:<=$) (Either a b)) t) t) #

(%:>) :: Sing (Either a b) t -> Sing (Either a b) t -> Sing Bool (Apply (Either a b) Bool (Apply (Either a b) (TyFun (Either a b) Bool -> Type) ((:>$) (Either a b)) t) t) #

(%:>=) :: Sing (Either a b) t -> Sing (Either a b) t -> Sing Bool (Apply (Either a b) Bool (Apply (Either a b) (TyFun (Either a b) Bool -> Type) ((:>=$) (Either a b)) t) t) #

sMax :: Sing (Either a b) t -> Sing (Either a b) t -> Sing (Either a b) (Apply (Either a b) (Either a b) (Apply (Either a b) (TyFun (Either a b) (Either a b) -> Type) (MaxSym0 (Either a b)) t) t) #

sMin :: Sing (Either a b) t -> Sing (Either a b) t -> Sing (Either a b) (Apply (Either a b) (Either a b) (Apply (Either a b) (TyFun (Either a b) (Either a b) -> Type) (MinSym0 (Either a b)) t) t) #

(SOrd a, SOrd b) => SOrd (a, b) # 

Methods

sCompare :: Sing (a, b) t -> Sing (a, b) t -> Sing Ordering (Apply (a, b) Ordering (Apply (a, b) (TyFun (a, b) Ordering -> Type) (CompareSym0 (a, b)) t) t) #

(%:<) :: Sing (a, b) t -> Sing (a, b) t -> Sing Bool (Apply (a, b) Bool (Apply (a, b) (TyFun (a, b) Bool -> Type) ((:<$) (a, b)) t) t) #

(%:<=) :: Sing (a, b) t -> Sing (a, b) t -> Sing Bool (Apply (a, b) Bool (Apply (a, b) (TyFun (a, b) Bool -> Type) ((:<=$) (a, b)) t) t) #

(%:>) :: Sing (a, b) t -> Sing (a, b) t -> Sing Bool (Apply (a, b) Bool (Apply (a, b) (TyFun (a, b) Bool -> Type) ((:>$) (a, b)) t) t) #

(%:>=) :: Sing (a, b) t -> Sing (a, b) t -> Sing Bool (Apply (a, b) Bool (Apply (a, b) (TyFun (a, b) Bool -> Type) ((:>=$) (a, b)) t) t) #

sMax :: Sing (a, b) t -> Sing (a, b) t -> Sing (a, b) (Apply (a, b) (a, b) (Apply (a, b) (TyFun (a, b) (a, b) -> Type) (MaxSym0 (a, b)) t) t) #

sMin :: Sing (a, b) t -> Sing (a, b) t -> Sing (a, b) (Apply (a, b) (a, b) (Apply (a, b) (TyFun (a, b) (a, b) -> Type) (MinSym0 (a, b)) t) t) #

(SOrd a, SOrd b, SOrd c) => SOrd (a, b, c) # 

Methods

sCompare :: Sing (a, b, c) t -> Sing (a, b, c) t -> Sing Ordering (Apply (a, b, c) Ordering (Apply (a, b, c) (TyFun (a, b, c) Ordering -> Type) (CompareSym0 (a, b, c)) t) t) #

(%:<) :: Sing (a, b, c) t -> Sing (a, b, c) t -> Sing Bool (Apply (a, b, c) Bool (Apply (a, b, c) (TyFun (a, b, c) Bool -> Type) ((:<$) (a, b, c)) t) t) #

(%:<=) :: Sing (a, b, c) t -> Sing (a, b, c) t -> Sing Bool (Apply (a, b, c) Bool (Apply (a, b, c) (TyFun (a, b, c) Bool -> Type) ((:<=$) (a, b, c)) t) t) #

(%:>) :: Sing (a, b, c) t -> Sing (a, b, c) t -> Sing Bool (Apply (a, b, c) Bool (Apply (a, b, c) (TyFun (a, b, c) Bool -> Type) ((:>$) (a, b, c)) t) t) #

(%:>=) :: Sing (a, b, c) t -> Sing (a, b, c) t -> Sing Bool (Apply (a, b, c) Bool (Apply (a, b, c) (TyFun (a, b, c) Bool -> Type) ((:>=$) (a, b, c)) t) t) #

sMax :: Sing (a, b, c) t -> Sing (a, b, c) t -> Sing (a, b, c) (Apply (a, b, c) (a, b, c) (Apply (a, b, c) (TyFun (a, b, c) (a, b, c) -> Type) (MaxSym0 (a, b, c)) t) t) #

sMin :: Sing (a, b, c) t -> Sing (a, b, c) t -> Sing (a, b, c) (Apply (a, b, c) (a, b, c) (Apply (a, b, c) (TyFun (a, b, c) (a, b, c) -> Type) (MinSym0 (a, b, c)) t) t) #

(SOrd a, SOrd b, SOrd c, SOrd d) => SOrd (a, b, c, d) # 

Methods

sCompare :: Sing (a, b, c, d) t -> Sing (a, b, c, d) t -> Sing Ordering (Apply (a, b, c, d) Ordering (Apply (a, b, c, d) (TyFun (a, b, c, d) Ordering -> Type) (CompareSym0 (a, b, c, d)) t) t) #

(%:<) :: Sing (a, b, c, d) t -> Sing (a, b, c, d) t -> Sing Bool (Apply (a, b, c, d) Bool (Apply (a, b, c, d) (TyFun (a, b, c, d) Bool -> Type) ((:<$) (a, b, c, d)) t) t) #

(%:<=) :: Sing (a, b, c, d) t -> Sing (a, b, c, d) t -> Sing Bool (Apply (a, b, c, d) Bool (Apply (a, b, c, d) (TyFun (a, b, c, d) Bool -> Type) ((:<=$) (a, b, c, d)) t) t) #

(%:>) :: Sing (a, b, c, d) t -> Sing (a, b, c, d) t -> Sing Bool (Apply (a, b, c, d) Bool (Apply (a, b, c, d) (TyFun (a, b, c, d) Bool -> Type) ((:>$) (a, b, c, d)) t) t) #

(%:>=) :: Sing (a, b, c, d) t -> Sing (a, b, c, d) t -> Sing Bool (Apply (a, b, c, d) Bool (Apply (a, b, c, d) (TyFun (a, b, c, d) Bool -> Type) ((:>=$) (a, b, c, d)) t) t) #

sMax :: Sing (a, b, c, d) t -> Sing (a, b, c, d) t -> Sing (a, b, c, d) (Apply (a, b, c, d) (a, b, c, d) (Apply (a, b, c, d) (TyFun (a, b, c, d) (a, b, c, d) -> Type) (MaxSym0 (a, b, c, d)) t) t) #

sMin :: Sing (a, b, c, d) t -> Sing (a, b, c, d) t -> Sing (a, b, c, d) (Apply (a, b, c, d) (a, b, c, d) (Apply (a, b, c, d) (TyFun (a, b, c, d) (a, b, c, d) -> Type) (MinSym0 (a, b, c, d)) t) t) #

(SOrd a, SOrd b, SOrd c, SOrd d, SOrd e) => SOrd (a, b, c, d, e) # 

Methods

sCompare :: Sing (a, b, c, d, e) t -> Sing (a, b, c, d, e) t -> Sing Ordering (Apply (a, b, c, d, e) Ordering (Apply (a, b, c, d, e) (TyFun (a, b, c, d, e) Ordering -> Type) (CompareSym0 (a, b, c, d, e)) t) t) #

(%:<) :: Sing (a, b, c, d, e) t -> Sing (a, b, c, d, e) t -> Sing Bool (Apply (a, b, c, d, e) Bool (Apply (a, b, c, d, e) (TyFun (a, b, c, d, e) Bool -> Type) ((:<$) (a, b, c, d, e)) t) t) #

(%:<=) :: Sing (a, b, c, d, e) t -> Sing (a, b, c, d, e) t -> Sing Bool (Apply (a, b, c, d, e) Bool (Apply (a, b, c, d, e) (TyFun (a, b, c, d, e) Bool -> Type) ((:<=$) (a, b, c, d, e)) t) t) #

(%:>) :: Sing (a, b, c, d, e) t -> Sing (a, b, c, d, e) t -> Sing Bool (Apply (a, b, c, d, e) Bool (Apply (a, b, c, d, e) (TyFun (a, b, c, d, e) Bool -> Type) ((:>$) (a, b, c, d, e)) t) t) #

(%:>=) :: Sing (a, b, c, d, e) t -> Sing (a, b, c, d, e) t -> Sing Bool (Apply (a, b, c, d, e) Bool (Apply (a, b, c, d, e) (TyFun (a, b, c, d, e) Bool -> Type) ((:>=$) (a, b, c, d, e)) t) t) #

sMax :: Sing (a, b, c, d, e) t -> Sing (a, b, c, d, e) t -> Sing (a, b, c, d, e) (Apply (a, b, c, d, e) (a, b, c, d, e) (Apply (a, b, c, d, e) (TyFun (a, b, c, d, e) (a, b, c, d, e) -> Type) (MaxSym0 (a, b, c, d, e)) t) t) #

sMin :: Sing (a, b, c, d, e) t -> Sing (a, b, c, d, e) t -> Sing (a, b, c, d, e) (Apply (a, b, c, d, e) (a, b, c, d, e) (Apply (a, b, c, d, e) (TyFun (a, b, c, d, e) (a, b, c, d, e) -> Type) (MinSym0 (a, b, c, d, e)) t) t) #

(SOrd a, SOrd b, SOrd c, SOrd d, SOrd e, SOrd f) => SOrd (a, b, c, d, e, f) # 

Methods

sCompare :: Sing (a, b, c, d, e, f) t -> Sing (a, b, c, d, e, f) t -> Sing Ordering (Apply (a, b, c, d, e, f) Ordering (Apply (a, b, c, d, e, f) (TyFun (a, b, c, d, e, f) Ordering -> Type) (CompareSym0 (a, b, c, d, e, f)) t) t) #

(%:<) :: Sing (a, b, c, d, e, f) t -> Sing (a, b, c, d, e, f) t -> Sing Bool (Apply (a, b, c, d, e, f) Bool (Apply (a, b, c, d, e, f) (TyFun (a, b, c, d, e, f) Bool -> Type) ((:<$) (a, b, c, d, e, f)) t) t) #

(%:<=) :: Sing (a, b, c, d, e, f) t -> Sing (a, b, c, d, e, f) t -> Sing Bool (Apply (a, b, c, d, e, f) Bool (Apply (a, b, c, d, e, f) (TyFun (a, b, c, d, e, f) Bool -> Type) ((:<=$) (a, b, c, d, e, f)) t) t) #

(%:>) :: Sing (a, b, c, d, e, f) t -> Sing (a, b, c, d, e, f) t -> Sing Bool (Apply (a, b, c, d, e, f) Bool (Apply (a, b, c, d, e, f) (TyFun (a, b, c, d, e, f) Bool -> Type) ((:>$) (a, b, c, d, e, f)) t) t) #

(%:>=) :: Sing (a, b, c, d, e, f) t -> Sing (a, b, c, d, e, f) t -> Sing Bool (Apply (a, b, c, d, e, f) Bool (Apply (a, b, c, d, e, f) (TyFun (a, b, c, d, e, f) Bool -> Type) ((:>=$) (a, b, c, d, e, f)) t) t) #

sMax :: Sing (a, b, c, d, e, f) t -> Sing (a, b, c, d, e, f) t -> Sing (a, b, c, d, e, f) (Apply (a, b, c, d, e, f) (a, b, c, d, e, f) (Apply (a, b, c, d, e, f) (TyFun (a, b, c, d, e, f) (a, b, c, d, e, f) -> Type) (MaxSym0 (a, b, c, d, e, f)) t) t) #

sMin :: Sing (a, b, c, d, e, f) t -> Sing (a, b, c, d, e, f) t -> Sing (a, b, c, d, e, f) (Apply (a, b, c, d, e, f) (a, b, c, d, e, f) (Apply (a, b, c, d, e, f) (TyFun (a, b, c, d, e, f) (a, b, c, d, e, f) -> Type) (MinSym0 (a, b, c, d, e, f)) t) t) #

(SOrd a, SOrd b, SOrd c, SOrd d, SOrd e, SOrd f, SOrd g) => SOrd (a, b, c, d, e, f, g) # 

Methods

sCompare :: Sing (a, b, c, d, e, f, g) t -> Sing (a, b, c, d, e, f, g) t -> Sing Ordering (Apply (a, b, c, d, e, f, g) Ordering (Apply (a, b, c, d, e, f, g) (TyFun (a, b, c, d, e, f, g) Ordering -> Type) (CompareSym0 (a, b, c, d, e, f, g)) t) t) #

(%:<) :: Sing (a, b, c, d, e, f, g) t -> Sing (a, b, c, d, e, f, g) t -> Sing Bool (Apply (a, b, c, d, e, f, g) Bool (Apply (a, b, c, d, e, f, g) (TyFun (a, b, c, d, e, f, g) Bool -> Type) ((:<$) (a, b, c, d, e, f, g)) t) t) #

(%:<=) :: Sing (a, b, c, d, e, f, g) t -> Sing (a, b, c, d, e, f, g) t -> Sing Bool (Apply (a, b, c, d, e, f, g) Bool (Apply (a, b, c, d, e, f, g) (TyFun (a, b, c, d, e, f, g) Bool -> Type) ((:<=$) (a, b, c, d, e, f, g)) t) t) #

(%:>) :: Sing (a, b, c, d, e, f, g) t -> Sing (a, b, c, d, e, f, g) t -> Sing Bool (Apply (a, b, c, d, e, f, g) Bool (Apply (a, b, c, d, e, f, g) (TyFun (a, b, c, d, e, f, g) Bool -> Type) ((:>$) (a, b, c, d, e, f, g)) t) t) #

(%:>=) :: Sing (a, b, c, d, e, f, g) t -> Sing (a, b, c, d, e, f, g) t -> Sing Bool (Apply (a, b, c, d, e, f, g) Bool (Apply (a, b, c, d, e, f, g) (TyFun (a, b, c, d, e, f, g) Bool -> Type) ((:>=$) (a, b, c, d, e, f, g)) t) t) #

sMax :: Sing (a, b, c, d, e, f, g) t -> Sing (a, b, c, d, e, f, g) t -> Sing (a, b, c, d, e, f, g) (Apply (a, b, c, d, e, f, g) (a, b, c, d, e, f, g) (Apply (a, b, c, d, e, f, g) (TyFun (a, b, c, d, e, f, g) (a, b, c, d, e, f, g) -> Type) (MaxSym0 (a, b, c, d, e, f, g)) t) t) #

sMin :: Sing (a, b, c, d, e, f, g) t -> Sing (a, b, c, d, e, f, g) t -> Sing (a, b, c, d, e, f, g) (Apply (a, b, c, d, e, f, g) (a, b, c, d, e, f, g) (Apply (a, b, c, d, e, f, g) (TyFun (a, b, c, d, e, f, g) (a, b, c, d, e, f, g) -> Type) (MinSym0 (a, b, c, d, e, f, g)) t) t) #

type family ThenCmp (a :: Ordering) (a :: Ordering) :: Ordering where ... #

Equations

ThenCmp EQ x = x 
ThenCmp LT _z_6989586621679333439 = LTSym0 
ThenCmp GT _z_6989586621679333442 = GTSym0 

sThenCmp :: forall (t :: Ordering) (t :: Ordering). Sing t -> Sing t -> Sing (Apply (Apply ThenCmpSym0 t) t :: Ordering) #

type family Foldl (a :: TyFun b (TyFun a b -> Type) -> Type) (a :: b) (a :: [a]) :: b where ... #

Equations

Foldl f z0 xs0 = Apply (Apply (Let6989586621679252356LgoSym3 f z0 xs0) z0) xs0 

sFoldl :: forall (t :: TyFun b (TyFun a b -> Type) -> Type) (t :: b) (t :: [a]). Sing t -> Sing t -> Sing t -> Sing (Apply (Apply (Apply FoldlSym0 t) t) t :: b) #

type family Any k0 :: k0 where ... #

The type constructor Any is type to which you can unsafely coerce any lifted type, and back. More concretely, for a lifted type t and value x :: t, -- unsafeCoerce (unsafeCoerce x :: Any) :: t is equivalent to x.

class SDecide k where #

Members of the SDecide "kind" class support decidable equality. Instances of this class are generated alongside singleton definitions for datatypes that derive an Eq instance.

Minimal complete definition

(%~)

Methods

(%~) :: forall (a :: k) (b :: k). Sing a -> Sing b -> Decision (a :~: b) #

Compute a proof or disproof of equality, given two singletons.

data (k :~: (a :: k)) (b :: k) :: forall k. k -> k -> * where infix 4 #

Propositional equality. If a :~: b is inhabited by some terminating value, then the type a is the same as the type b. To use this equality in practice, pattern-match on the a :~: b to get out the Refl constructor; in the body of the pattern-match, the compiler knows that a ~ b.

Since: 4.7.0.0

Constructors

Refl :: (:~:) k a a 

Instances

TestCoercion k ((:~:) k a)

Since: 4.7.0.0

Methods

testCoercion :: f a -> f b -> Maybe (Coercion (k :~: a) a b) #

TestEquality k ((:~:) k a)

Since: 4.7.0.0

Methods

testEquality :: f a -> f b -> Maybe (((k :~: a) :~: a) b) #

(~) k a b => Bounded ((:~:) k a b)

Since: 4.7.0.0

Methods

minBound :: (k :~: a) b #

maxBound :: (k :~: a) b #

(~) k a b => Enum ((:~:) k a b)

Since: 4.7.0.0

Methods

succ :: (k :~: a) b -> (k :~: a) b #

pred :: (k :~: a) b -> (k :~: a) b #

toEnum :: Int -> (k :~: a) b #

fromEnum :: (k :~: a) b -> Int #

enumFrom :: (k :~: a) b -> [(k :~: a) b] #

enumFromThen :: (k :~: a) b -> (k :~: a) b -> [(k :~: a) b] #

enumFromTo :: (k :~: a) b -> (k :~: a) b -> [(k :~: a) b] #

enumFromThenTo :: (k :~: a) b -> (k :~: a) b -> (k :~: a) b -> [(k :~: a) b] #

Eq ((:~:) k a b) 

Methods

(==) :: (k :~: a) b -> (k :~: a) b -> Bool #

(/=) :: (k :~: a) b -> (k :~: a) b -> Bool #

((~) * a b, Data a) => Data ((:~:) * a b)

Since: 4.7.0.0

Methods

gfoldl :: (forall d c. Data d => c (d -> c) -> d -> c c) -> (forall g. g -> c g) -> (* :~: a) b -> c ((* :~: a) b) #

gunfold :: (forall c r. Data c => c (c -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ((* :~: a) b) #

toConstr :: (* :~: a) b -> Constr #

dataTypeOf :: (* :~: a) b -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ((* :~: a) b)) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ((* :~: a) b)) #

gmapT :: (forall c. Data c => c -> c) -> (* :~: a) b -> (* :~: a) b #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> (* :~: a) b -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> (* :~: a) b -> r #

gmapQ :: (forall d. Data d => d -> u) -> (* :~: a) b -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> (* :~: a) b -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> (* :~: a) b -> m ((* :~: a) b) #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> (* :~: a) b -> m ((* :~: a) b) #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> (* :~: a) b -> m ((* :~: a) b) #

Ord ((:~:) k a b) 

Methods

compare :: (k :~: a) b -> (k :~: a) b -> Ordering #

(<) :: (k :~: a) b -> (k :~: a) b -> Bool #

(<=) :: (k :~: a) b -> (k :~: a) b -> Bool #

(>) :: (k :~: a) b -> (k :~: a) b -> Bool #

(>=) :: (k :~: a) b -> (k :~: a) b -> Bool #

max :: (k :~: a) b -> (k :~: a) b -> (k :~: a) b #

min :: (k :~: a) b -> (k :~: a) b -> (k :~: a) b #

(~) k a b => Read ((:~:) k a b)

Since: 4.7.0.0

Methods

readsPrec :: Int -> ReadS ((k :~: a) b) #

readList :: ReadS [(k :~: a) b] #

readPrec :: ReadPrec ((k :~: a) b) #

readListPrec :: ReadPrec [(k :~: a) b] #

Show ((:~:) k a b) 

Methods

showsPrec :: Int -> (k :~: a) b -> ShowS #

show :: (k :~: a) b -> String #

showList :: [(k :~: a) b] -> ShowS #

data Void :: * #

Uninhabited data type

Since: 4.8.0.0

Instances

Eq Void

Since: 4.8.0.0

Methods

(==) :: Void -> Void -> Bool #

(/=) :: Void -> Void -> Bool #

Data Void 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Void -> c Void #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Void #

toConstr :: Void -> Constr #

dataTypeOf :: Void -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Void) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Void) #

gmapT :: (forall b. Data b => b -> b) -> Void -> Void #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Void -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Void -> r #

gmapQ :: (forall d. Data d => d -> u) -> Void -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Void -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Void -> m Void #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Void -> m Void #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Void -> m Void #

Ord Void

Since: 4.8.0.0

Methods

compare :: Void -> Void -> Ordering #

(<) :: Void -> Void -> Bool #

(<=) :: Void -> Void -> Bool #

(>) :: Void -> Void -> Bool #

(>=) :: Void -> Void -> Bool #

max :: Void -> Void -> Void #

min :: Void -> Void -> Void #

Read Void

Reading a Void value is always a parse error, considering Void as a data type with no constructors. | @since 4.8.0.0

Show Void

Since: 4.8.0.0

Methods

showsPrec :: Int -> Void -> ShowS #

show :: Void -> String #

showList :: [Void] -> ShowS #

Ix Void

Since: 4.8.0.0

Methods

range :: (Void, Void) -> [Void] #

index :: (Void, Void) -> Void -> Int #

unsafeIndex :: (Void, Void) -> Void -> Int

inRange :: (Void, Void) -> Void -> Bool #

rangeSize :: (Void, Void) -> Int #

unsafeRangeSize :: (Void, Void) -> Int

Generic Void 

Associated Types

type Rep Void :: * -> * #

Methods

from :: Void -> Rep Void x #

to :: Rep Void x -> Void #

Semigroup Void

Since: 4.9.0.0

Methods

(<>) :: Void -> Void -> Void #

sconcat :: NonEmpty Void -> Void #

stimes :: Integral b => b -> Void -> Void #

Exception Void

Since: 4.8.0.0

type Rep Void 
type Rep Void = D1 * (MetaData "Void" "Data.Void" "base" False) (V1 *)

type Refuted a = a -> Void #

Because we can never create a value of type Void, a function that type-checks at a -> Void shows that objects of type a can never exist. Thus, we say that a is Refuted

data Decision a #

A Decision about a type a is either a proof of existence or a proof that a cannot exist.

Constructors

Proved a

Witness for a

Disproved (Refuted a)

Proof that no a exists

data SomeSing k where #

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.

Constructors

SomeSing :: Sing (a :: k) -> SomeSing k 

type family Error (str :: k0) :: k #

The promotion of error. This version is more poly-kinded for easier use.

data ErrorSym0 (l :: TyFun k06989586621679418718 k6989586621679418720) #

Instances

SuppressUnusedWarnings (TyFun k06989586621679418718 k6989586621679418720 -> *) (ErrorSym0 k06989586621679418718 k6989586621679418720) # 

Methods

suppressUnusedWarnings :: Proxy (ErrorSym0 k06989586621679418718 k6989586621679418720) t -> () #

type Apply k0 k2 (ErrorSym0 k0 k2) l # 
type Apply k0 k2 (ErrorSym0 k0 k2) l = Error k0 k2 l

type TrueSym0 = True #

type LTSym0 = LT #

type EQSym0 = EQ #

type GTSym0 = GT #

type Tuple0Sym0 = '() #

data Tuple2Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (Tuple2Sym0 a3530822107858468865 b3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple2Sym0 a3530822107858468865 b3530822107858468866) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) (Tuple2Sym0 a3530822107858468865 b3530822107858468866) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) (Tuple2Sym0 a3530822107858468865 b3530822107858468866) l = Tuple2Sym1 a3530822107858468865 b3530822107858468866 l

data Tuple2Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) (Tuple2Sym1 a3530822107858468865 b3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple2Sym1 a3530822107858468865 b3530822107858468866) t -> () #

type Apply k1 (k2, k1) (Tuple2Sym1 k2 k1 l1) l2 # 
type Apply k1 (k2, k1) (Tuple2Sym1 k2 k1 l1) l2 = (,) k2 k1 l1 l2

type Tuple2Sym2 (t :: a3530822107858468865) (t :: b3530822107858468866) = '(t, t) #

data Tuple3Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) l = Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 l

data Tuple3Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 l1) l2 = Tuple3Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 l1 l2

data Tuple3Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) (Tuple3Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867) t -> () #

type Apply k3 (k2, k1, k3) (Tuple3Sym2 k2 k1 k3 l1 l2) l3 # 
type Apply k3 (k2, k1, k3) (Tuple3Sym2 k2 k1 k3 l1 l2) l3 = (,,) k2 k1 k3 l1 l2 l3

type Tuple3Sym3 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) = '(t, t, t) #

data Tuple4Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) l = Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l

data Tuple4Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1) l2 = Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1 l2

data Tuple4Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

type Apply c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1 l2) l3 # 
type Apply c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1 l2) l3 = Tuple4Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 l1 l2 l3

data Tuple4Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) (Tuple4Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

type Apply k4 (k2, k1, k3, k4) (Tuple4Sym3 k2 k1 k3 k4 l1 l2 l3) l4 # 
type Apply k4 (k2, k1, k3, k4) (Tuple4Sym3 k2 k1 k3 k4 l1 l2 l3) l4 = (,,,) k2 k1 k3 k4 l1 l2 l3 l4

type Tuple4Sym4 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) = '(t, t, t, t) #

data Tuple5Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) l = Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l

data Tuple5Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1) l2 = Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2

data Tuple5Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2) l3 # 
type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2) l3 = Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2 l3

data Tuple5Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2 l3) l4 # 
type Apply d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2 l3) l4 = Tuple5Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 l1 l2 l3 l4

data Tuple5Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) (Tuple5Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

type Apply k5 (k2, k1, k3, k4, k5) (Tuple5Sym4 k2 k1 k3 k4 k5 l1 l2 l3 l4) l5 # 
type Apply k5 (k2, k1, k3, k4, k5) (Tuple5Sym4 k2 k1 k3 k4 k5 l1 l2 l3 l4) l5 = (,,,,) k2 k1 k3 k4 k5 l1 l2 l3 l4 l5

type Tuple5Sym5 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) = '(t, t, t, t, t) #

data Tuple6Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) l # 
type Apply a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) l = Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l

data Tuple6Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1) l2 = Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2

data Tuple6Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2) l3 # 
type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2) l3 = Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3

data Tuple6Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3) l4 # 
type Apply d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3) l4 = Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3 l4

data Tuple6Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3 l4) l5 # 
type Apply e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3 l4) l5 = Tuple6Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 l1 l2 l3 l4 l5

data Tuple6Sym5 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) (Tuple6Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

type Apply k6 (k2, k1, k3, k4, k5, k6) (Tuple6Sym5 k2 k1 k3 k4 k5 k6 l1 l2 l3 l4 l5) l6 # 
type Apply k6 (k2, k1, k3, k4, k5, k6) (Tuple6Sym5 k2 k1 k3 k4 k5 k6 l1 l2 l3 l4 l5) l6 = (,,,,,) k2 k1 k3 k4 k5 k6 l1 l2 l3 l4 l5 l6

type Tuple6Sym6 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) (t :: f3530822107858468870) = '(t, t, t, t, t, t) #

data Tuple7Sym0 (l :: TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (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) -> *) (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply 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) (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) l # 
type Apply 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) (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) l = Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l

data Tuple7Sym1 (l :: a3530822107858468865) (l :: TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (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) -> *) (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1) l2 # 
type Apply b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1) l2 = Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2

data Tuple7Sym2 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2) l3 # 
type Apply c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2) l3 = Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3

data Tuple7Sym3 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3) l4 # 
type Apply d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3) l4 = Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4

data Tuple7Sym4 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4) l5 # 
type Apply e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4) l5 = Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4 l5

data Tuple7Sym5 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4 l5) l6 # 
type Apply f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4 l5) l6 = Tuple7Sym6 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871 l1 l2 l3 l4 l5 l6

data Tuple7Sym6 (l :: a3530822107858468865) (l :: b3530822107858468866) (l :: c3530822107858468867) (l :: d3530822107858468868) (l :: e3530822107858468869) (l :: f3530822107858468870) (l :: TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871)) #

Instances

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> f3530822107858468870 -> TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) (Tuple7Sym6 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym6 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

type Apply k7 (k2, k1, k3, k4, k5, k6, k7) (Tuple7Sym6 k2 k1 k3 k4 k5 k6 k7 l1 l2 l3 l4 l5 l6) l7 # 
type Apply k7 (k2, k1, k3, k4, k5, k6, k7) (Tuple7Sym6 k2 k1 k3 k4 k5 k6 k7 l1 l2 l3 l4 l5 l6) l7 = (,,,,,,) k2 k1 k3 k4 k5 k6 k7 l1 l2 l3 l4 l5 l6 l7

type Tuple7Sym7 (t :: a3530822107858468865) (t :: b3530822107858468866) (t :: c3530822107858468867) (t :: d3530822107858468868) (t :: e3530822107858468869) (t :: f3530822107858468870) (t :: g3530822107858468871) = '(t, t, t, t, t, t, t) #

data CompareSym0 (l :: TyFun a6989586621679324852 (TyFun a6989586621679324852 Ordering -> Type)) #

Instances

SuppressUnusedWarnings (TyFun a6989586621679324852 (TyFun a6989586621679324852 Ordering -> Type) -> *) (CompareSym0 a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy (CompareSym0 a6989586621679324852) t -> () #

type Apply a6989586621679324852 (TyFun a6989586621679324852 Ordering -> Type) (CompareSym0 a6989586621679324852) l # 
type Apply a6989586621679324852 (TyFun a6989586621679324852 Ordering -> Type) (CompareSym0 a6989586621679324852) l = CompareSym1 a6989586621679324852 l

data FoldlSym0 (l :: TyFun (TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> Type)) #

Instances

SuppressUnusedWarnings (TyFun (TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> Type) -> *) (FoldlSym0 a6989586621679252327 b6989586621679252328) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym0 a6989586621679252327 b6989586621679252328) t -> () #

type Apply (TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> Type) (FoldlSym0 a6989586621679252327 b6989586621679252328) l # 
type Apply (TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> Type) (FoldlSym0 a6989586621679252327 b6989586621679252328) l = FoldlSym1 a6989586621679252327 b6989586621679252328 l

class SuppressUnusedWarnings (t :: k) where #

This class (which users should never see) is to be instantiated in order to use an otherwise-unused data constructor, such as the "kind-inference" data constructor for defunctionalization symbols.

Minimal complete definition

suppressUnusedWarnings

Methods

suppressUnusedWarnings :: Proxy t -> () #

Instances

SuppressUnusedWarnings (Bool -> TyFun Bool Bool -> *) (:&&$$) # 
SuppressUnusedWarnings (Bool -> TyFun Bool Bool -> *) (:||$$) # 
SuppressUnusedWarnings (Ordering -> TyFun Ordering Ordering -> *) ThenCmpSym1 # 
SuppressUnusedWarnings (Nat -> TyFun Nat Nat -> *) (:^$$) # 
SuppressUnusedWarnings (TyFun Bool Bool -> *) NotSym0 # 
SuppressUnusedWarnings (TyFun Bool (TyFun Bool Bool -> Type) -> *) (:&&$) # 
SuppressUnusedWarnings (TyFun Bool (TyFun Bool Bool -> Type) -> *) (:||$) # 
SuppressUnusedWarnings (TyFun [Bool] Bool -> *) AndSym0 # 
SuppressUnusedWarnings (TyFun [Bool] Bool -> *) OrSym0 # 
SuppressUnusedWarnings (TyFun Ordering (TyFun Ordering Ordering -> Type) -> *) ThenCmpSym0 # 
SuppressUnusedWarnings (TyFun Nat (TyFun Nat Nat -> *) -> *) (:^$) # 
SuppressUnusedWarnings (TyFun Nat Constraint -> *) KnownNatSym0 # 
SuppressUnusedWarnings (TyFun Symbol Constraint -> *) KnownSymbolSym0 # 
SuppressUnusedWarnings (TyFun (NonEmpty Bool) Bool -> *) XorSym0 # 
SuppressUnusedWarnings ((TyFun a6989586621679463106 Bool -> Type) -> (TyFun a6989586621679463106 a6989586621679463106 -> Type) -> TyFun a6989586621679463106 a6989586621679463106 -> *) (UntilSym2 a6989586621679463106) # 

Methods

suppressUnusedWarnings :: Proxy (UntilSym2 a6989586621679463106) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679463106 Bool -> Type) -> TyFun (TyFun a6989586621679463106 a6989586621679463106 -> Type) (TyFun a6989586621679463106 a6989586621679463106 -> Type) -> *) (UntilSym1 a6989586621679463106) # 

Methods

suppressUnusedWarnings :: Proxy (UntilSym1 a6989586621679463106) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679465427 Bool -> Type) -> TyFun [a6989586621679465427] Bool -> *) (Any_Sym1 a6989586621679465427) # 

Methods

suppressUnusedWarnings :: Proxy (Any_Sym1 a6989586621679465427) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) -> TyFun [a6989586621679475541] [a6989586621679475541] -> *) (NubBySym1 a6989586621679475541) # 

Methods

suppressUnusedWarnings :: Proxy (NubBySym1 a6989586621679475541) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475550 Bool -> Type) -> TyFun [a6989586621679475550] ([a6989586621679475550], [a6989586621679475550]) -> *) (PartitionSym1 a6989586621679475550) # 

Methods

suppressUnusedWarnings :: Proxy (PartitionSym1 a6989586621679475550) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475562 Bool -> Type) -> TyFun [a6989586621679475562] ([a6989586621679475562], [a6989586621679475562]) -> *) (BreakSym1 a6989586621679475562) # 

Methods

suppressUnusedWarnings :: Proxy (BreakSym1 a6989586621679475562) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475563 Bool -> Type) -> TyFun [a6989586621679475563] ([a6989586621679475563], [a6989586621679475563]) -> *) (SpanSym1 a6989586621679475563) # 

Methods

suppressUnusedWarnings :: Proxy (SpanSym1 a6989586621679475563) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) -> TyFun [a6989586621679475553] [[a6989586621679475553]] -> *) (GroupBySym1 a6989586621679475553) # 

Methods

suppressUnusedWarnings :: Proxy (GroupBySym1 a6989586621679475553) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475565 Bool -> Type) -> TyFun [a6989586621679475565] [a6989586621679475565] -> *) (DropWhileSym1 a6989586621679475565) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileSym1 a6989586621679475565) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475566 Bool -> Type) -> TyFun [a6989586621679475566] [a6989586621679475566] -> *) (TakeWhileSym1 a6989586621679475566) # 

Methods

suppressUnusedWarnings :: Proxy (TakeWhileSym1 a6989586621679475566) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475574 Bool -> Type) -> TyFun [a6989586621679475574] [a6989586621679475574] -> *) (FilterSym1 a6989586621679475574) # 

Methods

suppressUnusedWarnings :: Proxy (FilterSym1 a6989586621679475574) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475573 Bool -> Type) -> TyFun [a6989586621679475573] (Maybe a6989586621679475573) -> *) (FindSym1 a6989586621679475573) # 

Methods

suppressUnusedWarnings :: Proxy (FindSym1 a6989586621679475573) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) -> [a6989586621679475567] -> TyFun [a6989586621679475567] [a6989586621679475567] -> *) (IntersectBySym2 a6989586621679475567) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectBySym2 a6989586621679475567) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) -> TyFun [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type) -> *) (IntersectBySym1 a6989586621679475567) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectBySym1 a6989586621679475567) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) -> TyFun a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type) -> *) (InsertBySym1 a6989586621679475577) # 

Methods

suppressUnusedWarnings :: Proxy (InsertBySym1 a6989586621679475577) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) -> a6989586621679475577 -> TyFun [a6989586621679475577] [a6989586621679475577] -> *) (InsertBySym2 a6989586621679475577) # 

Methods

suppressUnusedWarnings :: Proxy (InsertBySym2 a6989586621679475577) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) -> TyFun [a6989586621679475578] [a6989586621679475578] -> *) (SortBySym1 a6989586621679475578) # 

Methods

suppressUnusedWarnings :: Proxy (SortBySym1 a6989586621679475578) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) -> TyFun a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type) -> *) (DeleteBySym1 a6989586621679475580) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteBySym1 a6989586621679475580) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) -> a6989586621679475580 -> TyFun [a6989586621679475580] [a6989586621679475580] -> *) (DeleteBySym2 a6989586621679475580) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteBySym2 a6989586621679475580) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) -> [a6989586621679475579] -> TyFun [a6989586621679475579] [a6989586621679475579] -> *) (DeleteFirstsBySym2 a6989586621679475579) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteFirstsBySym2 a6989586621679475579) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) -> TyFun [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type) -> *) (DeleteFirstsBySym1 a6989586621679475579) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteFirstsBySym1 a6989586621679475579) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) -> [a6989586621679475539] -> TyFun [a6989586621679475539] [a6989586621679475539] -> *) (UnionBySym2 a6989586621679475539) # 

Methods

suppressUnusedWarnings :: Proxy (UnionBySym2 a6989586621679475539) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) -> TyFun [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type) -> *) (UnionBySym1 a6989586621679475539) # 

Methods

suppressUnusedWarnings :: Proxy (UnionBySym1 a6989586621679475539) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475569 Bool -> Type) -> TyFun [a6989586621679475569] [Nat] -> *) (FindIndicesSym1 a6989586621679475569) # 

Methods

suppressUnusedWarnings :: Proxy (FindIndicesSym1 a6989586621679475569) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475570 Bool -> Type) -> TyFun [a6989586621679475570] (Maybe Nat) -> *) (FindIndexSym1 a6989586621679475570) # 

Methods

suppressUnusedWarnings :: Proxy (FindIndexSym1 a6989586621679475570) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) -> TyFun [a6989586621679475637] [a6989586621679475637] -> *) (Scanr1Sym1 a6989586621679475637) # 

Methods

suppressUnusedWarnings :: Proxy (Scanr1Sym1 a6989586621679475637) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) -> TyFun [a6989586621679475640] [a6989586621679475640] -> *) (Scanl1Sym1 a6989586621679475640) # 

Methods

suppressUnusedWarnings :: Proxy (Scanl1Sym1 a6989586621679475640) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475643 Bool -> Type) -> TyFun [a6989586621679475643] Bool -> *) (AllSym1 a6989586621679475643) # 

Methods

suppressUnusedWarnings :: Proxy (AllSym1 a6989586621679475643) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) -> TyFun [a6989586621679475647] a6989586621679475647 -> *) (Foldr1Sym1 a6989586621679475647) # 

Methods

suppressUnusedWarnings :: Proxy (Foldr1Sym1 a6989586621679475647) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) -> TyFun [a6989586621679475649] a6989586621679475649 -> *) (Foldl1Sym1 a6989586621679475649) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl1Sym1 a6989586621679475649) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) -> TyFun [a6989586621679475576] a6989586621679475576 -> *) (MaximumBySym1 a6989586621679475576) # 

Methods

suppressUnusedWarnings :: Proxy (MaximumBySym1 a6989586621679475576) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) -> TyFun [a6989586621679475575] a6989586621679475575 -> *) (MinimumBySym1 a6989586621679475575) # 

Methods

suppressUnusedWarnings :: Proxy (MinimumBySym1 a6989586621679475575) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) -> TyFun [a6989586621679475648] a6989586621679475648 -> *) (Foldl1'Sym1 a6989586621679475648) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl1'Sym1 a6989586621679475648) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475564 Bool -> Type) -> TyFun [a6989586621679475564] [a6989586621679475564] -> *) (DropWhileEndSym1 a6989586621679475564) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileEndSym1 a6989586621679475564) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753479 (TyFun a6989586621679753479 Bool -> Type) -> Type) -> TyFun (NonEmpty a6989586621679753479) (NonEmpty a6989586621679753479) -> *) (NubBySym1 a6989586621679753479) # 

Methods

suppressUnusedWarnings :: Proxy (NubBySym1 a6989586621679753479) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753500 (TyFun a6989586621679753500 Bool -> Type) -> Type) -> TyFun [a6989586621679753500] [NonEmpty a6989586621679753500] -> *) (GroupBySym1 a6989586621679753500) # 

Methods

suppressUnusedWarnings :: Proxy (GroupBySym1 a6989586621679753500) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753494 (TyFun a6989586621679753494 Bool -> Type) -> Type) -> TyFun (NonEmpty a6989586621679753494) (NonEmpty (NonEmpty a6989586621679753494)) -> *) (GroupBy1Sym1 a6989586621679753494) # 

Methods

suppressUnusedWarnings :: Proxy (GroupBy1Sym1 a6989586621679753494) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753507 Bool -> Type) -> TyFun (NonEmpty a6989586621679753507) [a6989586621679753507] -> *) (TakeWhileSym1 a6989586621679753507) # 

Methods

suppressUnusedWarnings :: Proxy (TakeWhileSym1 a6989586621679753507) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753506 Bool -> Type) -> TyFun (NonEmpty a6989586621679753506) [a6989586621679753506] -> *) (DropWhileSym1 a6989586621679753506) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileSym1 a6989586621679753506) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753505 Bool -> Type) -> TyFun (NonEmpty a6989586621679753505) ([a6989586621679753505], [a6989586621679753505]) -> *) (SpanSym1 a6989586621679753505) # 

Methods

suppressUnusedWarnings :: Proxy (SpanSym1 a6989586621679753505) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753504 Bool -> Type) -> TyFun (NonEmpty a6989586621679753504) ([a6989586621679753504], [a6989586621679753504]) -> *) (BreakSym1 a6989586621679753504) # 

Methods

suppressUnusedWarnings :: Proxy (BreakSym1 a6989586621679753504) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753503 Bool -> Type) -> TyFun (NonEmpty a6989586621679753503) [a6989586621679753503] -> *) (FilterSym1 a6989586621679753503) # 

Methods

suppressUnusedWarnings :: Proxy (FilterSym1 a6989586621679753503) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753502 Bool -> Type) -> TyFun (NonEmpty a6989586621679753502) ([a6989586621679753502], [a6989586621679753502]) -> *) (PartitionSym1 a6989586621679753502) # 

Methods

suppressUnusedWarnings :: Proxy (PartitionSym1 a6989586621679753502) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753477 (TyFun a6989586621679753477 Ordering -> Type) -> Type) -> TyFun (NonEmpty a6989586621679753477) (NonEmpty a6989586621679753477) -> *) (SortBySym1 a6989586621679753477) # 

Methods

suppressUnusedWarnings :: Proxy (SortBySym1 a6989586621679753477) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753514 (TyFun a6989586621679753514 a6989586621679753514 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679753514) (NonEmpty a6989586621679753514) -> *) (Scanl1Sym1 a6989586621679753514) # 

Methods

suppressUnusedWarnings :: Proxy (Scanl1Sym1 a6989586621679753514) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753513 (TyFun a6989586621679753513 a6989586621679753513 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679753513) (NonEmpty a6989586621679753513) -> *) (Scanr1Sym1 a6989586621679753513) # 

Methods

suppressUnusedWarnings :: Proxy (Scanr1Sym1 a6989586621679753513) t -> () #

SuppressUnusedWarnings ([a6989586621679292514] -> TyFun [a6989586621679292514] [a6989586621679292514] -> *) ((:++$$) a6989586621679292514) # 

Methods

suppressUnusedWarnings :: Proxy ((:++$$) a6989586621679292514) t -> () #

SuppressUnusedWarnings ([a6989586621679475543] -> TyFun Nat a6989586621679475543 -> *) ((:!!$$) a6989586621679475543) # 

Methods

suppressUnusedWarnings :: Proxy ((:!!$$) a6989586621679475543) t -> () #

SuppressUnusedWarnings ([a6989586621679475568] -> TyFun [a6989586621679475568] [a6989586621679475568] -> *) (IntersectSym1 a6989586621679475568) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectSym1 a6989586621679475568) t -> () #

SuppressUnusedWarnings ([a6989586621679475538] -> TyFun [a6989586621679475538] [a6989586621679475538] -> *) (UnionSym1 a6989586621679475538) # 

Methods

suppressUnusedWarnings :: Proxy (UnionSym1 a6989586621679475538) t -> () #

SuppressUnusedWarnings ([a6989586621679475581] -> TyFun [a6989586621679475581] [a6989586621679475581] -> *) ((:\\$$) a6989586621679475581) # 

Methods

suppressUnusedWarnings :: Proxy ((:\\$$) a6989586621679475581) t -> () #

SuppressUnusedWarnings ([a6989586621679475626] -> TyFun [a6989586621679475626] Bool -> *) (IsPrefixOfSym1 a6989586621679475626) # 

Methods

suppressUnusedWarnings :: Proxy (IsPrefixOfSym1 a6989586621679475626) t -> () #

SuppressUnusedWarnings ([a6989586621679475624] -> TyFun [a6989586621679475624] Bool -> *) (IsInfixOfSym1 a6989586621679475624) # 

Methods

suppressUnusedWarnings :: Proxy (IsInfixOfSym1 a6989586621679475624) t -> () #

SuppressUnusedWarnings ([a6989586621679475656] -> TyFun [[a6989586621679475656]] [a6989586621679475656] -> *) (IntercalateSym1 a6989586621679475656) # 

Methods

suppressUnusedWarnings :: Proxy (IntercalateSym1 a6989586621679475656) t -> () #

SuppressUnusedWarnings ([a6989586621679475625] -> TyFun [a6989586621679475625] Bool -> *) (IsSuffixOfSym1 a6989586621679475625) # 

Methods

suppressUnusedWarnings :: Proxy (IsSuffixOfSym1 a6989586621679475625) t -> () #

SuppressUnusedWarnings ([a6989586621679753489] -> TyFun (NonEmpty a6989586621679753489) Bool -> *) (IsPrefixOfSym1 a6989586621679753489) # 

Methods

suppressUnusedWarnings :: Proxy (IsPrefixOfSym1 a6989586621679753489) t -> () #

SuppressUnusedWarnings ([a6989586621679904319] -> TyFun [a6989586621679904319] (Maybe [a6989586621679904319]) -> *) (StripPrefixSym1 a6989586621679904319) # 

Methods

suppressUnusedWarnings :: Proxy (StripPrefixSym1 a6989586621679904319) t -> () #

SuppressUnusedWarnings (Nat -> TyFun [a6989586621679475560] [a6989586621679475560] -> *) (DropSym1 a6989586621679475560) # 

Methods

suppressUnusedWarnings :: Proxy (DropSym1 a6989586621679475560) t -> () #

SuppressUnusedWarnings (Nat -> TyFun [a6989586621679475561] [a6989586621679475561] -> *) (TakeSym1 a6989586621679475561) # 

Methods

suppressUnusedWarnings :: Proxy (TakeSym1 a6989586621679475561) t -> () #

SuppressUnusedWarnings (Nat -> TyFun [a6989586621679475559] ([a6989586621679475559], [a6989586621679475559]) -> *) (SplitAtSym1 a6989586621679475559) # 

Methods

suppressUnusedWarnings :: Proxy (SplitAtSym1 a6989586621679475559) t -> () #

SuppressUnusedWarnings (Nat -> TyFun a6989586621679475545 [a6989586621679475545] -> *) (ReplicateSym1 a6989586621679475545) # 

Methods

suppressUnusedWarnings :: Proxy (ReplicateSym1 a6989586621679475545) t -> () #

SuppressUnusedWarnings (Nat -> TyFun (NonEmpty a6989586621679753510) [a6989586621679753510] -> *) (TakeSym1 a6989586621679753510) # 

Methods

suppressUnusedWarnings :: Proxy (TakeSym1 a6989586621679753510) t -> () #

SuppressUnusedWarnings (Nat -> TyFun (NonEmpty a6989586621679753509) [a6989586621679753509] -> *) (DropSym1 a6989586621679753509) # 

Methods

suppressUnusedWarnings :: Proxy (DropSym1 a6989586621679753509) t -> () #

SuppressUnusedWarnings (Nat -> TyFun (NonEmpty a6989586621679753508) ([a6989586621679753508], [a6989586621679753508]) -> *) (SplitAtSym1 a6989586621679753508) # 

Methods

suppressUnusedWarnings :: Proxy (SplitAtSym1 a6989586621679753508) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> TyFun [a3530822107858468865] [a3530822107858468865] -> *) ((:$$) a3530822107858468865) # 

Methods

suppressUnusedWarnings :: Proxy ((:$$) a3530822107858468865) t -> () #

SuppressUnusedWarnings (a6989586621679075955 -> TyFun [a6989586621679075955] (NonEmpty a6989586621679075955) -> *) ((:|$$) a6989586621679075955) # 

Methods

suppressUnusedWarnings :: Proxy ((:|$$) a6989586621679075955) t -> () #

SuppressUnusedWarnings (a6989586621679288557 -> a6989586621679288557 -> TyFun Bool a6989586621679288557 -> *) (Bool_Sym2 a6989586621679288557) # 

Methods

suppressUnusedWarnings :: Proxy (Bool_Sym2 a6989586621679288557) t -> () #

SuppressUnusedWarnings (a6989586621679288557 -> TyFun a6989586621679288557 (TyFun Bool a6989586621679288557 -> Type) -> *) (Bool_Sym1 a6989586621679288557) # 

Methods

suppressUnusedWarnings :: Proxy (Bool_Sym1 a6989586621679288557) t -> () #

SuppressUnusedWarnings (a6989586621679292504 -> TyFun a6989586621679292504 a6989586621679292504 -> *) (AsTypeOfSym1 a6989586621679292504) # 

Methods

suppressUnusedWarnings :: Proxy (AsTypeOfSym1 a6989586621679292504) t -> () #

SuppressUnusedWarnings (a6989586621679309568 -> TyFun a6989586621679309568 Bool -> *) ((:==$$) a6989586621679309568) # 

Methods

suppressUnusedWarnings :: Proxy ((:==$$) a6989586621679309568) t -> () #

SuppressUnusedWarnings (a6989586621679309568 -> TyFun a6989586621679309568 Bool -> *) ((:/=$$) a6989586621679309568) # 

Methods

suppressUnusedWarnings :: Proxy ((:/=$$) a6989586621679309568) t -> () #

SuppressUnusedWarnings (a6989586621679324852 -> TyFun a6989586621679324852 Bool -> *) ((:<=$$) a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy ((:<=$$) a6989586621679324852) t -> () #

SuppressUnusedWarnings (a6989586621679324852 -> TyFun a6989586621679324852 Ordering -> *) (CompareSym1 a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy (CompareSym1 a6989586621679324852) t -> () #

SuppressUnusedWarnings (a6989586621679324852 -> TyFun a6989586621679324852 a6989586621679324852 -> *) (MinSym1 a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy (MinSym1 a6989586621679324852) t -> () #

SuppressUnusedWarnings (a6989586621679324852 -> TyFun a6989586621679324852 a6989586621679324852 -> *) (MaxSym1 a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy (MaxSym1 a6989586621679324852) t -> () #

SuppressUnusedWarnings (a6989586621679324852 -> TyFun a6989586621679324852 Bool -> *) ((:>=$$) a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy ((:>=$$) a6989586621679324852) t -> () #

SuppressUnusedWarnings (a6989586621679324852 -> TyFun a6989586621679324852 Bool -> *) ((:>$$) a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy ((:>$$) a6989586621679324852) t -> () #

SuppressUnusedWarnings (a6989586621679324852 -> TyFun a6989586621679324852 Bool -> *) ((:<$$) a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy ((:<$$) a6989586621679324852) t -> () #

SuppressUnusedWarnings (a6989586621679427063 -> TyFun a6989586621679427063 a6989586621679427063 -> *) ((:-$$) a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy ((:-$$) a6989586621679427063) t -> () #

SuppressUnusedWarnings (a6989586621679427063 -> TyFun a6989586621679427063 a6989586621679427063 -> *) ((:+$$) a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy ((:+$$) a6989586621679427063) t -> () #

SuppressUnusedWarnings (a6989586621679427063 -> TyFun a6989586621679427063 a6989586621679427063 -> *) ((:*$$) a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy ((:*$$) a6989586621679427063) t -> () #

SuppressUnusedWarnings (a6989586621679429354 -> TyFun a6989586621679429354 a6989586621679429354 -> *) (SubtractSym1 a6989586621679429354) # 

Methods

suppressUnusedWarnings :: Proxy (SubtractSym1 a6989586621679429354) t -> () #

SuppressUnusedWarnings (a6989586621679444547 -> TyFun (Maybe a6989586621679444547) a6989586621679444547 -> *) (FromMaybeSym1 a6989586621679444547) # 

Methods

suppressUnusedWarnings :: Proxy (FromMaybeSym1 a6989586621679444547) t -> () #

SuppressUnusedWarnings (a6989586621679475555 -> TyFun [a6989586621679475555] [a6989586621679475555] -> *) (InsertSym1 a6989586621679475555) # 

Methods

suppressUnusedWarnings :: Proxy (InsertSym1 a6989586621679475555) t -> () #

SuppressUnusedWarnings (a6989586621679475582 -> TyFun [a6989586621679475582] [a6989586621679475582] -> *) (DeleteSym1 a6989586621679475582) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteSym1 a6989586621679475582) t -> () #

SuppressUnusedWarnings (a6989586621679475571 -> TyFun [a6989586621679475571] [Nat] -> *) (ElemIndicesSym1 a6989586621679475571) # 

Methods

suppressUnusedWarnings :: Proxy (ElemIndicesSym1 a6989586621679475571) t -> () #

SuppressUnusedWarnings (a6989586621679475572 -> TyFun [a6989586621679475572] (Maybe Nat) -> *) (ElemIndexSym1 a6989586621679475572) # 

Methods

suppressUnusedWarnings :: Proxy (ElemIndexSym1 a6989586621679475572) t -> () #

SuppressUnusedWarnings (a6989586621679475622 -> TyFun [a6989586621679475622] Bool -> *) (NotElemSym1 a6989586621679475622) # 

Methods

suppressUnusedWarnings :: Proxy (NotElemSym1 a6989586621679475622) t -> () #

SuppressUnusedWarnings (a6989586621679475623 -> TyFun [a6989586621679475623] Bool -> *) (ElemSym1 a6989586621679475623) # 

Methods

suppressUnusedWarnings :: Proxy (ElemSym1 a6989586621679475623) t -> () #

SuppressUnusedWarnings (a6989586621679475657 -> TyFun [a6989586621679475657] [a6989586621679475657] -> *) (IntersperseSym1 a6989586621679475657) # 

Methods

suppressUnusedWarnings :: Proxy (IntersperseSym1 a6989586621679475657) t -> () #

SuppressUnusedWarnings (a6989586621679753512 -> TyFun (NonEmpty a6989586621679753512) (NonEmpty a6989586621679753512) -> *) (IntersperseSym1 a6989586621679753512) # 

Methods

suppressUnusedWarnings :: Proxy (IntersperseSym1 a6989586621679753512) t -> () #

SuppressUnusedWarnings (a6989586621679753519 -> TyFun [a6989586621679753519] (NonEmpty a6989586621679753519) -> *) (InsertSym1 a6989586621679753519) # 

Methods

suppressUnusedWarnings :: Proxy (InsertSym1 a6989586621679753519) t -> () #

SuppressUnusedWarnings (a6989586621679753530 -> TyFun (NonEmpty a6989586621679753530) (NonEmpty a6989586621679753530) -> *) ((:<|$$) a6989586621679753530) # 

Methods

suppressUnusedWarnings :: Proxy ((:<|$$) a6989586621679753530) t -> () #

SuppressUnusedWarnings (a6989586621679753529 -> TyFun (NonEmpty a6989586621679753529) (NonEmpty a6989586621679753529) -> *) (ConsSym1 a6989586621679753529) # 

Methods

suppressUnusedWarnings :: Proxy (ConsSym1 a6989586621679753529) t -> () #

SuppressUnusedWarnings (a6989586621679834780 -> TyFun a6989586621679834780 (TyFun a6989586621679834780 [a6989586621679834780] -> Type) -> *) (EnumFromThenToSym1 a6989586621679834780) # 

Methods

suppressUnusedWarnings :: Proxy (EnumFromThenToSym1 a6989586621679834780) t -> () #

SuppressUnusedWarnings (a6989586621679834780 -> a6989586621679834780 -> TyFun a6989586621679834780 [a6989586621679834780] -> *) (EnumFromThenToSym2 a6989586621679834780) # 

Methods

suppressUnusedWarnings :: Proxy (EnumFromThenToSym2 a6989586621679834780) t -> () #

SuppressUnusedWarnings (a6989586621679834780 -> TyFun a6989586621679834780 [a6989586621679834780] -> *) (EnumFromToSym1 a6989586621679834780) # 

Methods

suppressUnusedWarnings :: Proxy (EnumFromToSym1 a6989586621679834780) t -> () #

SuppressUnusedWarnings (NonEmpty a6989586621679753488 -> TyFun Nat a6989586621679753488 -> *) ((:!!$$) a6989586621679753488) # 

Methods

suppressUnusedWarnings :: Proxy ((:!!$$) a6989586621679753488) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679463106 Bool -> Type) (TyFun (TyFun a6989586621679463106 a6989586621679463106 -> Type) (TyFun a6989586621679463106 a6989586621679463106 -> Type) -> Type) -> *) (UntilSym0 a6989586621679463106) # 

Methods

suppressUnusedWarnings :: Proxy (UntilSym0 a6989586621679463106) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679465427 Bool -> Type) (TyFun [a6989586621679465427] Bool -> Type) -> *) (Any_Sym0 a6989586621679465427) # 

Methods

suppressUnusedWarnings :: Proxy (Any_Sym0 a6989586621679465427) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475541 (TyFun a6989586621679475541 Bool -> Type) -> Type) (TyFun [a6989586621679475541] [a6989586621679475541] -> Type) -> *) (NubBySym0 a6989586621679475541) # 

Methods

suppressUnusedWarnings :: Proxy (NubBySym0 a6989586621679475541) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475550 Bool -> Type) (TyFun [a6989586621679475550] ([a6989586621679475550], [a6989586621679475550]) -> Type) -> *) (PartitionSym0 a6989586621679475550) # 

Methods

suppressUnusedWarnings :: Proxy (PartitionSym0 a6989586621679475550) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475562 Bool -> Type) (TyFun [a6989586621679475562] ([a6989586621679475562], [a6989586621679475562]) -> Type) -> *) (BreakSym0 a6989586621679475562) # 

Methods

suppressUnusedWarnings :: Proxy (BreakSym0 a6989586621679475562) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475563 Bool -> Type) (TyFun [a6989586621679475563] ([a6989586621679475563], [a6989586621679475563]) -> Type) -> *) (SpanSym0 a6989586621679475563) # 

Methods

suppressUnusedWarnings :: Proxy (SpanSym0 a6989586621679475563) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475553 (TyFun a6989586621679475553 Bool -> Type) -> Type) (TyFun [a6989586621679475553] [[a6989586621679475553]] -> Type) -> *) (GroupBySym0 a6989586621679475553) # 

Methods

suppressUnusedWarnings :: Proxy (GroupBySym0 a6989586621679475553) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475565 Bool -> Type) (TyFun [a6989586621679475565] [a6989586621679475565] -> Type) -> *) (DropWhileSym0 a6989586621679475565) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileSym0 a6989586621679475565) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475566 Bool -> Type) (TyFun [a6989586621679475566] [a6989586621679475566] -> Type) -> *) (TakeWhileSym0 a6989586621679475566) # 

Methods

suppressUnusedWarnings :: Proxy (TakeWhileSym0 a6989586621679475566) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475574 Bool -> Type) (TyFun [a6989586621679475574] [a6989586621679475574] -> Type) -> *) (FilterSym0 a6989586621679475574) # 

Methods

suppressUnusedWarnings :: Proxy (FilterSym0 a6989586621679475574) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475573 Bool -> Type) (TyFun [a6989586621679475573] (Maybe a6989586621679475573) -> Type) -> *) (FindSym0 a6989586621679475573) # 

Methods

suppressUnusedWarnings :: Proxy (FindSym0 a6989586621679475573) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475567 (TyFun a6989586621679475567 Bool -> Type) -> Type) (TyFun [a6989586621679475567] (TyFun [a6989586621679475567] [a6989586621679475567] -> Type) -> Type) -> *) (IntersectBySym0 a6989586621679475567) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectBySym0 a6989586621679475567) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475577 (TyFun a6989586621679475577 Ordering -> Type) -> Type) (TyFun a6989586621679475577 (TyFun [a6989586621679475577] [a6989586621679475577] -> Type) -> Type) -> *) (InsertBySym0 a6989586621679475577) # 

Methods

suppressUnusedWarnings :: Proxy (InsertBySym0 a6989586621679475577) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475578 (TyFun a6989586621679475578 Ordering -> Type) -> Type) (TyFun [a6989586621679475578] [a6989586621679475578] -> Type) -> *) (SortBySym0 a6989586621679475578) # 

Methods

suppressUnusedWarnings :: Proxy (SortBySym0 a6989586621679475578) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475580 (TyFun a6989586621679475580 Bool -> Type) -> Type) (TyFun a6989586621679475580 (TyFun [a6989586621679475580] [a6989586621679475580] -> Type) -> Type) -> *) (DeleteBySym0 a6989586621679475580) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteBySym0 a6989586621679475580) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475579 (TyFun a6989586621679475579 Bool -> Type) -> Type) (TyFun [a6989586621679475579] (TyFun [a6989586621679475579] [a6989586621679475579] -> Type) -> Type) -> *) (DeleteFirstsBySym0 a6989586621679475579) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteFirstsBySym0 a6989586621679475579) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475539 (TyFun a6989586621679475539 Bool -> Type) -> Type) (TyFun [a6989586621679475539] (TyFun [a6989586621679475539] [a6989586621679475539] -> Type) -> Type) -> *) (UnionBySym0 a6989586621679475539) # 

Methods

suppressUnusedWarnings :: Proxy (UnionBySym0 a6989586621679475539) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475569 Bool -> Type) (TyFun [a6989586621679475569] [Nat] -> Type) -> *) (FindIndicesSym0 a6989586621679475569) # 

Methods

suppressUnusedWarnings :: Proxy (FindIndicesSym0 a6989586621679475569) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475570 Bool -> Type) (TyFun [a6989586621679475570] (Maybe Nat) -> Type) -> *) (FindIndexSym0 a6989586621679475570) # 

Methods

suppressUnusedWarnings :: Proxy (FindIndexSym0 a6989586621679475570) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475637 (TyFun a6989586621679475637 a6989586621679475637 -> Type) -> Type) (TyFun [a6989586621679475637] [a6989586621679475637] -> Type) -> *) (Scanr1Sym0 a6989586621679475637) # 

Methods

suppressUnusedWarnings :: Proxy (Scanr1Sym0 a6989586621679475637) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475640 (TyFun a6989586621679475640 a6989586621679475640 -> Type) -> Type) (TyFun [a6989586621679475640] [a6989586621679475640] -> Type) -> *) (Scanl1Sym0 a6989586621679475640) # 

Methods

suppressUnusedWarnings :: Proxy (Scanl1Sym0 a6989586621679475640) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475643 Bool -> Type) (TyFun [a6989586621679475643] Bool -> Type) -> *) (AllSym0 a6989586621679475643) # 

Methods

suppressUnusedWarnings :: Proxy (AllSym0 a6989586621679475643) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475647 (TyFun a6989586621679475647 a6989586621679475647 -> Type) -> Type) (TyFun [a6989586621679475647] a6989586621679475647 -> Type) -> *) (Foldr1Sym0 a6989586621679475647) # 

Methods

suppressUnusedWarnings :: Proxy (Foldr1Sym0 a6989586621679475647) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475649 (TyFun a6989586621679475649 a6989586621679475649 -> Type) -> Type) (TyFun [a6989586621679475649] a6989586621679475649 -> Type) -> *) (Foldl1Sym0 a6989586621679475649) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl1Sym0 a6989586621679475649) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475576 (TyFun a6989586621679475576 Ordering -> Type) -> Type) (TyFun [a6989586621679475576] a6989586621679475576 -> Type) -> *) (MaximumBySym0 a6989586621679475576) # 

Methods

suppressUnusedWarnings :: Proxy (MaximumBySym0 a6989586621679475576) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475575 (TyFun a6989586621679475575 Ordering -> Type) -> Type) (TyFun [a6989586621679475575] a6989586621679475575 -> Type) -> *) (MinimumBySym0 a6989586621679475575) # 

Methods

suppressUnusedWarnings :: Proxy (MinimumBySym0 a6989586621679475575) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475648 (TyFun a6989586621679475648 a6989586621679475648 -> Type) -> Type) (TyFun [a6989586621679475648] a6989586621679475648 -> Type) -> *) (Foldl1'Sym0 a6989586621679475648) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl1'Sym0 a6989586621679475648) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475564 Bool -> Type) (TyFun [a6989586621679475564] [a6989586621679475564] -> Type) -> *) (DropWhileEndSym0 a6989586621679475564) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileEndSym0 a6989586621679475564) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753479 (TyFun a6989586621679753479 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679753479) (NonEmpty a6989586621679753479) -> Type) -> *) (NubBySym0 a6989586621679753479) # 

Methods

suppressUnusedWarnings :: Proxy (NubBySym0 a6989586621679753479) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753500 (TyFun a6989586621679753500 Bool -> Type) -> Type) (TyFun [a6989586621679753500] [NonEmpty a6989586621679753500] -> Type) -> *) (GroupBySym0 a6989586621679753500) # 

Methods

suppressUnusedWarnings :: Proxy (GroupBySym0 a6989586621679753500) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753494 (TyFun a6989586621679753494 Bool -> Type) -> Type) (TyFun (NonEmpty a6989586621679753494) (NonEmpty (NonEmpty a6989586621679753494)) -> Type) -> *) (GroupBy1Sym0 a6989586621679753494) # 

Methods

suppressUnusedWarnings :: Proxy (GroupBy1Sym0 a6989586621679753494) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753507 Bool -> Type) (TyFun (NonEmpty a6989586621679753507) [a6989586621679753507] -> Type) -> *) (TakeWhileSym0 a6989586621679753507) # 

Methods

suppressUnusedWarnings :: Proxy (TakeWhileSym0 a6989586621679753507) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753506 Bool -> Type) (TyFun (NonEmpty a6989586621679753506) [a6989586621679753506] -> Type) -> *) (DropWhileSym0 a6989586621679753506) # 

Methods

suppressUnusedWarnings :: Proxy (DropWhileSym0 a6989586621679753506) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753505 Bool -> Type) (TyFun (NonEmpty a6989586621679753505) ([a6989586621679753505], [a6989586621679753505]) -> Type) -> *) (SpanSym0 a6989586621679753505) # 

Methods

suppressUnusedWarnings :: Proxy (SpanSym0 a6989586621679753505) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753504 Bool -> Type) (TyFun (NonEmpty a6989586621679753504) ([a6989586621679753504], [a6989586621679753504]) -> Type) -> *) (BreakSym0 a6989586621679753504) # 

Methods

suppressUnusedWarnings :: Proxy (BreakSym0 a6989586621679753504) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753503 Bool -> Type) (TyFun (NonEmpty a6989586621679753503) [a6989586621679753503] -> Type) -> *) (FilterSym0 a6989586621679753503) # 

Methods

suppressUnusedWarnings :: Proxy (FilterSym0 a6989586621679753503) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753502 Bool -> Type) (TyFun (NonEmpty a6989586621679753502) ([a6989586621679753502], [a6989586621679753502]) -> Type) -> *) (PartitionSym0 a6989586621679753502) # 

Methods

suppressUnusedWarnings :: Proxy (PartitionSym0 a6989586621679753502) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753477 (TyFun a6989586621679753477 Ordering -> Type) -> Type) (TyFun (NonEmpty a6989586621679753477) (NonEmpty a6989586621679753477) -> Type) -> *) (SortBySym0 a6989586621679753477) # 

Methods

suppressUnusedWarnings :: Proxy (SortBySym0 a6989586621679753477) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753514 (TyFun a6989586621679753514 a6989586621679753514 -> Type) -> Type) (TyFun (NonEmpty a6989586621679753514) (NonEmpty a6989586621679753514) -> Type) -> *) (Scanl1Sym0 a6989586621679753514) # 

Methods

suppressUnusedWarnings :: Proxy (Scanl1Sym0 a6989586621679753514) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753513 (TyFun a6989586621679753513 a6989586621679753513 -> Type) -> Type) (TyFun (NonEmpty a6989586621679753513) (NonEmpty a6989586621679753513) -> Type) -> *) (Scanr1Sym0 a6989586621679753513) # 

Methods

suppressUnusedWarnings :: Proxy (Scanr1Sym0 a6989586621679753513) t -> () #

SuppressUnusedWarnings (TyFun [[a6989586621679475646]] [a6989586621679475646] -> *) (ConcatSym0 a6989586621679475646) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatSym0 a6989586621679475646) t -> () #

SuppressUnusedWarnings (TyFun [[a6989586621679475544]] [[a6989586621679475544]] -> *) (TransposeSym0 a6989586621679475544) # 

Methods

suppressUnusedWarnings :: Proxy (TransposeSym0 a6989586621679475544) t -> () #

SuppressUnusedWarnings (TyFun [Maybe a6989586621679444544] [a6989586621679444544] -> *) (CatMaybesSym0 a6989586621679444544) # 

Methods

suppressUnusedWarnings :: Proxy (CatMaybesSym0 a6989586621679444544) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679292514] (TyFun [a6989586621679292514] [a6989586621679292514] -> Type) -> *) ((:++$) a6989586621679292514) # 

Methods

suppressUnusedWarnings :: Proxy ((:++$) a6989586621679292514) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679444545] (Maybe a6989586621679444545) -> *) (ListToMaybeSym0 a6989586621679444545) # 

Methods

suppressUnusedWarnings :: Proxy (ListToMaybeSym0 a6989586621679444545) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475543] (TyFun Nat a6989586621679475543 -> Type) -> *) ((:!!$) a6989586621679475543) # 

Methods

suppressUnusedWarnings :: Proxy ((:!!$) a6989586621679475543) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475546] Nat -> *) (LengthSym0 a6989586621679475546) # 

Methods

suppressUnusedWarnings :: Proxy (LengthSym0 a6989586621679475546) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475547] a6989586621679475547 -> *) (ProductSym0 a6989586621679475547) # 

Methods

suppressUnusedWarnings :: Proxy (ProductSym0 a6989586621679475547) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475548] a6989586621679475548 -> *) (SumSym0 a6989586621679475548) # 

Methods

suppressUnusedWarnings :: Proxy (SumSym0 a6989586621679475548) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475558] [[a6989586621679475558]] -> *) (GroupSym0 a6989586621679475558) # 

Methods

suppressUnusedWarnings :: Proxy (GroupSym0 a6989586621679475558) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475568] (TyFun [a6989586621679475568] [a6989586621679475568] -> Type) -> *) (IntersectSym0 a6989586621679475568) # 

Methods

suppressUnusedWarnings :: Proxy (IntersectSym0 a6989586621679475568) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475554] [a6989586621679475554] -> *) (SortSym0 a6989586621679475554) # 

Methods

suppressUnusedWarnings :: Proxy (SortSym0 a6989586621679475554) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475538] (TyFun [a6989586621679475538] [a6989586621679475538] -> Type) -> *) (UnionSym0 a6989586621679475538) # 

Methods

suppressUnusedWarnings :: Proxy (UnionSym0 a6989586621679475538) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475581] (TyFun [a6989586621679475581] [a6989586621679475581] -> Type) -> *) ((:\\$) a6989586621679475581) # 

Methods

suppressUnusedWarnings :: Proxy ((:\\$) a6989586621679475581) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475542] [a6989586621679475542] -> *) (NubSym0 a6989586621679475542) # 

Methods

suppressUnusedWarnings :: Proxy (NubSym0 a6989586621679475542) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475626] (TyFun [a6989586621679475626] Bool -> Type) -> *) (IsPrefixOfSym0 a6989586621679475626) # 

Methods

suppressUnusedWarnings :: Proxy (IsPrefixOfSym0 a6989586621679475626) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475627] [[a6989586621679475627]] -> *) (TailsSym0 a6989586621679475627) # 

Methods

suppressUnusedWarnings :: Proxy (TailsSym0 a6989586621679475627) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475624] (TyFun [a6989586621679475624] Bool -> Type) -> *) (IsInfixOfSym0 a6989586621679475624) # 

Methods

suppressUnusedWarnings :: Proxy (IsInfixOfSym0 a6989586621679475624) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475628] [[a6989586621679475628]] -> *) (InitsSym0 a6989586621679475628) # 

Methods

suppressUnusedWarnings :: Proxy (InitsSym0 a6989586621679475628) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475557] a6989586621679475557 -> *) (MaximumSym0 a6989586621679475557) # 

Methods

suppressUnusedWarnings :: Proxy (MaximumSym0 a6989586621679475557) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475556] a6989586621679475556 -> *) (MinimumSym0 a6989586621679475556) # 

Methods

suppressUnusedWarnings :: Proxy (MinimumSym0 a6989586621679475556) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475652] [[a6989586621679475652]] -> *) (PermutationsSym0 a6989586621679475652) # 

Methods

suppressUnusedWarnings :: Proxy (PermutationsSym0 a6989586621679475652) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475655] [[a6989586621679475655]] -> *) (SubsequencesSym0 a6989586621679475655) # 

Methods

suppressUnusedWarnings :: Proxy (SubsequencesSym0 a6989586621679475655) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475656] (TyFun [[a6989586621679475656]] [a6989586621679475656] -> Type) -> *) (IntercalateSym0 a6989586621679475656) # 

Methods

suppressUnusedWarnings :: Proxy (IntercalateSym0 a6989586621679475656) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475658] [a6989586621679475658] -> *) (ReverseSym0 a6989586621679475658) # 

Methods

suppressUnusedWarnings :: Proxy (ReverseSym0 a6989586621679475658) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475625] (TyFun [a6989586621679475625] Bool -> Type) -> *) (IsSuffixOfSym0 a6989586621679475625) # 

Methods

suppressUnusedWarnings :: Proxy (IsSuffixOfSym0 a6989586621679475625) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475659] Bool -> *) (NullSym0 a6989586621679475659) # 

Methods

suppressUnusedWarnings :: Proxy (NullSym0 a6989586621679475659) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475660] [a6989586621679475660] -> *) (InitSym0 a6989586621679475660) # 

Methods

suppressUnusedWarnings :: Proxy (InitSym0 a6989586621679475660) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475661] [a6989586621679475661] -> *) (TailSym0 a6989586621679475661) # 

Methods

suppressUnusedWarnings :: Proxy (TailSym0 a6989586621679475661) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475662] a6989586621679475662 -> *) (LastSym0 a6989586621679475662) # 

Methods

suppressUnusedWarnings :: Proxy (LastSym0 a6989586621679475662) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475663] a6989586621679475663 -> *) (HeadSym0 a6989586621679475663) # 

Methods

suppressUnusedWarnings :: Proxy (HeadSym0 a6989586621679475663) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679753489] (TyFun (NonEmpty a6989586621679753489) Bool -> Type) -> *) (IsPrefixOfSym0 a6989586621679753489) # 

Methods

suppressUnusedWarnings :: Proxy (IsPrefixOfSym0 a6989586621679753489) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679753501] [NonEmpty a6989586621679753501] -> *) (GroupSym0 a6989586621679753501) # 

Methods

suppressUnusedWarnings :: Proxy (GroupSym0 a6989586621679753501) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679753527] (NonEmpty a6989586621679753527) -> *) (FromListSym0 a6989586621679753527) # 

Methods

suppressUnusedWarnings :: Proxy (FromListSym0 a6989586621679753527) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679753521] (NonEmpty [a6989586621679753521]) -> *) (InitsSym0 a6989586621679753521) # 

Methods

suppressUnusedWarnings :: Proxy (InitsSym0 a6989586621679753521) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679753520] (NonEmpty [a6989586621679753520]) -> *) (TailsSym0 a6989586621679753520) # 

Methods

suppressUnusedWarnings :: Proxy (TailsSym0 a6989586621679753520) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679753538] (Maybe (NonEmpty a6989586621679753538)) -> *) (NonEmpty_Sym0 a6989586621679753538) # 

Methods

suppressUnusedWarnings :: Proxy (NonEmpty_Sym0 a6989586621679753538) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679904319] (TyFun [a6989586621679904319] (Maybe [a6989586621679904319]) -> Type) -> *) (StripPrefixSym0 a6989586621679904319) # 

Methods

suppressUnusedWarnings :: Proxy (StripPrefixSym0 a6989586621679904319) t -> () #

SuppressUnusedWarnings (TyFun (Maybe a6989586621679444546) [a6989586621679444546] -> *) (MaybeToListSym0 a6989586621679444546) # 

Methods

suppressUnusedWarnings :: Proxy (MaybeToListSym0 a6989586621679444546) t -> () #

SuppressUnusedWarnings (TyFun (Maybe a6989586621679444548) a6989586621679444548 -> *) (FromJustSym0 a6989586621679444548) # 

Methods

suppressUnusedWarnings :: Proxy (FromJustSym0 a6989586621679444548) t -> () #

SuppressUnusedWarnings (TyFun (Maybe a6989586621679444549) Bool -> *) (IsNothingSym0 a6989586621679444549) # 

Methods

suppressUnusedWarnings :: Proxy (IsNothingSym0 a6989586621679444549) t -> () #

SuppressUnusedWarnings (TyFun (Maybe a6989586621679444550) Bool -> *) (IsJustSym0 a6989586621679444550) # 

Methods

suppressUnusedWarnings :: Proxy (IsJustSym0 a6989586621679444550) t -> () #

SuppressUnusedWarnings (TyFun Nat (TyFun [a6989586621679475560] [a6989586621679475560] -> Type) -> *) (DropSym0 a6989586621679475560) # 

Methods

suppressUnusedWarnings :: Proxy (DropSym0 a6989586621679475560) t -> () #

SuppressUnusedWarnings (TyFun Nat (TyFun [a6989586621679475561] [a6989586621679475561] -> Type) -> *) (TakeSym0 a6989586621679475561) # 

Methods

suppressUnusedWarnings :: Proxy (TakeSym0 a6989586621679475561) t -> () #

SuppressUnusedWarnings (TyFun Nat (TyFun [a6989586621679475559] ([a6989586621679475559], [a6989586621679475559]) -> Type) -> *) (SplitAtSym0 a6989586621679475559) # 

Methods

suppressUnusedWarnings :: Proxy (SplitAtSym0 a6989586621679475559) t -> () #

SuppressUnusedWarnings (TyFun Nat (TyFun a6989586621679475545 [a6989586621679475545] -> Type) -> *) (ReplicateSym0 a6989586621679475545) # 

Methods

suppressUnusedWarnings :: Proxy (ReplicateSym0 a6989586621679475545) t -> () #

SuppressUnusedWarnings (TyFun Nat (TyFun (NonEmpty a6989586621679753510) [a6989586621679753510] -> Type) -> *) (TakeSym0 a6989586621679753510) # 

Methods

suppressUnusedWarnings :: Proxy (TakeSym0 a6989586621679753510) t -> () #

SuppressUnusedWarnings (TyFun Nat (TyFun (NonEmpty a6989586621679753509) [a6989586621679753509] -> Type) -> *) (DropSym0 a6989586621679753509) # 

Methods

suppressUnusedWarnings :: Proxy (DropSym0 a6989586621679753509) t -> () #

SuppressUnusedWarnings (TyFun Nat (TyFun (NonEmpty a6989586621679753508) ([a6989586621679753508], [a6989586621679753508]) -> Type) -> *) (SplitAtSym0 a6989586621679753508) # 

Methods

suppressUnusedWarnings :: Proxy (SplitAtSym0 a6989586621679753508) t -> () #

SuppressUnusedWarnings (TyFun Nat a6989586621679427063 -> *) (FromIntegerSym0 a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy (FromIntegerSym0 a6989586621679427063) t -> () #

SuppressUnusedWarnings (TyFun Nat a6989586621679834780 -> *) (ToEnumSym0 a6989586621679834780) # 

Methods

suppressUnusedWarnings :: Proxy (ToEnumSym0 a6989586621679834780) t -> () #

SuppressUnusedWarnings (TyFun a3530822107858468865 (Maybe a3530822107858468865) -> *) (JustSym0 a3530822107858468865) # 

Methods

suppressUnusedWarnings :: Proxy (JustSym0 a3530822107858468865) t -> () #

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun [a3530822107858468865] [a3530822107858468865] -> Type) -> *) ((:$) a3530822107858468865) # 

Methods

suppressUnusedWarnings :: Proxy ((:$) a3530822107858468865) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679075955 (TyFun [a6989586621679075955] (NonEmpty a6989586621679075955) -> Type) -> *) ((:|$) a6989586621679075955) # 

Methods

suppressUnusedWarnings :: Proxy ((:|$) a6989586621679075955) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679288557 (TyFun a6989586621679288557 (TyFun Bool a6989586621679288557 -> Type) -> Type) -> *) (Bool_Sym0 a6989586621679288557) # 

Methods

suppressUnusedWarnings :: Proxy (Bool_Sym0 a6989586621679288557) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679292504 (TyFun a6989586621679292504 a6989586621679292504 -> Type) -> *) (AsTypeOfSym0 a6989586621679292504) # 

Methods

suppressUnusedWarnings :: Proxy (AsTypeOfSym0 a6989586621679292504) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679292513 a6989586621679292513 -> *) (IdSym0 a6989586621679292513) # 

Methods

suppressUnusedWarnings :: Proxy (IdSym0 a6989586621679292513) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679309568 (TyFun a6989586621679309568 Bool -> Type) -> *) ((:==$) a6989586621679309568) # 

Methods

suppressUnusedWarnings :: Proxy ((:==$) a6989586621679309568) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679309568 (TyFun a6989586621679309568 Bool -> Type) -> *) ((:/=$) a6989586621679309568) # 

Methods

suppressUnusedWarnings :: Proxy ((:/=$) a6989586621679309568) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679324852 (TyFun a6989586621679324852 Bool -> Type) -> *) ((:<=$) a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy ((:<=$) a6989586621679324852) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679324852 (TyFun a6989586621679324852 Ordering -> Type) -> *) (CompareSym0 a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy (CompareSym0 a6989586621679324852) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679324852 (TyFun a6989586621679324852 a6989586621679324852 -> Type) -> *) (MinSym0 a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy (MinSym0 a6989586621679324852) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679324852 (TyFun a6989586621679324852 a6989586621679324852 -> Type) -> *) (MaxSym0 a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy (MaxSym0 a6989586621679324852) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679324852 (TyFun a6989586621679324852 Bool -> Type) -> *) ((:>=$) a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy ((:>=$) a6989586621679324852) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679324852 (TyFun a6989586621679324852 Bool -> Type) -> *) ((:>$) a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy ((:>$) a6989586621679324852) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679324852 (TyFun a6989586621679324852 Bool -> Type) -> *) ((:<$) a6989586621679324852) # 

Methods

suppressUnusedWarnings :: Proxy ((:<$) a6989586621679324852) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679427063 a6989586621679427063 -> *) (NegateSym0 a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy (NegateSym0 a6989586621679427063) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679427063 (TyFun a6989586621679427063 a6989586621679427063 -> Type) -> *) ((:-$) a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy ((:-$) a6989586621679427063) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679427063 (TyFun a6989586621679427063 a6989586621679427063 -> Type) -> *) ((:+$) a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy ((:+$) a6989586621679427063) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679427063 a6989586621679427063 -> *) (SignumSym0 a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy (SignumSym0 a6989586621679427063) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679427063 a6989586621679427063 -> *) (AbsSym0 a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy (AbsSym0 a6989586621679427063) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679427063 (TyFun a6989586621679427063 a6989586621679427063 -> Type) -> *) ((:*$) a6989586621679427063) # 

Methods

suppressUnusedWarnings :: Proxy ((:*$) a6989586621679427063) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679429354 (TyFun a6989586621679429354 a6989586621679429354 -> Type) -> *) (SubtractSym0 a6989586621679429354) # 

Methods

suppressUnusedWarnings :: Proxy (SubtractSym0 a6989586621679429354) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679444547 (TyFun (Maybe a6989586621679444547) a6989586621679444547 -> Type) -> *) (FromMaybeSym0 a6989586621679444547) # 

Methods

suppressUnusedWarnings :: Proxy (FromMaybeSym0 a6989586621679444547) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679475555 (TyFun [a6989586621679475555] [a6989586621679475555] -> Type) -> *) (InsertSym0 a6989586621679475555) # 

Methods

suppressUnusedWarnings :: Proxy (InsertSym0 a6989586621679475555) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679475582 (TyFun [a6989586621679475582] [a6989586621679475582] -> Type) -> *) (DeleteSym0 a6989586621679475582) # 

Methods

suppressUnusedWarnings :: Proxy (DeleteSym0 a6989586621679475582) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679475571 (TyFun [a6989586621679475571] [Nat] -> Type) -> *) (ElemIndicesSym0 a6989586621679475571) # 

Methods

suppressUnusedWarnings :: Proxy (ElemIndicesSym0 a6989586621679475571) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679475572 (TyFun [a6989586621679475572] (Maybe Nat) -> Type) -> *) (ElemIndexSym0 a6989586621679475572) # 

Methods

suppressUnusedWarnings :: Proxy (ElemIndexSym0 a6989586621679475572) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679475622 (TyFun [a6989586621679475622] Bool -> Type) -> *) (NotElemSym0 a6989586621679475622) # 

Methods

suppressUnusedWarnings :: Proxy (NotElemSym0 a6989586621679475622) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679475623 (TyFun [a6989586621679475623] Bool -> Type) -> *) (ElemSym0 a6989586621679475623) # 

Methods

suppressUnusedWarnings :: Proxy (ElemSym0 a6989586621679475623) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679475657 (TyFun [a6989586621679475657] [a6989586621679475657] -> Type) -> *) (IntersperseSym0 a6989586621679475657) # 

Methods

suppressUnusedWarnings :: Proxy (IntersperseSym0 a6989586621679475657) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679753512 (TyFun (NonEmpty a6989586621679753512) (NonEmpty a6989586621679753512) -> Type) -> *) (IntersperseSym0 a6989586621679753512) # 

Methods

suppressUnusedWarnings :: Proxy (IntersperseSym0 a6989586621679753512) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679753519 (TyFun [a6989586621679753519] (NonEmpty a6989586621679753519) -> Type) -> *) (InsertSym0 a6989586621679753519) # 

Methods

suppressUnusedWarnings :: Proxy (InsertSym0 a6989586621679753519) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679753530 (TyFun (NonEmpty a6989586621679753530) (NonEmpty a6989586621679753530) -> Type) -> *) ((:<|$) a6989586621679753530) # 

Methods

suppressUnusedWarnings :: Proxy ((:<|$) a6989586621679753530) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679753529 (TyFun (NonEmpty a6989586621679753529) (NonEmpty a6989586621679753529) -> Type) -> *) (ConsSym0 a6989586621679753529) # 

Methods

suppressUnusedWarnings :: Proxy (ConsSym0 a6989586621679753529) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679834780 (TyFun a6989586621679834780 (TyFun a6989586621679834780 [a6989586621679834780] -> Type) -> Type) -> *) (EnumFromThenToSym0 a6989586621679834780) # 

Methods

suppressUnusedWarnings :: Proxy (EnumFromThenToSym0 a6989586621679834780) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679834780 (TyFun a6989586621679834780 [a6989586621679834780] -> Type) -> *) (EnumFromToSym0 a6989586621679834780) # 

Methods

suppressUnusedWarnings :: Proxy (EnumFromToSym0 a6989586621679834780) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679834780 Nat -> *) (FromEnumSym0 a6989586621679834780) # 

Methods

suppressUnusedWarnings :: Proxy (FromEnumSym0 a6989586621679834780) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679834780 a6989586621679834780 -> *) (PredSym0 a6989586621679834780) # 

Methods

suppressUnusedWarnings :: Proxy (PredSym0 a6989586621679834780) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679834780 a6989586621679834780 -> *) (SuccSym0 a6989586621679834780) # 

Methods

suppressUnusedWarnings :: Proxy (SuccSym0 a6989586621679834780) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753480) (NonEmpty a6989586621679753480) -> *) (NubSym0 a6989586621679753480) # 

Methods

suppressUnusedWarnings :: Proxy (NubSym0 a6989586621679753480) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753488) (TyFun Nat a6989586621679753488 -> Type) -> *) ((:!!$) a6989586621679753488) # 

Methods

suppressUnusedWarnings :: Proxy ((:!!$) a6989586621679753488) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753495) (NonEmpty (NonEmpty a6989586621679753495)) -> *) (Group1Sym0 a6989586621679753495) # 

Methods

suppressUnusedWarnings :: Proxy (Group1Sym0 a6989586621679753495) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753526) [a6989586621679753526] -> *) (ToListSym0 a6989586621679753526) # 

Methods

suppressUnusedWarnings :: Proxy (ToListSym0 a6989586621679753526) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753511) (NonEmpty a6989586621679753511) -> *) (ReverseSym0 a6989586621679753511) # 

Methods

suppressUnusedWarnings :: Proxy (ReverseSym0 a6989586621679753511) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753528) (NonEmpty a6989586621679753528) -> *) (SortSym0 a6989586621679753528) # 

Methods

suppressUnusedWarnings :: Proxy (SortSym0 a6989586621679753528) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753531) [a6989586621679753531] -> *) (InitSym0 a6989586621679753531) # 

Methods

suppressUnusedWarnings :: Proxy (InitSym0 a6989586621679753531) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753532) a6989586621679753532 -> *) (LastSym0 a6989586621679753532) # 

Methods

suppressUnusedWarnings :: Proxy (LastSym0 a6989586621679753532) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753533) [a6989586621679753533] -> *) (TailSym0 a6989586621679753533) # 

Methods

suppressUnusedWarnings :: Proxy (TailSym0 a6989586621679753533) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753534) a6989586621679753534 -> *) (HeadSym0 a6989586621679753534) # 

Methods

suppressUnusedWarnings :: Proxy (HeadSym0 a6989586621679753534) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753537) (a6989586621679753537, Maybe (NonEmpty a6989586621679753537)) -> *) (UnconsSym0 a6989586621679753537) # 

Methods

suppressUnusedWarnings :: Proxy (UnconsSym0 a6989586621679753537) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753541) Nat -> *) (LengthSym0 a6989586621679753541) # 

Methods

suppressUnusedWarnings :: Proxy (LengthSym0 a6989586621679753541) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty (NonEmpty a6989586621679753478)) (NonEmpty (NonEmpty a6989586621679753478)) -> *) (TransposeSym0 a6989586621679753478) # 

Methods

suppressUnusedWarnings :: Proxy (TransposeSym0 a6989586621679753478) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) -> b6989586621679252328 -> TyFun [a6989586621679252327] b6989586621679252328 -> *) (FoldlSym2 a6989586621679252327 b6989586621679252328) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym2 a6989586621679252327 b6989586621679252328) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) -> TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> *) (FoldlSym1 a6989586621679252327 b6989586621679252328) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym1 a6989586621679252327 b6989586621679252328) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679292515 b6989586621679292516 -> Type) -> TyFun [a6989586621679292515] [b6989586621679292516] -> *) (MapSym1 a6989586621679292515 b6989586621679292516) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym1 a6989586621679292515 b6989586621679292516) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) -> b6989586621679292518 -> TyFun [a6989586621679292517] b6989586621679292518 -> *) (FoldrSym2 a6989586621679292517 b6989586621679292518) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym2 a6989586621679292517 b6989586621679292518) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) -> TyFun b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type) -> *) (FoldrSym1 a6989586621679292517 b6989586621679292518) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym1 a6989586621679292517 b6989586621679292518) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679324842 a6989586621679324841 -> Type) -> b6989586621679324842 -> TyFun b6989586621679324842 Ordering -> *) (ComparingSym2 a6989586621679324841 b6989586621679324842) # 

Methods

suppressUnusedWarnings :: Proxy (ComparingSym2 a6989586621679324841 b6989586621679324842) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679324842 a6989586621679324841 -> Type) -> TyFun b6989586621679324842 (TyFun b6989586621679324842 Ordering -> Type) -> *) (ComparingSym1 a6989586621679324841 b6989586621679324842) # 

Methods

suppressUnusedWarnings :: Proxy (ComparingSym1 a6989586621679324841 b6989586621679324842) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679444542 (Maybe b6989586621679444543) -> Type) -> TyFun [a6989586621679444542] [b6989586621679444543] -> *) (MapMaybeSym1 a6989586621679444542 b6989586621679444543) # 

Methods

suppressUnusedWarnings :: Proxy (MapMaybeSym1 a6989586621679444542 b6989586621679444543) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) -> TyFun b6989586621679475629 [a6989586621679475630] -> *) (UnfoldrSym1 b6989586621679475629 a6989586621679475630) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldrSym1 b6989586621679475629 a6989586621679475630) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) -> TyFun b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type) -> *) (ScanrSym1 a6989586621679475638 b6989586621679475639) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym1 a6989586621679475638 b6989586621679475639) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) -> b6989586621679475639 -> TyFun [a6989586621679475638] [b6989586621679475639] -> *) (ScanrSym2 a6989586621679475638 b6989586621679475639) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym2 a6989586621679475638 b6989586621679475639) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) -> TyFun b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type) -> *) (ScanlSym1 a6989586621679475642 b6989586621679475641) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym1 a6989586621679475642 b6989586621679475641) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) -> b6989586621679475641 -> TyFun [a6989586621679475642] [b6989586621679475641] -> *) (ScanlSym2 a6989586621679475642 b6989586621679475641) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym2 a6989586621679475642 b6989586621679475641) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475644 [b6989586621679475645] -> Type) -> TyFun [a6989586621679475644] [b6989586621679475645] -> *) (ConcatMapSym1 a6989586621679475644 b6989586621679475645) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatMapSym1 a6989586621679475644 b6989586621679475645) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) -> b6989586621679475651 -> TyFun [a6989586621679475650] b6989586621679475651 -> *) (Foldl'Sym2 a6989586621679475650 b6989586621679475651) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl'Sym2 a6989586621679475650 b6989586621679475651) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) -> TyFun b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type) -> *) (Foldl'Sym1 a6989586621679475650 b6989586621679475651) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl'Sym1 a6989586621679475650 b6989586621679475651) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753499 b6989586621679753498 -> Type) -> TyFun [a6989586621679753499] [NonEmpty a6989586621679753499] -> *) (GroupWithSym1 b6989586621679753498 a6989586621679753499) # 

Methods

suppressUnusedWarnings :: Proxy (GroupWithSym1 b6989586621679753498 a6989586621679753499) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753497 b6989586621679753496 -> Type) -> TyFun [a6989586621679753497] [NonEmpty a6989586621679753497] -> *) (GroupAllWithSym1 b6989586621679753496 a6989586621679753497) # 

Methods

suppressUnusedWarnings :: Proxy (GroupAllWithSym1 b6989586621679753496 a6989586621679753497) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753493 b6989586621679753492 -> Type) -> TyFun (NonEmpty a6989586621679753493) (NonEmpty (NonEmpty a6989586621679753493)) -> *) (GroupWith1Sym1 b6989586621679753492 a6989586621679753493) # 

Methods

suppressUnusedWarnings :: Proxy (GroupWith1Sym1 b6989586621679753492 a6989586621679753493) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753522 b6989586621679753523 -> Type) -> TyFun (NonEmpty a6989586621679753522) (NonEmpty b6989586621679753523) -> *) (MapSym1 a6989586621679753522 b6989586621679753523) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym1 a6989586621679753522 b6989586621679753523) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753476 o6989586621679753475 -> Type) -> TyFun (NonEmpty a6989586621679753476) (NonEmpty a6989586621679753476) -> *) (SortWithSym1 o6989586621679753475 a6989586621679753476) # 

Methods

suppressUnusedWarnings :: Proxy (SortWithSym1 o6989586621679753475 a6989586621679753476) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753491 b6989586621679753490 -> Type) -> TyFun (NonEmpty a6989586621679753491) (NonEmpty (NonEmpty a6989586621679753491)) -> *) (GroupAllWith1Sym1 b6989586621679753490 a6989586621679753491) # 

Methods

suppressUnusedWarnings :: Proxy (GroupAllWith1Sym1 b6989586621679753490 a6989586621679753491) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679753517 (TyFun a6989586621679753518 b6989586621679753517 -> Type) -> Type) -> b6989586621679753517 -> TyFun [a6989586621679753518] (NonEmpty b6989586621679753517) -> *) (ScanlSym2 a6989586621679753518 b6989586621679753517) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym2 a6989586621679753518 b6989586621679753517) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679753517 (TyFun a6989586621679753518 b6989586621679753517 -> Type) -> Type) -> TyFun b6989586621679753517 (TyFun [a6989586621679753518] (NonEmpty b6989586621679753517) -> Type) -> *) (ScanlSym1 a6989586621679753518 b6989586621679753517) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym1 a6989586621679753518 b6989586621679753517) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753515 (TyFun b6989586621679753516 b6989586621679753516 -> Type) -> Type) -> b6989586621679753516 -> TyFun [a6989586621679753515] (NonEmpty b6989586621679753516) -> *) (ScanrSym2 a6989586621679753515 b6989586621679753516) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym2 a6989586621679753515 b6989586621679753516) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753515 (TyFun b6989586621679753516 b6989586621679753516 -> Type) -> Type) -> TyFun b6989586621679753516 (TyFun [a6989586621679753515] (NonEmpty b6989586621679753516) -> Type) -> *) (ScanrSym1 a6989586621679753515 b6989586621679753516) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym1 a6989586621679753515 b6989586621679753516) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753535 (b6989586621679753536, Maybe a6989586621679753535) -> Type) -> TyFun a6989586621679753535 (NonEmpty b6989586621679753536) -> *) (UnfoldrSym1 a6989586621679753535 b6989586621679753536) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldrSym1 a6989586621679753535 b6989586621679753536) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753539 (b6989586621679753540, Maybe a6989586621679753539) -> Type) -> TyFun a6989586621679753539 (NonEmpty b6989586621679753540) -> *) (UnfoldSym1 a6989586621679753539 b6989586621679753540) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldSym1 a6989586621679753539 b6989586621679753540) t -> () #

SuppressUnusedWarnings ([a6989586621679475620] -> TyFun [b6989586621679475621] [(a6989586621679475620, b6989586621679475621)] -> *) (ZipSym1 a6989586621679475620 b6989586621679475621) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym1 a6989586621679475620 b6989586621679475621) t -> () #

SuppressUnusedWarnings ([a6989586621679904264] -> TyFun i6989586621679904263 a6989586621679904264 -> *) (GenericIndexSym1 i6989586621679904263 a6989586621679904264) # 

Methods

suppressUnusedWarnings :: Proxy (GenericIndexSym1 i6989586621679904263 a6989586621679904264) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> *) (Tuple2Sym1 a3530822107858468865 b3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple2Sym1 a3530822107858468865 b3530822107858468866) t -> () #

SuppressUnusedWarnings (a6989586621679292502 -> TyFun b6989586621679292503 b6989586621679292503 -> *) (SeqSym1 a6989586621679292502 b6989586621679292503) # 

Methods

suppressUnusedWarnings :: Proxy (SeqSym1 a6989586621679292502 b6989586621679292503) t -> () #

SuppressUnusedWarnings (a6989586621679292511 -> TyFun b6989586621679292512 a6989586621679292511 -> *) (ConstSym1 b6989586621679292512 a6989586621679292511) # 

Methods

suppressUnusedWarnings :: Proxy (ConstSym1 b6989586621679292512 a6989586621679292511) t -> () #

SuppressUnusedWarnings (a6989586621679304576 -> TyFun (TyFun a6989586621679304576 b6989586621679304577 -> Type) b6989586621679304577 -> *) ((:&$$) a6989586621679304576 b6989586621679304577) # 

Methods

suppressUnusedWarnings :: Proxy (a6989586621679304576 :&$$ b6989586621679304577) t -> () #

SuppressUnusedWarnings (b6989586621679443437 -> (TyFun a6989586621679443438 b6989586621679443437 -> Type) -> TyFun (Maybe a6989586621679443438) b6989586621679443437 -> *) (Maybe_Sym2 a6989586621679443438 b6989586621679443437) # 

Methods

suppressUnusedWarnings :: Proxy (Maybe_Sym2 a6989586621679443438 b6989586621679443437) t -> () #

SuppressUnusedWarnings (b6989586621679443437 -> TyFun (TyFun a6989586621679443438 b6989586621679443437 -> Type) (TyFun (Maybe a6989586621679443438) b6989586621679443437 -> Type) -> *) (Maybe_Sym1 a6989586621679443438 b6989586621679443437) # 

Methods

suppressUnusedWarnings :: Proxy (Maybe_Sym1 a6989586621679443438 b6989586621679443437) t -> () #

SuppressUnusedWarnings (a6989586621679475551 -> TyFun [(a6989586621679475551, b6989586621679475552)] (Maybe b6989586621679475552) -> *) (LookupSym1 a6989586621679475551 b6989586621679475552) # 

Methods

suppressUnusedWarnings :: Proxy (LookupSym1 a6989586621679475551 b6989586621679475552) t -> () #

SuppressUnusedWarnings (i6989586621679904261 -> TyFun a6989586621679904262 [a6989586621679904262] -> *) (GenericReplicateSym1 i6989586621679904261 a6989586621679904262) # 

Methods

suppressUnusedWarnings :: Proxy (GenericReplicateSym1 i6989586621679904261 a6989586621679904262) t -> () #

SuppressUnusedWarnings (i6989586621679904265 -> TyFun [a6989586621679904266] ([a6989586621679904266], [a6989586621679904266]) -> *) (GenericSplitAtSym1 i6989586621679904265 a6989586621679904266) # 

Methods

suppressUnusedWarnings :: Proxy (GenericSplitAtSym1 i6989586621679904265 a6989586621679904266) t -> () #

SuppressUnusedWarnings (i6989586621679904267 -> TyFun [a6989586621679904268] [a6989586621679904268] -> *) (GenericDropSym1 i6989586621679904267 a6989586621679904268) # 

Methods

suppressUnusedWarnings :: Proxy (GenericDropSym1 i6989586621679904267 a6989586621679904268) t -> () #

SuppressUnusedWarnings (i6989586621679904269 -> TyFun [a6989586621679904270] [a6989586621679904270] -> *) (GenericTakeSym1 i6989586621679904269 a6989586621679904270) # 

Methods

suppressUnusedWarnings :: Proxy (GenericTakeSym1 i6989586621679904269 a6989586621679904270) t -> () #

SuppressUnusedWarnings (NonEmpty a6989586621679753486 -> TyFun (NonEmpty b6989586621679753487) (NonEmpty (a6989586621679753486, b6989586621679753487)) -> *) (ZipSym1 a6989586621679753486 b6989586621679753487) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym1 a6989586621679753486 b6989586621679753487) t -> () #

SuppressUnusedWarnings (TyFun (TyFun b6989586621679252328 (TyFun a6989586621679252327 b6989586621679252328 -> Type) -> Type) (TyFun b6989586621679252328 (TyFun [a6989586621679252327] b6989586621679252328 -> Type) -> Type) -> *) (FoldlSym0 a6989586621679252327 b6989586621679252328) # 

Methods

suppressUnusedWarnings :: Proxy (FoldlSym0 a6989586621679252327 b6989586621679252328) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679292515 b6989586621679292516 -> Type) (TyFun [a6989586621679292515] [b6989586621679292516] -> Type) -> *) (MapSym0 a6989586621679292515 b6989586621679292516) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym0 a6989586621679292515 b6989586621679292516) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679292517 (TyFun b6989586621679292518 b6989586621679292518 -> Type) -> Type) (TyFun b6989586621679292518 (TyFun [a6989586621679292517] b6989586621679292518 -> Type) -> Type) -> *) (FoldrSym0 a6989586621679292517 b6989586621679292518) # 

Methods

suppressUnusedWarnings :: Proxy (FoldrSym0 a6989586621679292517 b6989586621679292518) t -> () #

SuppressUnusedWarnings (TyFun (TyFun b6989586621679324842 a6989586621679324841 -> Type) (TyFun b6989586621679324842 (TyFun b6989586621679324842 Ordering -> Type) -> Type) -> *) (ComparingSym0 a6989586621679324841 b6989586621679324842) # 

Methods

suppressUnusedWarnings :: Proxy (ComparingSym0 a6989586621679324841 b6989586621679324842) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679444542 (Maybe b6989586621679444543) -> Type) (TyFun [a6989586621679444542] [b6989586621679444543] -> Type) -> *) (MapMaybeSym0 a6989586621679444542 b6989586621679444543) # 

Methods

suppressUnusedWarnings :: Proxy (MapMaybeSym0 a6989586621679444542 b6989586621679444543) t -> () #

SuppressUnusedWarnings (TyFun (TyFun b6989586621679475629 (Maybe (a6989586621679475630, b6989586621679475629)) -> Type) (TyFun b6989586621679475629 [a6989586621679475630] -> Type) -> *) (UnfoldrSym0 b6989586621679475629 a6989586621679475630) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldrSym0 b6989586621679475629 a6989586621679475630) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475638 (TyFun b6989586621679475639 b6989586621679475639 -> Type) -> Type) (TyFun b6989586621679475639 (TyFun [a6989586621679475638] [b6989586621679475639] -> Type) -> Type) -> *) (ScanrSym0 a6989586621679475638 b6989586621679475639) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym0 a6989586621679475638 b6989586621679475639) t -> () #

SuppressUnusedWarnings (TyFun (TyFun b6989586621679475641 (TyFun a6989586621679475642 b6989586621679475641 -> Type) -> Type) (TyFun b6989586621679475641 (TyFun [a6989586621679475642] [b6989586621679475641] -> Type) -> Type) -> *) (ScanlSym0 a6989586621679475642 b6989586621679475641) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym0 a6989586621679475642 b6989586621679475641) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475644 [b6989586621679475645] -> Type) (TyFun [a6989586621679475644] [b6989586621679475645] -> Type) -> *) (ConcatMapSym0 a6989586621679475644 b6989586621679475645) # 

Methods

suppressUnusedWarnings :: Proxy (ConcatMapSym0 a6989586621679475644 b6989586621679475645) t -> () #

SuppressUnusedWarnings (TyFun (TyFun b6989586621679475651 (TyFun a6989586621679475650 b6989586621679475651 -> Type) -> Type) (TyFun b6989586621679475651 (TyFun [a6989586621679475650] b6989586621679475651 -> Type) -> Type) -> *) (Foldl'Sym0 a6989586621679475650 b6989586621679475651) # 

Methods

suppressUnusedWarnings :: Proxy (Foldl'Sym0 a6989586621679475650 b6989586621679475651) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753499 b6989586621679753498 -> Type) (TyFun [a6989586621679753499] [NonEmpty a6989586621679753499] -> Type) -> *) (GroupWithSym0 b6989586621679753498 a6989586621679753499) # 

Methods

suppressUnusedWarnings :: Proxy (GroupWithSym0 b6989586621679753498 a6989586621679753499) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753497 b6989586621679753496 -> Type) (TyFun [a6989586621679753497] [NonEmpty a6989586621679753497] -> Type) -> *) (GroupAllWithSym0 b6989586621679753496 a6989586621679753497) # 

Methods

suppressUnusedWarnings :: Proxy (GroupAllWithSym0 b6989586621679753496 a6989586621679753497) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753493 b6989586621679753492 -> Type) (TyFun (NonEmpty a6989586621679753493) (NonEmpty (NonEmpty a6989586621679753493)) -> Type) -> *) (GroupWith1Sym0 b6989586621679753492 a6989586621679753493) # 

Methods

suppressUnusedWarnings :: Proxy (GroupWith1Sym0 b6989586621679753492 a6989586621679753493) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753522 b6989586621679753523 -> Type) (TyFun (NonEmpty a6989586621679753522) (NonEmpty b6989586621679753523) -> Type) -> *) (MapSym0 a6989586621679753522 b6989586621679753523) # 

Methods

suppressUnusedWarnings :: Proxy (MapSym0 a6989586621679753522 b6989586621679753523) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753476 o6989586621679753475 -> Type) (TyFun (NonEmpty a6989586621679753476) (NonEmpty a6989586621679753476) -> Type) -> *) (SortWithSym0 o6989586621679753475 a6989586621679753476) # 

Methods

suppressUnusedWarnings :: Proxy (SortWithSym0 o6989586621679753475 a6989586621679753476) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753491 b6989586621679753490 -> Type) (TyFun (NonEmpty a6989586621679753491) (NonEmpty (NonEmpty a6989586621679753491)) -> Type) -> *) (GroupAllWith1Sym0 b6989586621679753490 a6989586621679753491) # 

Methods

suppressUnusedWarnings :: Proxy (GroupAllWith1Sym0 b6989586621679753490 a6989586621679753491) t -> () #

SuppressUnusedWarnings (TyFun (TyFun b6989586621679753517 (TyFun a6989586621679753518 b6989586621679753517 -> Type) -> Type) (TyFun b6989586621679753517 (TyFun [a6989586621679753518] (NonEmpty b6989586621679753517) -> Type) -> Type) -> *) (ScanlSym0 a6989586621679753518 b6989586621679753517) # 

Methods

suppressUnusedWarnings :: Proxy (ScanlSym0 a6989586621679753518 b6989586621679753517) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753515 (TyFun b6989586621679753516 b6989586621679753516 -> Type) -> Type) (TyFun b6989586621679753516 (TyFun [a6989586621679753515] (NonEmpty b6989586621679753516) -> Type) -> Type) -> *) (ScanrSym0 a6989586621679753515 b6989586621679753516) # 

Methods

suppressUnusedWarnings :: Proxy (ScanrSym0 a6989586621679753515 b6989586621679753516) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753535 (b6989586621679753536, Maybe a6989586621679753535) -> Type) (TyFun a6989586621679753535 (NonEmpty b6989586621679753536) -> Type) -> *) (UnfoldrSym0 a6989586621679753535 b6989586621679753536) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldrSym0 a6989586621679753535 b6989586621679753536) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753539 (b6989586621679753540, Maybe a6989586621679753539) -> Type) (TyFun a6989586621679753539 (NonEmpty b6989586621679753540) -> Type) -> *) (UnfoldSym0 a6989586621679753539 b6989586621679753540) # 

Methods

suppressUnusedWarnings :: Proxy (UnfoldSym0 a6989586621679753539 b6989586621679753540) t -> () #

SuppressUnusedWarnings (TyFun [Either a6989586621679454607 b6989586621679454608] [b6989586621679454608] -> *) (RightsSym0 a6989586621679454607 b6989586621679454608) # 

Methods

suppressUnusedWarnings :: Proxy (RightsSym0 a6989586621679454607 b6989586621679454608) t -> () #

SuppressUnusedWarnings (TyFun [Either a6989586621679454609 b6989586621679454610] [a6989586621679454609] -> *) (LeftsSym0 b6989586621679454610 a6989586621679454609) # 

Methods

suppressUnusedWarnings :: Proxy (LeftsSym0 b6989586621679454610 a6989586621679454609) t -> () #

SuppressUnusedWarnings (TyFun [(a6989586621679475608, b6989586621679475609)] ([a6989586621679475608], [b6989586621679475609]) -> *) (UnzipSym0 a6989586621679475608 b6989586621679475609) # 

Methods

suppressUnusedWarnings :: Proxy (UnzipSym0 a6989586621679475608 b6989586621679475609) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475537] i6989586621679475536 -> *) (GenericLengthSym0 a6989586621679475537 i6989586621679475536) # 

Methods

suppressUnusedWarnings :: Proxy (GenericLengthSym0 a6989586621679475537 i6989586621679475536) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475620] (TyFun [b6989586621679475621] [(a6989586621679475620, b6989586621679475621)] -> Type) -> *) (ZipSym0 a6989586621679475620 b6989586621679475621) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym0 a6989586621679475620 b6989586621679475621) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679904264] (TyFun i6989586621679904263 a6989586621679904264 -> Type) -> *) (GenericIndexSym0 i6989586621679904263 a6989586621679904264) # 

Methods

suppressUnusedWarnings :: Proxy (GenericIndexSym0 i6989586621679904263 a6989586621679904264) t -> () #

SuppressUnusedWarnings (TyFun (Either a6989586621679454601 b6989586621679454602) Bool -> *) (IsRightSym0 a6989586621679454601 b6989586621679454602) # 

Methods

suppressUnusedWarnings :: Proxy (IsRightSym0 a6989586621679454601 b6989586621679454602) t -> () #

SuppressUnusedWarnings (TyFun (Either a6989586621679454603 b6989586621679454604) Bool -> *) (IsLeftSym0 a6989586621679454603 b6989586621679454604) # 

Methods

suppressUnusedWarnings :: Proxy (IsLeftSym0 a6989586621679454603 b6989586621679454604) t -> () #

SuppressUnusedWarnings (TyFun (a6989586621679439417, b6989586621679439418) (b6989586621679439418, a6989586621679439417) -> *) (SwapSym0 b6989586621679439418 a6989586621679439417) # 

Methods

suppressUnusedWarnings :: Proxy (SwapSym0 b6989586621679439418 a6989586621679439417) t -> () #

SuppressUnusedWarnings (TyFun (a6989586621679439425, b6989586621679439426) b6989586621679439426 -> *) (SndSym0 a6989586621679439425 b6989586621679439426) # 

Methods

suppressUnusedWarnings :: Proxy (SndSym0 a6989586621679439425 b6989586621679439426) t -> () #

SuppressUnusedWarnings (TyFun (a6989586621679439427, b6989586621679439428) a6989586621679439427 -> *) (FstSym0 b6989586621679439428 a6989586621679439427) # 

Methods

suppressUnusedWarnings :: Proxy (FstSym0 b6989586621679439428 a6989586621679439427) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679075946 (Either a6989586621679075946 b6989586621679075947) -> *) (LeftSym0 a6989586621679075946 b6989586621679075947) # 

Methods

suppressUnusedWarnings :: Proxy (LeftSym0 a6989586621679075946 b6989586621679075947) t -> () #

SuppressUnusedWarnings (TyFun b6989586621679075947 (Either a6989586621679075946 b6989586621679075947) -> *) (RightSym0 a6989586621679075946 b6989586621679075947) # 

Methods

suppressUnusedWarnings :: Proxy (RightSym0 a6989586621679075946 b6989586621679075947) t -> () #

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (a3530822107858468865, b3530822107858468866) -> Type) -> *) (Tuple2Sym0 a3530822107858468865 b3530822107858468866) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple2Sym0 a3530822107858468865 b3530822107858468866) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679292502 (TyFun b6989586621679292503 b6989586621679292503 -> Type) -> *) (SeqSym0 a6989586621679292502 b6989586621679292503) # 

Methods

suppressUnusedWarnings :: Proxy (SeqSym0 a6989586621679292502 b6989586621679292503) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679292511 (TyFun b6989586621679292512 a6989586621679292511 -> Type) -> *) (ConstSym0 b6989586621679292512 a6989586621679292511) # 

Methods

suppressUnusedWarnings :: Proxy (ConstSym0 b6989586621679292512 a6989586621679292511) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679304576 (TyFun (TyFun a6989586621679304576 b6989586621679304577 -> Type) b6989586621679304577 -> Type) -> *) ((:&$) a6989586621679304576 b6989586621679304577) # 

Methods

suppressUnusedWarnings :: Proxy (a6989586621679304576 :&$ b6989586621679304577) t -> () #

SuppressUnusedWarnings (TyFun k06989586621679418718 k6989586621679418720 -> *) (ErrorSym0 k06989586621679418718 k6989586621679418720) # 

Methods

suppressUnusedWarnings :: Proxy (ErrorSym0 k06989586621679418718 k6989586621679418720) t -> () #

SuppressUnusedWarnings (TyFun b6989586621679443437 (TyFun (TyFun a6989586621679443438 b6989586621679443437 -> Type) (TyFun (Maybe a6989586621679443438) b6989586621679443437 -> Type) -> Type) -> *) (Maybe_Sym0 a6989586621679443438 b6989586621679443437) # 

Methods

suppressUnusedWarnings :: Proxy (Maybe_Sym0 a6989586621679443438 b6989586621679443437) t -> () #

SuppressUnusedWarnings (TyFun a6989586621679475551 (TyFun [(a6989586621679475551, b6989586621679475552)] (Maybe b6989586621679475552) -> Type) -> *) (LookupSym0 a6989586621679475551 b6989586621679475552) # 

Methods

suppressUnusedWarnings :: Proxy (LookupSym0 a6989586621679475551 b6989586621679475552) t -> () #

SuppressUnusedWarnings (TyFun i6989586621679904261 (TyFun a6989586621679904262 [a6989586621679904262] -> Type) -> *) (GenericReplicateSym0 i6989586621679904261 a6989586621679904262) # 

Methods

suppressUnusedWarnings :: Proxy (GenericReplicateSym0 i6989586621679904261 a6989586621679904262) t -> () #

SuppressUnusedWarnings (TyFun i6989586621679904265 (TyFun [a6989586621679904266] ([a6989586621679904266], [a6989586621679904266]) -> Type) -> *) (GenericSplitAtSym0 i6989586621679904265 a6989586621679904266) # 

Methods

suppressUnusedWarnings :: Proxy (GenericSplitAtSym0 i6989586621679904265 a6989586621679904266) t -> () #

SuppressUnusedWarnings (TyFun i6989586621679904267 (TyFun [a6989586621679904268] [a6989586621679904268] -> Type) -> *) (GenericDropSym0 i6989586621679904267 a6989586621679904268) # 

Methods

suppressUnusedWarnings :: Proxy (GenericDropSym0 i6989586621679904267 a6989586621679904268) t -> () #

SuppressUnusedWarnings (TyFun i6989586621679904269 (TyFun [a6989586621679904270] [a6989586621679904270] -> Type) -> *) (GenericTakeSym0 i6989586621679904269 a6989586621679904270) # 

Methods

suppressUnusedWarnings :: Proxy (GenericTakeSym0 i6989586621679904269 a6989586621679904270) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty (a6989586621679753481, b6989586621679753482)) (NonEmpty a6989586621679753481, NonEmpty b6989586621679753482) -> *) (UnzipSym0 a6989586621679753481 b6989586621679753482) # 

Methods

suppressUnusedWarnings :: Proxy (UnzipSym0 a6989586621679753481 b6989586621679753482) t -> () #

SuppressUnusedWarnings (TyFun (NonEmpty a6989586621679753486) (TyFun (NonEmpty b6989586621679753487) (NonEmpty (a6989586621679753486, b6989586621679753487)) -> Type) -> *) (ZipSym0 a6989586621679753486 b6989586621679753487) # 

Methods

suppressUnusedWarnings :: Proxy (ZipSym0 a6989586621679753486 b6989586621679753487) t -> () #

SuppressUnusedWarnings ((TyFun (a6989586621679439422, b6989586621679439423) c6989586621679439424 -> Type) -> a6989586621679439422 -> TyFun b6989586621679439423 c6989586621679439424 -> *) (CurrySym2 a6989586621679439422 b6989586621679439423 c6989586621679439424) # 

Methods

suppressUnusedWarnings :: Proxy (CurrySym2 a6989586621679439422 b6989586621679439423 c6989586621679439424) t -> () #

SuppressUnusedWarnings ((TyFun (a6989586621679439422, b6989586621679439423) c6989586621679439424 -> Type) -> TyFun a6989586621679439422 (TyFun b6989586621679439423 c6989586621679439424 -> Type) -> *) (CurrySym1 a6989586621679439422 b6989586621679439423 c6989586621679439424) # 

Methods

suppressUnusedWarnings :: Proxy (CurrySym1 a6989586621679439422 b6989586621679439423 c6989586621679439424) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679292505 (TyFun b6989586621679292506 c6989586621679292507 -> Type) -> Type) -> b6989586621679292506 -> TyFun a6989586621679292505 c6989586621679292507 -> *) (FlipSym2 b6989586621679292506 a6989586621679292505 c6989586621679292507) # 

Methods

suppressUnusedWarnings :: Proxy (FlipSym2 b6989586621679292506 a6989586621679292505 c6989586621679292507) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679292505 (TyFun b6989586621679292506 c6989586621679292507 -> Type) -> Type) -> TyFun b6989586621679292506 (TyFun a6989586621679292505 c6989586621679292507 -> Type) -> *) (FlipSym1 b6989586621679292506 a6989586621679292505 c6989586621679292507) # 

Methods

suppressUnusedWarnings :: Proxy (FlipSym1 b6989586621679292506 a6989586621679292505 c6989586621679292507) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679292508 c6989586621679292509 -> Type) -> (TyFun a6989586621679292510 b6989586621679292508 -> Type) -> TyFun a6989586621679292510 c6989586621679292509 -> *) ((:.$$$) b6989586621679292508 a6989586621679292510 c6989586621679292509) # 

Methods

suppressUnusedWarnings :: Proxy ((b6989586621679292508 :.$$$ a6989586621679292510) c6989586621679292509) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679292508 c6989586621679292509 -> Type) -> TyFun (TyFun a6989586621679292510 b6989586621679292508 -> Type) (TyFun a6989586621679292510 c6989586621679292509 -> Type) -> *) ((:.$$) b6989586621679292508 a6989586621679292510 c6989586621679292509) # 

Methods

suppressUnusedWarnings :: Proxy ((b6989586621679292508 :.$$ a6989586621679292510) c6989586621679292509) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679304578 (TyFun b6989586621679304578 c6989586621679304579 -> Type) -> Type) -> (TyFun a6989586621679304580 b6989586621679304578 -> Type) -> a6989586621679304580 -> TyFun a6989586621679304580 c6989586621679304579 -> *) (OnSym3 b6989586621679304578 a6989586621679304580 c6989586621679304579) # 

Methods

suppressUnusedWarnings :: Proxy (OnSym3 b6989586621679304578 a6989586621679304580 c6989586621679304579) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679304578 (TyFun b6989586621679304578 c6989586621679304579 -> Type) -> Type) -> (TyFun a6989586621679304580 b6989586621679304578 -> Type) -> TyFun a6989586621679304580 (TyFun a6989586621679304580 c6989586621679304579 -> Type) -> *) (OnSym2 b6989586621679304578 a6989586621679304580 c6989586621679304579) # 

Methods

suppressUnusedWarnings :: Proxy (OnSym2 b6989586621679304578 a6989586621679304580 c6989586621679304579) t -> () #

SuppressUnusedWarnings ((TyFun b6989586621679304578 (TyFun b6989586621679304578 c6989586621679304579 -> Type) -> Type) -> TyFun (TyFun a6989586621679304580 b6989586621679304578 -> Type) (TyFun a6989586621679304580 (TyFun a6989586621679304580 c6989586621679304579 -> Type) -> Type) -> *) (OnSym1 b6989586621679304578 a6989586621679304580 c6989586621679304579) # 

Methods

suppressUnusedWarnings :: Proxy (OnSym1 b6989586621679304578 a6989586621679304580 c6989586621679304579) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679439419 (TyFun b6989586621679439420 c6989586621679439421 -> Type) -> Type) -> TyFun (a6989586621679439419, b6989586621679439420) c6989586621679439421 -> *) (UncurrySym1 a6989586621679439419 b6989586621679439420 c6989586621679439421) # 

Methods

suppressUnusedWarnings :: Proxy (UncurrySym1 a6989586621679439419 b6989586621679439420 c6989586621679439421) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679453497 c6989586621679453498 -> Type) -> (TyFun b6989586621679453499 c6989586621679453498 -> Type) -> TyFun (Either a6989586621679453497 b6989586621679453499) c6989586621679453498 -> *) (Either_Sym2 a6989586621679453497 b6989586621679453499 c6989586621679453498) # 

Methods

suppressUnusedWarnings :: Proxy (Either_Sym2 a6989586621679453497 b6989586621679453499 c6989586621679453498) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679453497 c6989586621679453498 -> Type) -> TyFun (TyFun b6989586621679453499 c6989586621679453498 -> Type) (TyFun (Either a6989586621679453497 b6989586621679453499) c6989586621679453498 -> Type) -> *) (Either_Sym1 a6989586621679453497 b6989586621679453499 c6989586621679453498) # 

Methods

suppressUnusedWarnings :: Proxy (Either_Sym1 a6989586621679453497 b6989586621679453499 c6989586621679453498) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) -> TyFun [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type) -> *) (ZipWithSym1 a6989586621679475614 b6989586621679475615 c6989586621679475616) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym1 a6989586621679475614 b6989586621679475615 c6989586621679475616) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) -> [a6989586621679475614] -> TyFun [b6989586621679475615] [c6989586621679475616] -> *) (ZipWithSym2 a6989586621679475614 b6989586621679475615 c6989586621679475616) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym2 a6989586621679475614 b6989586621679475615 c6989586621679475616) t -> () #

SuppressUnusedWarnings ((TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) -> TyFun acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type) -> *) (MapAccumRSym1 x6989586621679475632 acc6989586621679475631 y6989586621679475633) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumRSym1 x6989586621679475632 acc6989586621679475631 y6989586621679475633) t -> () #

SuppressUnusedWarnings ((TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) -> acc6989586621679475631 -> TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> *) (MapAccumRSym2 x6989586621679475632 acc6989586621679475631 y6989586621679475633) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumRSym2 x6989586621679475632 acc6989586621679475631 y6989586621679475633) t -> () #

SuppressUnusedWarnings ((TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) -> TyFun acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type) -> *) (MapAccumLSym1 x6989586621679475635 acc6989586621679475634 y6989586621679475636) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumLSym1 x6989586621679475635 acc6989586621679475634 y6989586621679475636) t -> () #

SuppressUnusedWarnings ((TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) -> acc6989586621679475634 -> TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> *) (MapAccumLSym2 x6989586621679475635 acc6989586621679475634 y6989586621679475636) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumLSym2 x6989586621679475635 acc6989586621679475634 y6989586621679475636) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753483 (TyFun b6989586621679753484 c6989586621679753485 -> Type) -> Type) -> NonEmpty a6989586621679753483 -> TyFun (NonEmpty b6989586621679753484) (NonEmpty c6989586621679753485) -> *) (ZipWithSym2 a6989586621679753483 b6989586621679753484 c6989586621679753485) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym2 a6989586621679753483 b6989586621679753484 c6989586621679753485) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679753483 (TyFun b6989586621679753484 c6989586621679753485 -> Type) -> Type) -> TyFun (NonEmpty a6989586621679753483) (TyFun (NonEmpty b6989586621679753484) (NonEmpty c6989586621679753485) -> Type) -> *) (ZipWithSym1 a6989586621679753483 b6989586621679753484 c6989586621679753485) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym1 a6989586621679753483 b6989586621679753484 c6989586621679753485) t -> () #

SuppressUnusedWarnings ([a6989586621679475617] -> TyFun [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type) -> *) (Zip3Sym1 a6989586621679475617 b6989586621679475618 c6989586621679475619) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym1 a6989586621679475617 b6989586621679475618 c6989586621679475619) t -> () #

SuppressUnusedWarnings ([a6989586621679475617] -> [b6989586621679475618] -> TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> *) (Zip3Sym2 a6989586621679475617 b6989586621679475618 c6989586621679475619) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym2 a6989586621679475617 b6989586621679475618 c6989586621679475619) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> *) (Tuple3Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> *) (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867) t -> () #

SuppressUnusedWarnings (TyFun (TyFun (a6989586621679439422, b6989586621679439423) c6989586621679439424 -> Type) (TyFun a6989586621679439422 (TyFun b6989586621679439423 c6989586621679439424 -> Type) -> Type) -> *) (CurrySym0 a6989586621679439422 b6989586621679439423 c6989586621679439424) # 

Methods

suppressUnusedWarnings :: Proxy (CurrySym0 a6989586621679439422 b6989586621679439423 c6989586621679439424) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679292505 (TyFun b6989586621679292506 c6989586621679292507 -> Type) -> Type) (TyFun b6989586621679292506 (TyFun a6989586621679292505 c6989586621679292507 -> Type) -> Type) -> *) (FlipSym0 b6989586621679292506 a6989586621679292505 c6989586621679292507) # 

Methods

suppressUnusedWarnings :: Proxy (FlipSym0 b6989586621679292506 a6989586621679292505 c6989586621679292507) t -> () #

SuppressUnusedWarnings (TyFun (TyFun b6989586621679292508 c6989586621679292509 -> Type) (TyFun (TyFun a6989586621679292510 b6989586621679292508 -> Type) (TyFun a6989586621679292510 c6989586621679292509 -> Type) -> Type) -> *) ((:.$) b6989586621679292508 a6989586621679292510 c6989586621679292509) # 

Methods

suppressUnusedWarnings :: Proxy ((b6989586621679292508 :.$ a6989586621679292510) c6989586621679292509) t -> () #

SuppressUnusedWarnings (TyFun (TyFun b6989586621679304578 (TyFun b6989586621679304578 c6989586621679304579 -> Type) -> Type) (TyFun (TyFun a6989586621679304580 b6989586621679304578 -> Type) (TyFun a6989586621679304580 (TyFun a6989586621679304580 c6989586621679304579 -> Type) -> Type) -> Type) -> *) (OnSym0 b6989586621679304578 a6989586621679304580 c6989586621679304579) # 

Methods

suppressUnusedWarnings :: Proxy (OnSym0 b6989586621679304578 a6989586621679304580 c6989586621679304579) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679439419 (TyFun b6989586621679439420 c6989586621679439421 -> Type) -> Type) (TyFun (a6989586621679439419, b6989586621679439420) c6989586621679439421 -> Type) -> *) (UncurrySym0 a6989586621679439419 b6989586621679439420 c6989586621679439421) # 

Methods

suppressUnusedWarnings :: Proxy (UncurrySym0 a6989586621679439419 b6989586621679439420 c6989586621679439421) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679453497 c6989586621679453498 -> Type) (TyFun (TyFun b6989586621679453499 c6989586621679453498 -> Type) (TyFun (Either a6989586621679453497 b6989586621679453499) c6989586621679453498 -> Type) -> Type) -> *) (Either_Sym0 a6989586621679453497 b6989586621679453499 c6989586621679453498) # 

Methods

suppressUnusedWarnings :: Proxy (Either_Sym0 a6989586621679453497 b6989586621679453499 c6989586621679453498) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475614 (TyFun b6989586621679475615 c6989586621679475616 -> Type) -> Type) (TyFun [a6989586621679475614] (TyFun [b6989586621679475615] [c6989586621679475616] -> Type) -> Type) -> *) (ZipWithSym0 a6989586621679475614 b6989586621679475615 c6989586621679475616) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym0 a6989586621679475614 b6989586621679475615 c6989586621679475616) t -> () #

SuppressUnusedWarnings (TyFun (TyFun acc6989586621679475631 (TyFun x6989586621679475632 (acc6989586621679475631, y6989586621679475633) -> Type) -> Type) (TyFun acc6989586621679475631 (TyFun [x6989586621679475632] (acc6989586621679475631, [y6989586621679475633]) -> Type) -> Type) -> *) (MapAccumRSym0 x6989586621679475632 acc6989586621679475631 y6989586621679475633) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumRSym0 x6989586621679475632 acc6989586621679475631 y6989586621679475633) t -> () #

SuppressUnusedWarnings (TyFun (TyFun acc6989586621679475634 (TyFun x6989586621679475635 (acc6989586621679475634, y6989586621679475636) -> Type) -> Type) (TyFun acc6989586621679475634 (TyFun [x6989586621679475635] (acc6989586621679475634, [y6989586621679475636]) -> Type) -> Type) -> *) (MapAccumLSym0 x6989586621679475635 acc6989586621679475634 y6989586621679475636) # 

Methods

suppressUnusedWarnings :: Proxy (MapAccumLSym0 x6989586621679475635 acc6989586621679475634 y6989586621679475636) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679753483 (TyFun b6989586621679753484 c6989586621679753485 -> Type) -> Type) (TyFun (NonEmpty a6989586621679753483) (TyFun (NonEmpty b6989586621679753484) (NonEmpty c6989586621679753485) -> Type) -> Type) -> *) (ZipWithSym0 a6989586621679753483 b6989586621679753484 c6989586621679753485) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWithSym0 a6989586621679753483 b6989586621679753484 c6989586621679753485) t -> () #

SuppressUnusedWarnings (TyFun [(a6989586621679475605, b6989586621679475606, c6989586621679475607)] ([a6989586621679475605], [b6989586621679475606], [c6989586621679475607]) -> *) (Unzip3Sym0 a6989586621679475605 b6989586621679475606 c6989586621679475607) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip3Sym0 a6989586621679475605 b6989586621679475606 c6989586621679475607) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679475617] (TyFun [b6989586621679475618] (TyFun [c6989586621679475619] [(a6989586621679475617, b6989586621679475618, c6989586621679475619)] -> Type) -> Type) -> *) (Zip3Sym0 a6989586621679475617 b6989586621679475618 c6989586621679475619) # 

Methods

suppressUnusedWarnings :: Proxy (Zip3Sym0 a6989586621679475617 b6989586621679475618 c6989586621679475619) t -> () #

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (a3530822107858468865, b3530822107858468866, c3530822107858468867) -> Type) -> Type) -> *) (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple3Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) -> TyFun [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type) -> *) (ZipWith3Sym1 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym1 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) -> [a6989586621679475610] -> TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> *) (ZipWith3Sym2 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym2 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) -> [a6989586621679475610] -> [b6989586621679475611] -> TyFun [c6989586621679475612] [d6989586621679475613] -> *) (ZipWith3Sym3 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym3 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) t -> () #

SuppressUnusedWarnings ([a6989586621679904315] -> [b6989586621679904316] -> [c6989586621679904317] -> TyFun [d6989586621679904318] [(a6989586621679904315, b6989586621679904316, c6989586621679904317, d6989586621679904318)] -> *) (Zip4Sym3 a6989586621679904315 b6989586621679904316 c6989586621679904317 d6989586621679904318) # 

Methods

suppressUnusedWarnings :: Proxy (Zip4Sym3 a6989586621679904315 b6989586621679904316 c6989586621679904317 d6989586621679904318) t -> () #

SuppressUnusedWarnings ([a6989586621679904315] -> [b6989586621679904316] -> TyFun [c6989586621679904317] (TyFun [d6989586621679904318] [(a6989586621679904315, b6989586621679904316, c6989586621679904317, d6989586621679904318)] -> Type) -> *) (Zip4Sym2 a6989586621679904315 b6989586621679904316 c6989586621679904317 d6989586621679904318) # 

Methods

suppressUnusedWarnings :: Proxy (Zip4Sym2 a6989586621679904315 b6989586621679904316 c6989586621679904317 d6989586621679904318) t -> () #

SuppressUnusedWarnings ([a6989586621679904315] -> TyFun [b6989586621679904316] (TyFun [c6989586621679904317] (TyFun [d6989586621679904318] [(a6989586621679904315, b6989586621679904316, c6989586621679904317, d6989586621679904318)] -> Type) -> Type) -> *) (Zip4Sym1 a6989586621679904315 b6989586621679904316 c6989586621679904317 d6989586621679904318) # 

Methods

suppressUnusedWarnings :: Proxy (Zip4Sym1 a6989586621679904315 b6989586621679904316 c6989586621679904317 d6989586621679904318) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> *) (Tuple4Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> *) (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> *) (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679475610 (TyFun b6989586621679475611 (TyFun c6989586621679475612 d6989586621679475613 -> Type) -> Type) -> Type) (TyFun [a6989586621679475610] (TyFun [b6989586621679475611] (TyFun [c6989586621679475612] [d6989586621679475613] -> Type) -> Type) -> Type) -> *) (ZipWith3Sym0 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith3Sym0 a6989586621679475610 b6989586621679475611 c6989586621679475612 d6989586621679475613) t -> () #

SuppressUnusedWarnings (TyFun [(a6989586621679475601, b6989586621679475602, c6989586621679475603, d6989586621679475604)] ([a6989586621679475601], [b6989586621679475602], [c6989586621679475603], [d6989586621679475604]) -> *) (Unzip4Sym0 a6989586621679475601 b6989586621679475602 c6989586621679475603 d6989586621679475604) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip4Sym0 a6989586621679475601 b6989586621679475602 c6989586621679475603 d6989586621679475604) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679904315] (TyFun [b6989586621679904316] (TyFun [c6989586621679904317] (TyFun [d6989586621679904318] [(a6989586621679904315, b6989586621679904316, c6989586621679904317, d6989586621679904318)] -> Type) -> Type) -> Type) -> *) (Zip4Sym0 a6989586621679904315 b6989586621679904316 c6989586621679904317 d6989586621679904318) # 

Methods

suppressUnusedWarnings :: Proxy (Zip4Sym0 a6989586621679904315 b6989586621679904316 c6989586621679904317 d6989586621679904318) t -> () #

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868) -> Type) -> Type) -> Type) -> *) (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple4Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904292 (TyFun b6989586621679904293 (TyFun c6989586621679904294 (TyFun d6989586621679904295 e6989586621679904296 -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679904292] (TyFun [b6989586621679904293] (TyFun [c6989586621679904294] (TyFun [d6989586621679904295] [e6989586621679904296] -> Type) -> Type) -> Type) -> *) (ZipWith4Sym1 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym1 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904292 (TyFun b6989586621679904293 (TyFun c6989586621679904294 (TyFun d6989586621679904295 e6989586621679904296 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904292] -> TyFun [b6989586621679904293] (TyFun [c6989586621679904294] (TyFun [d6989586621679904295] [e6989586621679904296] -> Type) -> Type) -> *) (ZipWith4Sym2 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym2 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904292 (TyFun b6989586621679904293 (TyFun c6989586621679904294 (TyFun d6989586621679904295 e6989586621679904296 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904292] -> [b6989586621679904293] -> TyFun [c6989586621679904294] (TyFun [d6989586621679904295] [e6989586621679904296] -> Type) -> *) (ZipWith4Sym3 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym3 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904292 (TyFun b6989586621679904293 (TyFun c6989586621679904294 (TyFun d6989586621679904295 e6989586621679904296 -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904292] -> [b6989586621679904293] -> [c6989586621679904294] -> TyFun [d6989586621679904295] [e6989586621679904296] -> *) (ZipWith4Sym4 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym4 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) t -> () #

SuppressUnusedWarnings ([a6989586621679904310] -> [b6989586621679904311] -> [c6989586621679904312] -> [d6989586621679904313] -> TyFun [e6989586621679904314] [(a6989586621679904310, b6989586621679904311, c6989586621679904312, d6989586621679904313, e6989586621679904314)] -> *) (Zip5Sym4 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym4 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) t -> () #

SuppressUnusedWarnings ([a6989586621679904310] -> [b6989586621679904311] -> [c6989586621679904312] -> TyFun [d6989586621679904313] (TyFun [e6989586621679904314] [(a6989586621679904310, b6989586621679904311, c6989586621679904312, d6989586621679904313, e6989586621679904314)] -> Type) -> *) (Zip5Sym3 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym3 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) t -> () #

SuppressUnusedWarnings ([a6989586621679904310] -> [b6989586621679904311] -> TyFun [c6989586621679904312] (TyFun [d6989586621679904313] (TyFun [e6989586621679904314] [(a6989586621679904310, b6989586621679904311, c6989586621679904312, d6989586621679904313, e6989586621679904314)] -> Type) -> Type) -> *) (Zip5Sym2 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym2 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) t -> () #

SuppressUnusedWarnings ([a6989586621679904310] -> TyFun [b6989586621679904311] (TyFun [c6989586621679904312] (TyFun [d6989586621679904313] (TyFun [e6989586621679904314] [(a6989586621679904310, b6989586621679904311, c6989586621679904312, d6989586621679904313, e6989586621679904314)] -> Type) -> Type) -> Type) -> *) (Zip5Sym1 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym1 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> *) (Tuple5Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> *) (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> *) (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> *) (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679904292 (TyFun b6989586621679904293 (TyFun c6989586621679904294 (TyFun d6989586621679904295 e6989586621679904296 -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679904292] (TyFun [b6989586621679904293] (TyFun [c6989586621679904294] (TyFun [d6989586621679904295] [e6989586621679904296] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith4Sym0 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith4Sym0 a6989586621679904292 b6989586621679904293 c6989586621679904294 d6989586621679904295 e6989586621679904296) t -> () #

SuppressUnusedWarnings (TyFun [(a6989586621679475596, b6989586621679475597, c6989586621679475598, d6989586621679475599, e6989586621679475600)] ([a6989586621679475596], [b6989586621679475597], [c6989586621679475598], [d6989586621679475599], [e6989586621679475600]) -> *) (Unzip5Sym0 a6989586621679475596 b6989586621679475597 c6989586621679475598 d6989586621679475599 e6989586621679475600) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip5Sym0 a6989586621679475596 b6989586621679475597 c6989586621679475598 d6989586621679475599 e6989586621679475600) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679904310] (TyFun [b6989586621679904311] (TyFun [c6989586621679904312] (TyFun [d6989586621679904313] (TyFun [e6989586621679904314] [(a6989586621679904310, b6989586621679904311, c6989586621679904312, d6989586621679904313, e6989586621679904314)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip5Sym0 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) # 

Methods

suppressUnusedWarnings :: Proxy (Zip5Sym0 a6989586621679904310 b6989586621679904311 c6989586621679904312 d6989586621679904313 e6989586621679904314) t -> () #

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple5Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904286 (TyFun b6989586621679904287 (TyFun c6989586621679904288 (TyFun d6989586621679904289 (TyFun e6989586621679904290 f6989586621679904291 -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679904286] (TyFun [b6989586621679904287] (TyFun [c6989586621679904288] (TyFun [d6989586621679904289] (TyFun [e6989586621679904290] [f6989586621679904291] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith5Sym1 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym1 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904286 (TyFun b6989586621679904287 (TyFun c6989586621679904288 (TyFun d6989586621679904289 (TyFun e6989586621679904290 f6989586621679904291 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904286] -> TyFun [b6989586621679904287] (TyFun [c6989586621679904288] (TyFun [d6989586621679904289] (TyFun [e6989586621679904290] [f6989586621679904291] -> Type) -> Type) -> Type) -> *) (ZipWith5Sym2 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym2 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904286 (TyFun b6989586621679904287 (TyFun c6989586621679904288 (TyFun d6989586621679904289 (TyFun e6989586621679904290 f6989586621679904291 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904286] -> [b6989586621679904287] -> TyFun [c6989586621679904288] (TyFun [d6989586621679904289] (TyFun [e6989586621679904290] [f6989586621679904291] -> Type) -> Type) -> *) (ZipWith5Sym3 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym3 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904286 (TyFun b6989586621679904287 (TyFun c6989586621679904288 (TyFun d6989586621679904289 (TyFun e6989586621679904290 f6989586621679904291 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904286] -> [b6989586621679904287] -> [c6989586621679904288] -> TyFun [d6989586621679904289] (TyFun [e6989586621679904290] [f6989586621679904291] -> Type) -> *) (ZipWith5Sym4 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym4 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904286 (TyFun b6989586621679904287 (TyFun c6989586621679904288 (TyFun d6989586621679904289 (TyFun e6989586621679904290 f6989586621679904291 -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904286] -> [b6989586621679904287] -> [c6989586621679904288] -> [d6989586621679904289] -> TyFun [e6989586621679904290] [f6989586621679904291] -> *) (ZipWith5Sym5 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym5 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) t -> () #

SuppressUnusedWarnings ([a6989586621679904304] -> [b6989586621679904305] -> [c6989586621679904306] -> [d6989586621679904307] -> [e6989586621679904308] -> TyFun [f6989586621679904309] [(a6989586621679904304, b6989586621679904305, c6989586621679904306, d6989586621679904307, e6989586621679904308, f6989586621679904309)] -> *) (Zip6Sym5 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym5 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) t -> () #

SuppressUnusedWarnings ([a6989586621679904304] -> [b6989586621679904305] -> [c6989586621679904306] -> [d6989586621679904307] -> TyFun [e6989586621679904308] (TyFun [f6989586621679904309] [(a6989586621679904304, b6989586621679904305, c6989586621679904306, d6989586621679904307, e6989586621679904308, f6989586621679904309)] -> Type) -> *) (Zip6Sym4 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym4 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) t -> () #

SuppressUnusedWarnings ([a6989586621679904304] -> [b6989586621679904305] -> [c6989586621679904306] -> TyFun [d6989586621679904307] (TyFun [e6989586621679904308] (TyFun [f6989586621679904309] [(a6989586621679904304, b6989586621679904305, c6989586621679904306, d6989586621679904307, e6989586621679904308, f6989586621679904309)] -> Type) -> Type) -> *) (Zip6Sym3 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym3 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) t -> () #

SuppressUnusedWarnings ([a6989586621679904304] -> [b6989586621679904305] -> TyFun [c6989586621679904306] (TyFun [d6989586621679904307] (TyFun [e6989586621679904308] (TyFun [f6989586621679904309] [(a6989586621679904304, b6989586621679904305, c6989586621679904306, d6989586621679904307, e6989586621679904308, f6989586621679904309)] -> Type) -> Type) -> Type) -> *) (Zip6Sym2 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym2 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) t -> () #

SuppressUnusedWarnings ([a6989586621679904304] -> TyFun [b6989586621679904305] (TyFun [c6989586621679904306] (TyFun [d6989586621679904307] (TyFun [e6989586621679904308] (TyFun [f6989586621679904309] [(a6989586621679904304, b6989586621679904305, c6989586621679904306, d6989586621679904307, e6989586621679904308, f6989586621679904309)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip6Sym1 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym1 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> *) (Tuple6Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> *) (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> *) (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> *) (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679904286 (TyFun b6989586621679904287 (TyFun c6989586621679904288 (TyFun d6989586621679904289 (TyFun e6989586621679904290 f6989586621679904291 -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679904286] (TyFun [b6989586621679904287] (TyFun [c6989586621679904288] (TyFun [d6989586621679904289] (TyFun [e6989586621679904290] [f6989586621679904291] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith5Sym0 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith5Sym0 a6989586621679904286 b6989586621679904287 c6989586621679904288 d6989586621679904289 e6989586621679904290 f6989586621679904291) t -> () #

SuppressUnusedWarnings (TyFun [(a6989586621679475590, b6989586621679475591, c6989586621679475592, d6989586621679475593, e6989586621679475594, f6989586621679475595)] ([a6989586621679475590], [b6989586621679475591], [c6989586621679475592], [d6989586621679475593], [e6989586621679475594], [f6989586621679475595]) -> *) (Unzip6Sym0 a6989586621679475590 b6989586621679475591 c6989586621679475592 d6989586621679475593 e6989586621679475594 f6989586621679475595) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip6Sym0 a6989586621679475590 b6989586621679475591 c6989586621679475592 d6989586621679475593 e6989586621679475594 f6989586621679475595) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679904304] (TyFun [b6989586621679904305] (TyFun [c6989586621679904306] (TyFun [d6989586621679904307] (TyFun [e6989586621679904308] (TyFun [f6989586621679904309] [(a6989586621679904304, b6989586621679904305, c6989586621679904306, d6989586621679904307, e6989586621679904308, f6989586621679904309)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip6Sym0 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) # 

Methods

suppressUnusedWarnings :: Proxy (Zip6Sym0 a6989586621679904304 b6989586621679904305 c6989586621679904306 d6989586621679904307 e6989586621679904308 f6989586621679904309) t -> () #

SuppressUnusedWarnings (TyFun a3530822107858468865 (TyFun b3530822107858468866 (TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple6Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904279 (TyFun b6989586621679904280 (TyFun c6989586621679904281 (TyFun d6989586621679904282 (TyFun e6989586621679904283 (TyFun f6989586621679904284 g6989586621679904285 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679904279] (TyFun [b6989586621679904280] (TyFun [c6989586621679904281] (TyFun [d6989586621679904282] (TyFun [e6989586621679904283] (TyFun [f6989586621679904284] [g6989586621679904285] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym1 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym1 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904279 (TyFun b6989586621679904280 (TyFun c6989586621679904281 (TyFun d6989586621679904282 (TyFun e6989586621679904283 (TyFun f6989586621679904284 g6989586621679904285 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904279] -> TyFun [b6989586621679904280] (TyFun [c6989586621679904281] (TyFun [d6989586621679904282] (TyFun [e6989586621679904283] (TyFun [f6989586621679904284] [g6989586621679904285] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym2 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym2 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904279 (TyFun b6989586621679904280 (TyFun c6989586621679904281 (TyFun d6989586621679904282 (TyFun e6989586621679904283 (TyFun f6989586621679904284 g6989586621679904285 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904279] -> [b6989586621679904280] -> TyFun [c6989586621679904281] (TyFun [d6989586621679904282] (TyFun [e6989586621679904283] (TyFun [f6989586621679904284] [g6989586621679904285] -> Type) -> Type) -> Type) -> *) (ZipWith6Sym3 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym3 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904279 (TyFun b6989586621679904280 (TyFun c6989586621679904281 (TyFun d6989586621679904282 (TyFun e6989586621679904283 (TyFun f6989586621679904284 g6989586621679904285 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904279] -> [b6989586621679904280] -> [c6989586621679904281] -> TyFun [d6989586621679904282] (TyFun [e6989586621679904283] (TyFun [f6989586621679904284] [g6989586621679904285] -> Type) -> Type) -> *) (ZipWith6Sym4 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym4 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904279 (TyFun b6989586621679904280 (TyFun c6989586621679904281 (TyFun d6989586621679904282 (TyFun e6989586621679904283 (TyFun f6989586621679904284 g6989586621679904285 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904279] -> [b6989586621679904280] -> [c6989586621679904281] -> [d6989586621679904282] -> TyFun [e6989586621679904283] (TyFun [f6989586621679904284] [g6989586621679904285] -> Type) -> *) (ZipWith6Sym5 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym5 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904279 (TyFun b6989586621679904280 (TyFun c6989586621679904281 (TyFun d6989586621679904282 (TyFun e6989586621679904283 (TyFun f6989586621679904284 g6989586621679904285 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904279] -> [b6989586621679904280] -> [c6989586621679904281] -> [d6989586621679904282] -> [e6989586621679904283] -> TyFun [f6989586621679904284] [g6989586621679904285] -> *) (ZipWith6Sym6 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym6 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) t -> () #

SuppressUnusedWarnings ([a6989586621679904297] -> [b6989586621679904298] -> [c6989586621679904299] -> [d6989586621679904300] -> [e6989586621679904301] -> [f6989586621679904302] -> TyFun [g6989586621679904303] [(a6989586621679904297, b6989586621679904298, c6989586621679904299, d6989586621679904300, e6989586621679904301, f6989586621679904302, g6989586621679904303)] -> *) (Zip7Sym6 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym6 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) t -> () #

SuppressUnusedWarnings ([a6989586621679904297] -> [b6989586621679904298] -> [c6989586621679904299] -> [d6989586621679904300] -> [e6989586621679904301] -> TyFun [f6989586621679904302] (TyFun [g6989586621679904303] [(a6989586621679904297, b6989586621679904298, c6989586621679904299, d6989586621679904300, e6989586621679904301, f6989586621679904302, g6989586621679904303)] -> Type) -> *) (Zip7Sym5 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym5 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) t -> () #

SuppressUnusedWarnings ([a6989586621679904297] -> [b6989586621679904298] -> [c6989586621679904299] -> [d6989586621679904300] -> TyFun [e6989586621679904301] (TyFun [f6989586621679904302] (TyFun [g6989586621679904303] [(a6989586621679904297, b6989586621679904298, c6989586621679904299, d6989586621679904300, e6989586621679904301, f6989586621679904302, g6989586621679904303)] -> Type) -> Type) -> *) (Zip7Sym4 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym4 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) t -> () #

SuppressUnusedWarnings ([a6989586621679904297] -> [b6989586621679904298] -> [c6989586621679904299] -> TyFun [d6989586621679904300] (TyFun [e6989586621679904301] (TyFun [f6989586621679904302] (TyFun [g6989586621679904303] [(a6989586621679904297, b6989586621679904298, c6989586621679904299, d6989586621679904300, e6989586621679904301, f6989586621679904302, g6989586621679904303)] -> Type) -> Type) -> Type) -> *) (Zip7Sym3 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym3 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) t -> () #

SuppressUnusedWarnings ([a6989586621679904297] -> [b6989586621679904298] -> TyFun [c6989586621679904299] (TyFun [d6989586621679904300] (TyFun [e6989586621679904301] (TyFun [f6989586621679904302] (TyFun [g6989586621679904303] [(a6989586621679904297, b6989586621679904298, c6989586621679904299, d6989586621679904300, e6989586621679904301, f6989586621679904302, g6989586621679904303)] -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym2 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym2 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) t -> () #

SuppressUnusedWarnings ([a6989586621679904297] -> TyFun [b6989586621679904298] (TyFun [c6989586621679904299] (TyFun [d6989586621679904300] (TyFun [e6989586621679904301] (TyFun [f6989586621679904302] (TyFun [g6989586621679904303] [(a6989586621679904297, b6989586621679904298, c6989586621679904299, d6989586621679904300, e6989586621679904301, f6989586621679904302, g6989586621679904303)] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym1 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym1 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> f3530822107858468870 -> TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> *) (Tuple7Sym6 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym6 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> e3530822107858468869 -> TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> *) (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym5 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> d3530822107858468868 -> TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> *) (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym4 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> c3530822107858468867 -> TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> *) (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym3 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

SuppressUnusedWarnings (a3530822107858468865 -> b3530822107858468866 -> TyFun c3530822107858468867 (TyFun d3530822107858468868 (TyFun e3530822107858468869 (TyFun f3530822107858468870 (TyFun g3530822107858468871 (a3530822107858468865, b3530822107858468866, c3530822107858468867, d3530822107858468868, e3530822107858468869, f3530822107858468870, g3530822107858468871) -> Type) -> Type) -> Type) -> Type) -> *) (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym2 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

SuppressUnusedWarnings (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) -> *) (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym1 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679904279 (TyFun b6989586621679904280 (TyFun c6989586621679904281 (TyFun d6989586621679904282 (TyFun e6989586621679904283 (TyFun f6989586621679904284 g6989586621679904285 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679904279] (TyFun [b6989586621679904280] (TyFun [c6989586621679904281] (TyFun [d6989586621679904282] (TyFun [e6989586621679904283] (TyFun [f6989586621679904284] [g6989586621679904285] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith6Sym0 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith6Sym0 a6989586621679904279 b6989586621679904280 c6989586621679904281 d6989586621679904282 e6989586621679904283 f6989586621679904284 g6989586621679904285) t -> () #

SuppressUnusedWarnings (TyFun [(a6989586621679475583, b6989586621679475584, c6989586621679475585, d6989586621679475586, e6989586621679475587, f6989586621679475588, g6989586621679475589)] ([a6989586621679475583], [b6989586621679475584], [c6989586621679475585], [d6989586621679475586], [e6989586621679475587], [f6989586621679475588], [g6989586621679475589]) -> *) (Unzip7Sym0 a6989586621679475583 b6989586621679475584 c6989586621679475585 d6989586621679475586 e6989586621679475587 f6989586621679475588 g6989586621679475589) # 

Methods

suppressUnusedWarnings :: Proxy (Unzip7Sym0 a6989586621679475583 b6989586621679475584 c6989586621679475585 d6989586621679475586 e6989586621679475587 f6989586621679475588 g6989586621679475589) t -> () #

SuppressUnusedWarnings (TyFun [a6989586621679904297] (TyFun [b6989586621679904298] (TyFun [c6989586621679904299] (TyFun [d6989586621679904300] (TyFun [e6989586621679904301] (TyFun [f6989586621679904302] (TyFun [g6989586621679904303] [(a6989586621679904297, b6989586621679904298, c6989586621679904299, d6989586621679904300, e6989586621679904301, f6989586621679904302, g6989586621679904303)] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (Zip7Sym0 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) # 

Methods

suppressUnusedWarnings :: Proxy (Zip7Sym0 a6989586621679904297 b6989586621679904298 c6989586621679904299 d6989586621679904300 e6989586621679904301 f6989586621679904302 g6989586621679904303) t -> () #

SuppressUnusedWarnings (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) -> *) (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) # 

Methods

suppressUnusedWarnings :: Proxy (Tuple7Sym0 a3530822107858468865 b3530822107858468866 c3530822107858468867 d3530822107858468868 e3530822107858468869 f3530822107858468870 g3530822107858468871) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904271 (TyFun b6989586621679904272 (TyFun c6989586621679904273 (TyFun d6989586621679904274 (TyFun e6989586621679904275 (TyFun f6989586621679904276 (TyFun g6989586621679904277 h6989586621679904278 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> TyFun [a6989586621679904271] (TyFun [b6989586621679904272] (TyFun [c6989586621679904273] (TyFun [d6989586621679904274] (TyFun [e6989586621679904275] (TyFun [f6989586621679904276] (TyFun [g6989586621679904277] [h6989586621679904278] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym1 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym1 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904271 (TyFun b6989586621679904272 (TyFun c6989586621679904273 (TyFun d6989586621679904274 (TyFun e6989586621679904275 (TyFun f6989586621679904276 (TyFun g6989586621679904277 h6989586621679904278 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904271] -> TyFun [b6989586621679904272] (TyFun [c6989586621679904273] (TyFun [d6989586621679904274] (TyFun [e6989586621679904275] (TyFun [f6989586621679904276] (TyFun [g6989586621679904277] [h6989586621679904278] -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym2 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym2 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904271 (TyFun b6989586621679904272 (TyFun c6989586621679904273 (TyFun d6989586621679904274 (TyFun e6989586621679904275 (TyFun f6989586621679904276 (TyFun g6989586621679904277 h6989586621679904278 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904271] -> [b6989586621679904272] -> TyFun [c6989586621679904273] (TyFun [d6989586621679904274] (TyFun [e6989586621679904275] (TyFun [f6989586621679904276] (TyFun [g6989586621679904277] [h6989586621679904278] -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym3 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym3 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904271 (TyFun b6989586621679904272 (TyFun c6989586621679904273 (TyFun d6989586621679904274 (TyFun e6989586621679904275 (TyFun f6989586621679904276 (TyFun g6989586621679904277 h6989586621679904278 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904271] -> [b6989586621679904272] -> [c6989586621679904273] -> TyFun [d6989586621679904274] (TyFun [e6989586621679904275] (TyFun [f6989586621679904276] (TyFun [g6989586621679904277] [h6989586621679904278] -> Type) -> Type) -> Type) -> *) (ZipWith7Sym4 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym4 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904271 (TyFun b6989586621679904272 (TyFun c6989586621679904273 (TyFun d6989586621679904274 (TyFun e6989586621679904275 (TyFun f6989586621679904276 (TyFun g6989586621679904277 h6989586621679904278 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904271] -> [b6989586621679904272] -> [c6989586621679904273] -> [d6989586621679904274] -> TyFun [e6989586621679904275] (TyFun [f6989586621679904276] (TyFun [g6989586621679904277] [h6989586621679904278] -> Type) -> Type) -> *) (ZipWith7Sym5 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym5 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904271 (TyFun b6989586621679904272 (TyFun c6989586621679904273 (TyFun d6989586621679904274 (TyFun e6989586621679904275 (TyFun f6989586621679904276 (TyFun g6989586621679904277 h6989586621679904278 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904271] -> [b6989586621679904272] -> [c6989586621679904273] -> [d6989586621679904274] -> [e6989586621679904275] -> TyFun [f6989586621679904276] (TyFun [g6989586621679904277] [h6989586621679904278] -> Type) -> *) (ZipWith7Sym6 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym6 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) t -> () #

SuppressUnusedWarnings ((TyFun a6989586621679904271 (TyFun b6989586621679904272 (TyFun c6989586621679904273 (TyFun d6989586621679904274 (TyFun e6989586621679904275 (TyFun f6989586621679904276 (TyFun g6989586621679904277 h6989586621679904278 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> [a6989586621679904271] -> [b6989586621679904272] -> [c6989586621679904273] -> [d6989586621679904274] -> [e6989586621679904275] -> [f6989586621679904276] -> TyFun [g6989586621679904277] [h6989586621679904278] -> *) (ZipWith7Sym7 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym7 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) t -> () #

SuppressUnusedWarnings (TyFun (TyFun a6989586621679904271 (TyFun b6989586621679904272 (TyFun c6989586621679904273 (TyFun d6989586621679904274 (TyFun e6989586621679904275 (TyFun f6989586621679904276 (TyFun g6989586621679904277 h6989586621679904278 -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) (TyFun [a6989586621679904271] (TyFun [b6989586621679904272] (TyFun [c6989586621679904273] (TyFun [d6989586621679904274] (TyFun [e6989586621679904275] (TyFun [f6989586621679904276] (TyFun [g6989586621679904277] [h6989586621679904278] -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> Type) -> *) (ZipWith7Sym0 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) # 

Methods

suppressUnusedWarnings :: Proxy (ZipWith7Sym0 a6989586621679904271 b6989586621679904272 c6989586621679904273 d6989586621679904274 e6989586621679904275 f6989586621679904276 g6989586621679904277 h6989586621679904278) t -> () #