| Copyright | (C) 2015-2017 Ryan Scott |
|---|---|
| License | BSD-style (see the file LICENSE) |
| Maintainer | Ryan Scott |
| Portability | Template Haskell |
| Safe Haskell | None |
| Language | Haskell2010 |
Data.Deriving.Internal
Description
Template Haskell-related utilities.
Note: this is an internal module, and as such, the API presented here is not guaranteed to be stable, even between minor releases of this library.
Synopsis
- applySubstitutionKind :: Map Name Kind -> Type -> Type
- substNameWithKind :: Name -> Kind -> Type -> Type
- substNamesWithKindStar :: [Name] -> Type -> Type
- data Via a b
- fmapConst :: f b -> (a -> b) -> f a -> f b
- foldrConst :: b -> (a -> b -> b) -> b -> t a -> b
- foldMapConst :: m -> (a -> m) -> t a -> m
- traverseConst :: f (t b) -> (a -> f b) -> t a -> f (t b)
- eqConst :: Bool -> a -> a -> Bool
- eq1Const :: Bool -> f a -> f a -> Bool
- liftEqConst :: Bool -> (a -> b -> Bool) -> f a -> f b -> Bool
- liftEq2Const :: Bool -> (a -> b -> Bool) -> (c -> d -> Bool) -> f a c -> f b d -> Bool
- compareConst :: Ordering -> a -> a -> Ordering
- ltConst :: Bool -> a -> a -> Bool
- compare1Const :: Ordering -> f a -> f a -> Ordering
- liftCompareConst :: Ordering -> (a -> b -> Ordering) -> f a -> f b -> Ordering
- liftCompare2Const :: Ordering -> (a -> b -> Ordering) -> (c -> d -> Ordering) -> f a c -> f b d -> Ordering
- readsPrecConst :: ReadS a -> Int -> ReadS a
- readPrecConst :: ReadPrec a -> ReadPrec a
- readsPrec1Const :: ReadS (f a) -> Int -> ReadS (f a)
- liftReadsPrecConst :: ReadS (f a) -> (Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (f a)
- liftReadPrecConst :: ReadPrec (f a) -> ReadPrec a -> ReadPrec [a] -> ReadPrec (f a)
- liftReadsPrec2Const :: ReadS (f a b) -> (Int -> ReadS a) -> ReadS [a] -> (Int -> ReadS b) -> ReadS [b] -> Int -> ReadS (f a b)
- liftReadPrec2Const :: ReadPrec (f a b) -> ReadPrec a -> ReadPrec [a] -> ReadPrec b -> ReadPrec [b] -> ReadPrec (f a b)
- showsPrecConst :: ShowS -> Int -> a -> ShowS
- showsPrec1Const :: ShowS -> Int -> f a -> ShowS
- liftShowsPrecConst :: ShowS -> (Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> f a -> ShowS
- liftShowsPrec2Const :: ShowS -> (Int -> a -> ShowS) -> ([a] -> ShowS) -> (Int -> b -> ShowS) -> ([b] -> ShowS) -> Int -> f a b -> ShowS
- data StarKindStatus
- canRealizeKindStar :: Type -> StarKindStatus
- starKindStatusToName :: StarKindStatus -> Maybe Name
- catKindVarNames :: [StarKindStatus] -> [Name]
- class ClassRep a where
- arity :: a -> Int
- allowExQuant :: a -> Bool
- fullClassName :: a -> Name
- classConstraint :: a -> Int -> Maybe Name
- buildTypeInstance :: ClassRep a => a -> Name -> Cxt -> [Type] -> DatatypeVariant -> Q (Cxt, Type)
- deriveConstraint :: ClassRep a => a -> Type -> (Maybe Pred, [Name])
- checkExistentialContext :: ClassRep a => a -> TyVarMap b -> Cxt -> Name -> Q c -> Q c
- noConstructorsError :: Q a
- derivingKindError :: ClassRep a => a -> Name -> Q b
- contravarianceError :: Name -> Q a
- noFunctionsError :: Name -> Q a
- etaReductionError :: Type -> Q a
- datatypeContextError :: Name -> Type -> Q a
- existentialContextError :: Name -> Q a
- outOfPlaceTyVarError :: ClassRep a => a -> Name -> Q b
- enumerationError :: String -> Q a
- enumerationOrProductError :: String -> Q a
- enumerationErrorStr :: String -> String
- type TyVarMap a = Map Name (OneOrTwoNames a)
- type TyVarMap1 = TyVarMap One
- type TyVarMap2 = TyVarMap Two
- data OneOrTwoNames a where
- OneName :: Name -> OneOrTwoNames One
- TwoNames :: Name -> Name -> OneOrTwoNames Two
- data One
- data Two
- interleave :: [a] -> [a] -> [a]
- isTrue# :: Int# -> Bool
- isRight :: Either l r -> Bool
- fromEither :: Either a a -> a
- filterByList :: [Bool] -> [a] -> [a]
- filterByLists :: [Bool] -> [a] -> [a] -> [a]
- partitionByList :: [Bool] -> [a] -> ([a], [a])
- appEitherE :: Q (Either Exp Exp) -> Q Exp -> Q (Either Exp Exp)
- integerE :: Int -> Q Exp
- hasKindStar :: Type -> Bool
- isStarOrVar :: Kind -> Bool
- hasKindVarChain :: Int -> Type -> Maybe [Name]
- tyKind :: Type -> Kind
- zipWithAndUnzipM :: Monad m => (a -> b -> m (c, d)) -> [a] -> [b] -> m ([c], [d])
- zipWith3AndUnzipM :: Monad m => (a -> b -> c -> m (d, e)) -> [a] -> [b] -> [c] -> m ([d], [e])
- thd3 :: (a, b, c) -> c
- unsnoc :: [a] -> Maybe ([a], a)
- isNullaryCon :: ConstructorInfo -> Bool
- conArity :: ConstructorInfo -> Int
- isProductType :: [ConstructorInfo] -> Bool
- isEnumerationType :: [ConstructorInfo] -> Bool
- isVanillaCon :: ConstructorInfo -> Bool
- newNameList :: String -> Int -> Q [Name]
- tvbKind :: TyVarBndr -> Kind
- tvbToType :: TyVarBndr -> Type
- applyClass :: Name -> Name -> Pred
- createKindChain :: Int -> Kind
- canEtaReduce :: [Type] -> [Type] -> Bool
- conTToName :: Type -> Name
- varTToName_maybe :: Type -> Maybe Name
- varTToName :: Type -> Name
- unSigT :: Type -> Type
- isTyVar :: Type -> Bool
- isTyFamily :: Type -> Q Bool
- allDistinct :: Ord a => [a] -> Bool
- mentionsName :: Type -> [Name] -> Bool
- predMentionsName :: Pred -> [Name] -> Bool
- applyTy :: Type -> [Type] -> Type
- applyTyCon :: Name -> [Type] -> Type
- unapplyTy :: Type -> [Type]
- uncurryTy :: Type -> (Cxt, [Type])
- uncurryKind :: Kind -> [Kind]
- untagExpr :: [(Name, Name)] -> Q Exp -> Q Exp
- tag2ConExpr :: Type -> Q Exp
- removeClassApp :: Type -> Type
- freshen :: Name -> Q Name
- freshenType :: Type -> Q Type
- requiredTyVarsOfType :: Type -> [TyVarBndr]
- enumFromToExpr :: Q Exp -> Q Exp -> Q Exp
- primOpAppExpr :: Q Exp -> Name -> Q Exp -> Q Exp
- isNonUnitTuple :: Name -> Bool
- isNonUnitTupleString :: String -> Bool
- isInfixDataCon :: String -> Bool
- isSym :: String -> Bool
- ghc7'8OrLater :: Bool
- derivingCompatPackageKey :: String
- mkDerivingCompatName_v :: String -> Name
- mkDerivingCompatName_tc :: String -> Name
- isTrueHashValName :: Name
- fmapConstValName :: Name
- foldrConstValName :: Name
- foldMapConstValName :: Name
- traverseConstValName :: Name
- eqConstValName :: Name
- eq1ConstValName :: Name
- liftEqConstValName :: Name
- liftEq2ConstValName :: Name
- compareConstValName :: Name
- ltConstValName :: Name
- compare1ConstValName :: Name
- liftCompareConstValName :: Name
- liftCompare2ConstValName :: Name
- readsPrecConstValName :: Name
- readPrecConstValName :: Name
- readsPrec1ConstValName :: Name
- liftReadsPrecConstValName :: Name
- liftReadPrecConstValName :: Name
- liftReadsPrec2ConstValName :: Name
- liftReadPrec2ConstValName :: Name
- showsPrecConstValName :: Name
- showsPrec1ConstValName :: Name
- liftShowsPrecConstValName :: Name
- liftShowsPrec2ConstValName :: Name
- viaTypeName :: Name
- cHashDataName :: Name
- dHashDataName :: Name
- fHashDataName :: Name
- identDataName :: Name
- iHashDataName :: Name
- puncDataName :: Name
- symbolDataName :: Name
- wrapMonadDataName :: Name
- addrHashTypeName :: Name
- boundedTypeName :: Name
- charHashTypeName :: Name
- doubleHashTypeName :: Name
- enumTypeName :: Name
- floatHashTypeName :: Name
- foldableTypeName :: Name
- functorTypeName :: Name
- intTypeName :: Name
- intHashTypeName :: Name
- ixTypeName :: Name
- readTypeName :: Name
- showTypeName :: Name
- traversableTypeName :: Name
- wordHashTypeName :: Name
- altValName :: Name
- appendValName :: Name
- chooseValName :: Name
- coerceValName :: Name
- composeValName :: Name
- constValName :: Name
- enumFromValName :: Name
- enumFromThenValName :: Name
- enumFromThenToValName :: Name
- enumFromToValName :: Name
- eqAddrHashValName :: Name
- eqCharHashValName :: Name
- eqDoubleHashValName :: Name
- eqFloatHashValName :: Name
- eqIntHashValName :: Name
- eqWordHashValName :: Name
- errorValName :: Name
- flipValName :: Name
- fmapValName :: Name
- foldrValName :: Name
- foldMapValName :: Name
- fromEnumValName :: Name
- geAddrHashValName :: Name
- geCharHashValName :: Name
- geDoubleHashValName :: Name
- geFloatHashValName :: Name
- geIntHashValName :: Name
- getTagValName :: Name
- geWordHashValName :: Name
- gtAddrHashValName :: Name
- gtCharHashValName :: Name
- gtDoubleHashValName :: Name
- gtFloatHashValName :: Name
- gtIntHashValName :: Name
- gtWordHashValName :: Name
- idValName :: Name
- indexValName :: Name
- inRangeValName :: Name
- leAddrHashValName :: Name
- leCharHashValName :: Name
- leDoubleHashValName :: Name
- leFloatHashValName :: Name
- leIntHashValName :: Name
- leWordHashValName :: Name
- liftReadListPrecDefaultValName :: Name
- liftReadListPrec2DefaultValName :: Name
- liftReadListPrecValName :: Name
- liftReadListPrec2ValName :: Name
- liftReadPrecValName :: Name
- liftReadPrec2ValName :: Name
- listValName :: Name
- ltAddrHashValName :: Name
- ltCharHashValName :: Name
- ltDoubleHashValName :: Name
- ltFloatHashValName :: Name
- ltIntHashValName :: Name
- ltWordHashValName :: Name
- minBoundValName :: Name
- mapValName :: Name
- maxBoundValName :: Name
- minusIntHashValName :: Name
- parenValName :: Name
- parensValName :: Name
- pfailValName :: Name
- plusValName :: Name
- precValName :: Name
- predValName :: Name
- rangeSizeValName :: Name
- rangeValName :: Name
- readFieldHash :: String -> ReadPrec a -> ReadPrec a
- readFieldHashValName :: Name
- readListValName :: Name
- readListPrecDefaultValName :: Name
- readListPrecValName :: Name
- readPrec_to_SValName :: Name
- readPrecValName :: Name
- readS_to_PrecValName :: Name
- readsPrecValName :: Name
- resetValName :: Name
- returnValName :: Name
- seqValName :: Name
- showCharValName :: Name
- showListValName :: Name
- showListWithValName :: Name
- showParenValName :: Name
- showsPrecValName :: Name
- showSpaceValName :: Name
- showStringValName :: Name
- stepValName :: Name
- succValName :: Name
- tagToEnumHashValName :: Name
- timesValName :: Name
- toEnumValName :: Name
- traverseValName :: Name
- unsafeIndexValName :: Name
- unsafeRangeSizeValName :: Name
- unwrapMonadValName :: Name
- boolTypeName :: Name
- falseDataName :: Name
- trueDataName :: Name
- eqDataName :: Name
- gtDataName :: Name
- ltDataName :: Name
- eqTypeName :: Name
- ordTypeName :: Name
- andValName :: Name
- compareValName :: Name
- eqValName :: Name
- geValName :: Name
- gtValName :: Name
- leValName :: Name
- ltValName :: Name
- notValName :: Name
- wHashDataName :: Name
- expectPValName :: Name
- pureValName :: Name
- apValName :: Name
- liftA2ValName :: Name
- mappendValName :: Name
- memptyValName :: Name
- eq1TypeName :: Name
- eq2TypeName :: Name
- liftEqValName :: Name
- liftEq2ValName :: Name
- ord1TypeName :: Name
- ord2TypeName :: Name
- liftCompareValName :: Name
- liftCompare2ValName :: Name
- read1TypeName :: Name
- read2TypeName :: Name
- liftReadsPrecValName :: Name
- liftReadListValName :: Name
- liftReadsPrec2ValName :: Name
- liftReadList2ValName :: Name
- show1TypeName :: Name
- show2TypeName :: Name
- liftShowListValName :: Name
- liftShowsPrecValName :: Name
- liftShowList2ValName :: Name
- liftShowsPrec2ValName :: Name
- showCommaSpaceValName :: Name
- appEndoValName :: Name
- dualDataName :: Name
- endoDataName :: Name
- getDualValName :: Name
- readFieldValName :: Name
- readSymFieldValName :: Name
Documentation
substNamesWithKindStar :: [Name] -> Type -> Type #
A type-level modifier intended to be used in conjunction with deriveVia.
Refer to the documentation for deriveVia for more details.
foldrConst :: b -> (a -> b -> b) -> b -> t a -> b #
foldMapConst :: m -> (a -> m) -> t a -> m #
traverseConst :: f (t b) -> (a -> f b) -> t a -> f (t b) #
liftEqConst :: Bool -> (a -> b -> Bool) -> f a -> f b -> Bool #
compareConst :: Ordering -> a -> a -> Ordering #
compare1Const :: Ordering -> f a -> f a -> Ordering #
liftCompareConst :: Ordering -> (a -> b -> Ordering) -> f a -> f b -> Ordering #
liftCompare2Const :: Ordering -> (a -> b -> Ordering) -> (c -> d -> Ordering) -> f a c -> f b d -> Ordering #
readsPrecConst :: ReadS a -> Int -> ReadS a #
readPrecConst :: ReadPrec a -> ReadPrec a #
readsPrec1Const :: ReadS (f a) -> Int -> ReadS (f a) #
liftReadsPrec2Const :: ReadS (f a b) -> (Int -> ReadS a) -> ReadS [a] -> (Int -> ReadS b) -> ReadS [b] -> Int -> ReadS (f a b) #
liftReadPrec2Const :: ReadPrec (f a b) -> ReadPrec a -> ReadPrec [a] -> ReadPrec b -> ReadPrec [b] -> ReadPrec (f a b) #
showsPrecConst :: ShowS -> Int -> a -> ShowS #
showsPrec1Const :: ShowS -> Int -> f a -> ShowS #
liftShowsPrec2Const :: ShowS -> (Int -> a -> ShowS) -> ([a] -> ShowS) -> (Int -> b -> ShowS) -> ([b] -> ShowS) -> Int -> f a b -> ShowS #
data StarKindStatus #
Whether a type is not of kind *, is of kind *, or is a kind variable.
Constructors
| NotKindStar | |
| KindStar | |
| IsKindVar Name |
Instances
| Eq StarKindStatus # | |
Defined in Data.Deriving.Internal Methods (==) :: StarKindStatus -> StarKindStatus -> Bool # (/=) :: StarKindStatus -> StarKindStatus -> Bool # | |
canRealizeKindStar :: Type -> StarKindStatus #
Does a Type have kind * or k (for some kind variable k)?
starKindStatusToName :: StarKindStatus -> Maybe Name #
Returns Just the kind variable Name of a StarKindStatus if it exists.
Otherwise, returns Nothing.
catKindVarNames :: [StarKindStatus] -> [Name] #
Concat together all of the StarKindStatuses that are IsKindVar and extract the kind variables' Names out.
Methods
allowExQuant :: a -> Bool #
fullClassName :: a -> Name #
classConstraint :: a -> Int -> Maybe Name #
deriveConstraint :: ClassRep a => a -> Type -> (Maybe Pred, [Name]) #
Attempt to derive a constraint on a Type. If successful, return Just the constraint and any kind variable names constrained to *. Otherwise, return Nothing and the empty list.
See Note [Type inference in derived instances] for the heuristics used to come up with constraints.
noConstructorsError :: Q a #
The given datatype has no constructors, and we don't know what to do with it.
derivingKindError :: ClassRep a => a -> Name -> Q b #
Either the given data type doesn't have enough type variables, or one of the type variables to be eta-reduced cannot realize kind *.
contravarianceError :: Name -> Q a #
The last type variable appeared in a contravariant position when deriving Functor.
noFunctionsError :: Name -> Q a #
A constructor has a function argument in a derived Foldable or Traversable instance.
etaReductionError :: Type -> Q a #
One of the last type variables cannot be eta-reduced (see the canEtaReduce function for the criteria it would have to meet).
datatypeContextError :: Name -> Type -> Q a #
The data type has a DatatypeContext which mentions one of the eta-reduced type variables.
existentialContextError :: Name -> Q a #
The data type has an existential constraint which mentions one of the eta-reduced type variables.
outOfPlaceTyVarError :: ClassRep a => a -> Name -> Q b #
The data type mentions one of the n eta-reduced type variables in a place other than the last nth positions of a data type in a constructor's field.
enumerationError :: String -> Q a #
enumerationOrProductError :: String -> Q a #
enumerationErrorStr :: String -> String #
type TyVarMap a = Map Name (OneOrTwoNames a) #
A mapping of type variable Names to their auxiliary function Names.
data OneOrTwoNames a where #
Constructors
| OneName :: Name -> OneOrTwoNames One | |
| TwoNames :: Name -> Name -> OneOrTwoNames Two |
interleave :: [a] -> [a] -> [a] #
fromEither :: Either a a -> a #
Pull the value out of an Either where both alternatives
have the same type.
\x -> fromEither (Left x ) == x \x -> fromEither (Right x) == x
filterByList :: [Bool] -> [a] -> [a] #
filterByList takes a list of Bools and a list of some elements and
filters out these elements for which the corresponding value in the list of
Bools is False. This function does not check whether the lists have equal
length.
filterByLists :: [Bool] -> [a] -> [a] -> [a] #
filterByLists takes a list of Bools and two lists as input, and
outputs a new list consisting of elements from the last two input lists. For
each Bool in the list, if it is True, then it takes an element from the
former list. If it is False, it takes an element from the latter list.
The elements taken correspond to the index of the Bool in its list.
For example:
filterByLists [True, False, True, False] "abcd" "wxyz" = "axcz"
This function does not check whether the lists have equal length.
partitionByList :: [Bool] -> [a] -> ([a], [a]) #
partitionByList takes a list of Bools and a list of some elements and
partitions the list according to the list of Bools. Elements corresponding
to True go to the left; elements corresponding to False go to the right.
For example, partitionByList [True, False, True] [1,2,3] == ([1,3], [2])
This function does not check whether the lists have equal
length.
hasKindStar :: Type -> Bool #
Returns True if a Type has kind *.
isStarOrVar :: Kind -> Bool #
hasKindVarChain :: Int -> Type -> Maybe [Name] #
hasKindVarChain n kind Checks if kind is of the form
k_0 -> k_1 -> ... -> k_(n-1), where k0, k1, ..., and k_(n-1) can be * or
kind variables.
zipWithAndUnzipM :: Monad m => (a -> b -> m (c, d)) -> [a] -> [b] -> m ([c], [d]) #
zipWith3AndUnzipM :: Monad m => (a -> b -> c -> m (d, e)) -> [a] -> [b] -> [c] -> m ([d], [e]) #
isNullaryCon :: ConstructorInfo -> Bool #
conArity :: ConstructorInfo -> Int #
Returns the number of fields for the constructor.
isProductType :: [ConstructorInfo] -> Bool #
Returns True if it's a datatype with exactly one, non-existential constructor.
isEnumerationType :: [ConstructorInfo] -> Bool #
Returns True if it's a datatype with one or more nullary, non-GADT
constructors.
isVanillaCon :: ConstructorInfo -> Bool #
Returns False if we're dealing with existential quantification or GADTs.
newNameList :: String -> Int -> Q [Name] #
Generate a list of fresh names with a common prefix, and numbered suffixes.
applyClass :: Name -> Name -> Pred #
Applies a typeclass constraint to a type.
createKindChain :: Int -> Kind #
canEtaReduce :: [Type] -> [Type] -> Bool #
Checks to see if the last types in a data family instance can be safely eta- reduced (i.e., dropped), given the other types. This checks for three conditions:
- All of the dropped types are type variables
- All of the dropped types are distinct
- None of the remaining types mention any of the dropped types
conTToName :: Type -> Name #
Extract the Name from a type constructor. If the argument Type is not a type variable, throw an error.
varTToName_maybe :: Type -> Maybe Name #
Extract Just the Name from a type variable. If the argument Type is not a type variable, return Nothing.
varTToName :: Type -> Name #
Extract the Name from a type variable. If the argument Type is not a type variable, throw an error.
isTyFamily :: Type -> Q Bool #
Is the given type a type family constructor (and not a data family constructor)?
allDistinct :: Ord a => [a] -> Bool #
Are all of the items in a list (which have an ordering) distinct?
This uses Set (as opposed to nub) for better asymptotic time complexity.
mentionsName :: Type -> [Name] -> Bool #
Does the given type mention any of the Names in the list?
predMentionsName :: Pred -> [Name] -> Bool #
Does an instance predicate mention any of the Names in the list?
applyTyCon :: Name -> [Type] -> Type #
Fully applies a type constructor to its type variables.
Split an applied type into its individual components. For example, this:
Either Int Char
would split to this:
[Either, Int, Char]
uncurryTy :: Type -> (Cxt, [Type]) #
Split a type signature by the arrows on its spine. For example, this:
forall a b. (a ~ b) => (a -> b) -> Char -> ()
would split to this:
(a ~ b, [a -> b, Char, ()])
uncurryKind :: Kind -> [Kind] #
Like uncurryType, except on a kind level.
tag2ConExpr :: Type -> Q Exp #
removeClassApp :: Type -> Type #
freshenType :: Type -> Q Type #
requiredTyVarsOfType :: Type -> [TyVarBndr] #
Gets all of the required type variable binders mentioned in a Type.
isNonUnitTuple :: Name -> Bool #
Checks if a Name represents a tuple type constructor (other than '()')
isNonUnitTupleString :: String -> Bool #
Checks if a String represents a tuple (other than '()')
isInfixDataCon :: String -> Bool #
Checks if a String names a valid Haskell infix data constructor (i.e., does
it begin with a colon?).
ghc7'8OrLater :: Bool #
mkDerivingCompatName_v :: String -> Name #
mkDerivingCompatName_tc :: String -> Name #
eqConstValName :: Name #
eq1ConstValName :: Name #
ltConstValName :: Name #
viaTypeName :: Name #
cHashDataName :: Name #
dHashDataName :: Name #
fHashDataName :: Name #
identDataName :: Name #
iHashDataName :: Name #
puncDataName :: Name #
symbolDataName :: Name #
boundedTypeName :: Name #
enumTypeName :: Name #
functorTypeName :: Name #
intTypeName :: Name #
intHashTypeName :: Name #
ixTypeName :: Name #
readTypeName :: Name #
showTypeName :: Name #
altValName :: Name #
appendValName :: Name #
chooseValName :: Name #
coerceValName :: Name #
composeValName :: Name #
constValName :: Name #
enumFromValName :: Name #
errorValName :: Name #
flipValName :: Name #
fmapValName :: Name #
foldrValName :: Name #
foldMapValName :: Name #
fromEnumValName :: Name #
getTagValName :: Name #
indexValName :: Name #
inRangeValName :: Name #
listValName :: Name #
minBoundValName :: Name #
mapValName :: Name #
maxBoundValName :: Name #
parenValName :: Name #
parensValName :: Name #
pfailValName :: Name #
plusValName :: Name #
precValName :: Name #
predValName :: Name #
rangeValName :: Name #
readFieldHash :: String -> ReadPrec a -> ReadPrec a #
readListValName :: Name #
readPrecValName :: Name #
resetValName :: Name #
returnValName :: Name #
seqValName :: Name #
showCharValName :: Name #
showListValName :: Name #
stepValName :: Name #
succValName :: Name #
timesValName :: Name #
toEnumValName :: Name #
traverseValName :: Name #
boolTypeName :: Name #
falseDataName :: Name #
trueDataName :: Name #
eqDataName :: Name #
gtDataName :: Name #
ltDataName :: Name #
eqTypeName :: Name #
ordTypeName :: Name #
andValName :: Name #
compareValName :: Name #
notValName :: Name #
wHashDataName :: Name #
expectPValName :: Name #
pureValName :: Name #
liftA2ValName :: Name #
mappendValName :: Name #
memptyValName :: Name #
eq1TypeName :: Name #
eq2TypeName :: Name #
liftEqValName :: Name #
liftEq2ValName :: Name #
ord1TypeName :: Name #
ord2TypeName :: Name #
read1TypeName :: Name #
read2TypeName :: Name #
show1TypeName :: Name #
show2TypeName :: Name #
appEndoValName :: Name #
dualDataName :: Name #
endoDataName :: Name #
getDualValName :: Name #