base-4.10.1.0: Basic libraries

Copyright(c) Universiteit Utrecht 2010-2011 University of Oxford 2012-2014
Licensesee libraries/base/LICENSE
Maintainerlibraries@haskell.org
Stabilityinternal
Portabilitynon-portable
Safe HaskellTrustworthy
LanguageHaskell2010

GHC.Generics

Contents

Description

If you're using GHC.Generics, you should consider using the http://hackage.haskell.org/package/generic-deriving package, which contains many useful generic functions.

Since: 4.6.0.0

Synopsis

Introduction

Datatype-generic functions are based on the idea of converting values of a datatype T into corresponding values of a (nearly) isomorphic type Rep T. The type Rep T is built from a limited set of type constructors, all provided by this module. A datatype-generic function is then an overloaded function with instances for most of these type constructors, together with a wrapper that performs the mapping between T and Rep T. By using this technique, we merely need a few generic instances in order to implement functionality that works for any representable type.

Representable types are collected in the Generic class, which defines the associated type Rep as well as conversion functions from and to. Typically, you will not define Generic instances by hand, but have the compiler derive them for you.

Representing datatypes

The key to defining your own datatype-generic functions is to understand how to represent datatypes using the given set of type constructors.

Let us look at an example first:

data Tree a = Leaf a | Node (Tree a) (Tree a)
  deriving Generic

The above declaration (which requires the language pragma DeriveGeneric) causes the following representation to be generated:

instance Generic (Tree a) where
  type Rep (Tree a) =
    D1 ('MetaData "Tree" "Main" "package-name" 'False)
      (C1 ('MetaCons "Leaf" 'PrefixI 'False)
         (S1 ('MetaSel 'Nothing
                         'NoSourceUnpackedness
                         'NoSourceStrictness
                         'DecidedLazy)
                (Rec0 a))
       :+:
       C1 ('MetaCons "Node" 'PrefixI 'False)
         (S1 ('MetaSel 'Nothing
                         'NoSourceUnpackedness
                         'NoSourceStrictness
                         'DecidedLazy)
               (Rec0 (Tree a))
          :*:
          S1 ('MetaSel 'Nothing
                         'NoSourceUnpackedness
                         'NoSourceStrictness
                         'DecidedLazy)
               (Rec0 (Tree a))))
  ...

Hint: You can obtain information about the code being generated from GHC by passing the -ddump-deriv flag. In GHCi, you can expand a type family such as Rep using the :kind! command.

This is a lot of information! However, most of it is actually merely meta-information that makes names of datatypes and constructors and more available on the type level.

Here is a reduced representation for Tree with nearly all meta-information removed, for now keeping only the most essential aspects:

instance Generic (Tree a) where
  type Rep (Tree a) =
    Rec0 a
    :+:
    (Rec0 (Tree a) :*: Rec0 (Tree a))

The Tree datatype has two constructors. The representation of individual constructors is combined using the binary type constructor :+:.

The first constructor consists of a single field, which is the parameter a. This is represented as Rec0 a.

The second constructor consists of two fields. Each is a recursive field of type Tree a, represented as Rec0 (Tree a). Representations of individual fields are combined using the binary type constructor :*:.

Now let us explain the additional tags being used in the complete representation:

  • The S1 ('MetaSel 'Nothing 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) tag indicates several things. The 'Nothing indicates that there is no record field selector associated with this field of the constructor (if there were, it would have been marked 'Just "recordName" instead). The other types contain meta-information on the field's strictness:
  • There is no {-# UNPACK #-} or {-# NOUNPACK #-} annotation in the source, so it is tagged with 'NoSourceUnpackedness.
  • There is no strictness (!) or laziness (~) annotation in the source, so it is tagged with 'NoSourceStrictness.
  • The compiler infers that the field is lazy, so it is tagged with 'DecidedLazy. Bear in mind that what the compiler decides may be quite different from what is written in the source. See DecidedStrictness for a more detailed explanation.

The 'MetaSel type is also an instance of the type class Selector, which can be used to obtain information about the field at the value level.

  • The C1 ('MetaCons "Leaf" 'PrefixI 'False) and C1 ('MetaCons "Node" 'PrefixI 'False) invocations indicate that the enclosed part is the representation of the first and second constructor of datatype Tree, respectively. Here, the meta-information regarding constructor names, fixity and whether it has named fields or not is encoded at the type level. The 'MetaCons type is also an instance of the type class Constructor. This type class can be used to obtain information about the constructor at the value level.
  • The D1 ('MetaData "Tree" "Main" "package-name" 'False) tag indicates that the enclosed part is the representation of the datatype Tree. Again, the meta-information is encoded at the type level. The 'MetaData type is an instance of class Datatype, which can be used to obtain the name of a datatype, the module it has been defined in, the package it is located under, and whether it has been defined using data or newtype at the value level.

Derived and fundamental representation types

There are many datatype-generic functions that do not distinguish between positions that are parameters or positions that are recursive calls. There are also many datatype-generic functions that do not care about the names of datatypes and constructors at all. To keep the number of cases to consider in generic functions in such a situation to a minimum, it turns out that many of the type constructors introduced above are actually synonyms, defining them to be variants of a smaller set of constructors.

Individual fields of constructors: K1

The type constructor Rec0 is a variant of K1:

type Rec0 = K1 R

Here, R is a type-level proxy that does not have any associated values.

There used to be another variant of K1 (namely Par0), but it has since been deprecated.

Meta information: M1

The type constructors S1, C1 and D1 are all variants of M1:

type S1 = M1 S
type C1 = M1 C
type D1 = M1 D

The types S, C and D are once again type-level proxies, just used to create several variants of M1.

Additional generic representation type constructors

Next to K1, M1, :+: and :*: there are a few more type constructors that occur in the representations of other datatypes.

Empty datatypes: V1

For empty datatypes, V1 is used as a representation. For example,

data Empty deriving Generic

yields

instance Generic Empty where
  type Rep Empty =
    D1 ('MetaData "Empty" "Main" "package-name" 'False) V1

Constructors without fields: U1

If a constructor has no arguments, then U1 is used as its representation. For example the representation of Bool is

instance Generic Bool where
  type Rep Bool =
    D1 ('MetaData "Bool" "Data.Bool" "package-name" 'False)
      (C1 ('MetaCons "False" 'PrefixI 'False) U1 :+: C1 ('MetaCons "True" 'PrefixI 'False) U1)

Representation of types with many constructors or many fields

As :+: and :*: are just binary operators, one might ask what happens if the datatype has more than two constructors, or a constructor with more than two fields. The answer is simple: the operators are used several times, to combine all the constructors and fields as needed. However, users /should not rely on a specific nesting strategy/ for :+: and :*: being used. The compiler is free to choose any nesting it prefers. (In practice, the current implementation tries to produce a more or less balanced nesting, so that the traversal of the structure of the datatype from the root to a particular component can be performed in logarithmic rather than linear time.)

Defining datatype-generic functions

A datatype-generic function comprises two parts:

  1. Generic instances for the function, implementing it for most of the representation type constructors introduced above.
  2. A wrapper that for any datatype that is in Generic, performs the conversion between the original value and its Rep-based representation and then invokes the generic instances.

As an example, let us look at a function encode that produces a naive, but lossless bit encoding of values of various datatypes. So we are aiming to define a function

encode :: Generic a => a -> [Bool]

where we use Bool as our datatype for bits.

For part 1, we define a class Encode'. Perhaps surprisingly, this class is parameterized over a type constructor f of kind * -> *. This is a technicality: all the representation type constructors operate with kind * -> * as base kind. But the type argument is never being used. This may be changed at some point in the future. The class has a single method, and we use the type we want our final function to have, but we replace the occurrences of the generic type argument a with f p (where the p is any argument; it will not be used).

class Encode' f where
  encode' :: f p -> [Bool]

With the goal in mind to make encode work on Tree and other datatypes, we now define instances for the representation type constructors V1, U1, :+:, :*:, K1, and M1.

Definition of the generic representation types

In order to be able to do this, we need to know the actual definitions of these types:

data    V1        p                       -- lifted version of Empty
data    U1        p = U1                  -- lifted version of ()
data    (:+:) f g p = L1 (f p) | R1 (g p) -- lifted version of Either
data    (:*:) f g p = (f p) :*: (g p)     -- lifted version of (,)
newtype K1    i c p = K1 { unK1 :: c }    -- a container for a c
newtype M1  i t f p = M1 { unM1 :: f p }  -- a wrapper

So, U1 is just the unit type, :+: is just a binary choice like Either, :*: is a binary pair like the pair constructor (,), and K1 is a value of a specific type c, and M1 wraps a value of the generic type argument, which in the lifted world is an f p (where we do not care about p).

Generic instances

The instance for V1 is slightly awkward (but also rarely used):

instance Encode' V1 where
  encode' x = undefined

There are no values of type V1 p to pass (except undefined), so this is actually impossible. One can ask why it is useful to define an instance for V1 at all in this case? Well, an empty type can be used as an argument to a non-empty type, and you might still want to encode the resulting type. As a somewhat contrived example, consider [Empty], which is not an empty type, but contains just the empty list. The V1 instance ensures that we can call the generic function on such types.

There is exactly one value of type U1, so encoding it requires no knowledge, and we can use zero bits:

instance Encode' U1 where
  encode' U1 = []

In the case for :+:, we produce False or True depending on whether the constructor of the value provided is located on the left or on the right:

instance (Encode' f, Encode' g) => Encode' (f :+: g) where
  encode' (L1 x) = False : encode' x
  encode' (R1 x) = True  : encode' x

In the case for :*:, we append the encodings of the two subcomponents:

instance (Encode' f, Encode' g) => Encode' (f :*: g) where
  encode' (x :*: y) = encode' x ++ encode' y

The case for K1 is rather interesting. Here, we call the final function encode that we yet have to define, recursively. We will use another type class Encode for that function:

instance (Encode c) => Encode' (K1 i c) where
  encode' (K1 x) = encode x

Note how Par0 and Rec0 both being mapped to K1 allows us to define a uniform instance here.

Similarly, we can define a uniform instance for M1, because we completely disregard all meta-information:

instance (Encode' f) => Encode' (M1 i t f) where
  encode' (M1 x) = encode' x

Unlike in K1, the instance for M1 refers to encode', not encode.

The wrapper and generic default

We now define class Encode for the actual encode function:

class Encode a where
  encode :: a -> [Bool]
  default encode :: (Generic a, Encode' (Rep a)) => a -> [Bool]
  encode x = encode' (from x)

The incoming x is converted using from, then we dispatch to the generic instances using encode'. We use this as a default definition for encode. We need the 'default encode' signature because ordinary Haskell default methods must not introduce additional class constraints, but our generic default does.

Defining a particular instance is now as simple as saying

instance (Encode a) => Encode (Tree a)

Omitting generic instances

It is not always required to provide instances for all the generic representation types, but omitting instances restricts the set of datatypes the functions will work for:

  • If no :+: instance is given, the function may still work for empty datatypes or datatypes that have a single constructor, but will fail on datatypes with more than one constructor.
  • If no :*: instance is given, the function may still work for datatypes where each constructor has just zero or one field, in particular for enumeration types.
  • If no K1 instance is given, the function may still work for enumeration types, where no constructor has any fields.
  • If no V1 instance is given, the function may still work for any datatype that is not empty.
  • If no U1 instance is given, the function may still work for any datatype where each constructor has at least one field.

An M1 instance is always required (but it can just ignore the meta-information, as is the case for encode above).

Generic constructor classes

Datatype-generic functions as defined above work for a large class of datatypes, including parameterized datatypes. (We have used Tree as our example above, which is of kind * -> *.) However, the Generic class ranges over types of kind *, and therefore, the resulting generic functions (such as encode) must be parameterized by a generic type argument of kind *.

What if we want to define generic classes that range over type constructors (such as Functor, Traversable, or Foldable)?

The Generic1 class

Like Generic, there is a class Generic1 that defines a representation Rep1 and conversion functions from1 and to1, only that Generic1 ranges over types of kind * -> *. (More generally, it can range over types of kind k -> *, for any kind k, if the PolyKinds extension is enabled. More on this later.) The Generic1 class is also derivable.

The representation Rep1 is ever so slightly different from Rep. Let us look at Tree as an example again:

data Tree a = Leaf a | Node (Tree a) (Tree a)
  deriving Generic1

The above declaration causes the following representation to be generated:

instance Generic1 Tree where
  type Rep1 Tree =
    D1 ('MetaData "Tree" "Main" "package-name" 'False)
      (C1 ('MetaCons "Leaf" 'PrefixI 'False)
         (S1 ('MetaSel 'Nothing
                         'NoSourceUnpackedness
                         'NoSourceStrictness
                         'DecidedLazy)
               Par1)
       :+:
       C1 ('MetaCons "Node" 'PrefixI 'False)
         (S1 ('MetaSel 'Nothing
                         'NoSourceUnpackedness
                         'NoSourceStrictness
                         'DecidedLazy)
               (Rec1 Tree)
          :*:
          S1 ('MetaSel 'Nothing
                         'NoSourceUnpackedness
                         'NoSourceStrictness
                         'DecidedLazy)
               (Rec1 Tree)))
  ...

The representation reuses D1, C1, S1 (and thereby M1) as well as :+: and :*: from Rep. (This reusability is the reason that we carry around the dummy type argument for kind-*-types, but there are already enough different names involved without duplicating each of these.)

What's different is that we now use Par1 to refer to the parameter (and that parameter, which used to be a), is not mentioned explicitly by name anywhere; and we use Rec1 to refer to a recursive use of Tree a.

Representation of * -> * types

Unlike Rec0, the Par1 and Rec1 type constructors do not map to K1. They are defined directly, as follows:

newtype Par1   p = Par1 { unPar1 ::   p } -- gives access to parameter p
newtype Rec1 f p = Rec1 { unRec1 :: f p } -- a wrapper

In Par1, the parameter p is used for the first time, whereas Rec1 simply wraps an application of f to p.

Note that K1 (in the guise of Rec0) can still occur in a Rep1 representation, namely when the datatype has a field that does not mention the parameter.

The declaration

data WithInt a = WithInt Int a
  deriving Generic1

yields

instance Generic1 WithInt where
  type Rep1 WithInt =
    D1 ('MetaData "WithInt" "Main" "package-name" 'False)
      (C1 ('MetaCons "WithInt" 'PrefixI 'False)
        (S1 ('MetaSel 'Nothing
                        'NoSourceUnpackedness
                        'NoSourceStrictness
                        'DecidedLazy)
              (Rec0 Int)
         :*:
         S1 ('MetaSel 'Nothing
                         'NoSourceUnpackedness
                         'NoSourceStrictness
                         'DecidedLazy)
              Par1))

If the parameter a appears underneath a composition of other type constructors, then the representation involves composition, too:

data Rose a = Fork a [Rose a]

yields

instance Generic1 Rose where
  type Rep1 Rose =
    D1 ('MetaData "Rose" "Main" "package-name" 'False)
      (C1 ('MetaCons "Fork" 'PrefixI 'False)
        (S1 ('MetaSel 'Nothing
                        'NoSourceUnpackedness
                        'NoSourceStrictness
                        'DecidedLazy)
              Par1
         :*:
         S1 ('MetaSel 'Nothing
                         'NoSourceUnpackedness
                         'NoSourceStrictness
                         'DecidedLazy)
              ([] :.: Rec1 Rose)))

where

newtype (:.:) f g p = Comp1 { unComp1 :: f (g p) }

Representation of k -> * types

The Generic1 class can be generalized to range over types of kind k -> *, for any kind k. To do so, derive a Generic1 instance with the PolyKinds extension enabled. For example, the declaration

data Proxy (a :: k) = Proxy deriving Generic1

yields a slightly different instance depending on whether PolyKinds is enabled. If compiled without PolyKinds, then Rep1 Proxy :: * -> *, but if compiled with PolyKinds, then Rep1 Proxy :: k -> *.

Representation of unlifted types

If one were to attempt to derive a Generic instance for a datatype with an unlifted argument (for example, Int#), one might expect the occurrence of the Int# argument to be marked with Rec0 Int#. This won't work, though, since Int# is of an unlifted kind, and Rec0 expects a type of kind *.

One solution would be to represent an occurrence of Int# with 'Rec0 Int' instead. With this approach, however, the programmer has no way of knowing whether the Int is actually an Int# in disguise.

Instead of reusing Rec0, a separate data family URec is used to mark occurrences of common unlifted types:

data family URec a p

data instance URec (Ptr ()) p = UAddr   { uAddr#   :: Addr#   }
data instance URec Char     p = UChar   { uChar#   :: Char#   }
data instance URec Double   p = UDouble { uDouble# :: Double# }
data instance URec Int      p = UFloat  { uFloat#  :: Float#  }
data instance URec Float    p = UInt    { uInt#    :: Int#    }
data instance URec Word     p = UWord   { uWord#   :: Word#   }

Several type synonyms are provided for convenience:

type UAddr   = URec (Ptr ())
type UChar   = URec Char
type UDouble = URec Double
type UFloat  = URec Float
type UInt    = URec Int
type UWord   = URec Word

The declaration

data IntHash = IntHash Int#
  deriving Generic

yields

instance Generic IntHash where
  type Rep IntHash =
    D1 ('MetaData "IntHash" "Main" "package-name" 'False)
      (C1 ('MetaCons "IntHash" 'PrefixI 'False)
        (S1 ('MetaSel 'Nothing
                        'NoSourceUnpackedness
                        'NoSourceStrictness
                        'DecidedLazy)
              UInt))

Currently, only the six unlifted types listed above are generated, but this may be extended to encompass more unlifted types in the future.

Generic representation types

data V1 (p :: k) Source #

Void: used for datatypes without constructors

Instances

Generic1 k (V1 k) Source # 

Associated Types

type Rep1 (V1 k) (f :: V1 k -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (V1 k) f a Source #

to1 :: Rep1 (V1 k) f a -> f a Source #

Functor (V1 *) Source # 

Methods

fmap :: (a -> b) -> V1 * a -> V1 * b Source #

(<$) :: a -> V1 * b -> V1 * a Source #

Foldable (V1 *) Source # 

Methods

fold :: Monoid m => V1 * m -> m Source #

foldMap :: Monoid m => (a -> m) -> V1 * a -> m Source #

foldr :: (a -> b -> b) -> b -> V1 * a -> b Source #

foldr' :: (a -> b -> b) -> b -> V1 * a -> b Source #

foldl :: (b -> a -> b) -> b -> V1 * a -> b Source #

foldl' :: (b -> a -> b) -> b -> V1 * a -> b Source #

foldr1 :: (a -> a -> a) -> V1 * a -> a Source #

foldl1 :: (a -> a -> a) -> V1 * a -> a Source #

toList :: V1 * a -> [a] Source #

null :: V1 * a -> Bool Source #

length :: V1 * a -> Int Source #

elem :: Eq a => a -> V1 * a -> Bool Source #

maximum :: Ord a => V1 * a -> a Source #

minimum :: Ord a => V1 * a -> a Source #

sum :: Num a => V1 * a -> a Source #

product :: Num a => V1 * a -> a Source #

Traversable (V1 *) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> V1 * a -> f (V1 * b) Source #

sequenceA :: Applicative f => V1 * (f a) -> f (V1 * a) Source #

mapM :: Monad m => (a -> m b) -> V1 * a -> m (V1 * b) Source #

sequence :: Monad m => V1 * (m a) -> m (V1 * a) Source #

Eq (V1 k p) Source # 

Methods

(==) :: V1 k p -> V1 k p -> Bool #

(/=) :: V1 k p -> V1 k p -> Bool #

Data p => Data (V1 * p) Source #

Since: 4.9.0.0

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> V1 * p -> c (V1 * p) Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (V1 * p) Source #

toConstr :: V1 * p -> Constr Source #

dataTypeOf :: V1 * p -> DataType Source #

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

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

gmapT :: (forall b. Data b => b -> b) -> V1 * p -> V1 * p Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> V1 * p -> r Source #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> V1 * p -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> V1 * p -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> V1 * p -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> V1 * p -> m (V1 * p) Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> V1 * p -> m (V1 * p) Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> V1 * p -> m (V1 * p) Source #

Ord (V1 k p) Source # 

Methods

compare :: V1 k p -> V1 k p -> Ordering #

(<) :: V1 k p -> V1 k p -> Bool #

(<=) :: V1 k p -> V1 k p -> Bool #

(>) :: V1 k p -> V1 k p -> Bool #

(>=) :: V1 k p -> V1 k p -> Bool #

max :: V1 k p -> V1 k p -> V1 k p #

min :: V1 k p -> V1 k p -> V1 k p #

Read (V1 k p) Source # 
Show (V1 k p) Source # 

Methods

showsPrec :: Int -> V1 k p -> ShowS Source #

show :: V1 k p -> String Source #

showList :: [V1 k p] -> ShowS Source #

Generic (V1 k p) Source # 

Associated Types

type Rep (V1 k p) :: * -> * Source #

Methods

from :: V1 k p -> Rep (V1 k p) x Source #

to :: Rep (V1 k p) x -> V1 k p Source #

type Rep1 k (V1 k) Source # 
type Rep1 k (V1 k) = D1 k (MetaData "V1" "GHC.Generics" "base" False) (V1 k)
type Rep (V1 k p) Source # 
type Rep (V1 k p) = D1 * (MetaData "V1" "GHC.Generics" "base" False) (V1 *)

data U1 (p :: k) Source #

Unit: used for constructors without arguments

Constructors

U1 

Instances

Generic1 k (U1 k) Source # 

Associated Types

type Rep1 (U1 k) (f :: U1 k -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (U1 k) f a Source #

to1 :: Rep1 (U1 k) f a -> f a Source #

Monad (U1 *) Source #

Since: 4.9.0.0

Methods

(>>=) :: U1 * a -> (a -> U1 * b) -> U1 * b Source #

(>>) :: U1 * a -> U1 * b -> U1 * b Source #

return :: a -> U1 * a Source #

fail :: String -> U1 * a Source #

Functor (U1 *) Source #

Since: 4.9.0.0

Methods

fmap :: (a -> b) -> U1 * a -> U1 * b Source #

(<$) :: a -> U1 * b -> U1 * a Source #

Applicative (U1 *) Source #

Since: 4.9.0.0

Methods

pure :: a -> U1 * a Source #

(<*>) :: U1 * (a -> b) -> U1 * a -> U1 * b Source #

liftA2 :: (a -> b -> c) -> U1 * a -> U1 * b -> U1 * c Source #

(*>) :: U1 * a -> U1 * b -> U1 * b Source #

(<*) :: U1 * a -> U1 * b -> U1 * a Source #

Foldable (U1 *) Source #

Since: 4.9.0.0

Methods

fold :: Monoid m => U1 * m -> m Source #

foldMap :: Monoid m => (a -> m) -> U1 * a -> m Source #

foldr :: (a -> b -> b) -> b -> U1 * a -> b Source #

foldr' :: (a -> b -> b) -> b -> U1 * a -> b Source #

foldl :: (b -> a -> b) -> b -> U1 * a -> b Source #

foldl' :: (b -> a -> b) -> b -> U1 * a -> b Source #

foldr1 :: (a -> a -> a) -> U1 * a -> a Source #

foldl1 :: (a -> a -> a) -> U1 * a -> a Source #

toList :: U1 * a -> [a] Source #

null :: U1 * a -> Bool Source #

length :: U1 * a -> Int Source #

elem :: Eq a => a -> U1 * a -> Bool Source #

maximum :: Ord a => U1 * a -> a Source #

minimum :: Ord a => U1 * a -> a Source #

sum :: Num a => U1 * a -> a Source #

product :: Num a => U1 * a -> a Source #

Traversable (U1 *) Source #

Since: 4.9.0.0

Methods

traverse :: Applicative f => (a -> f b) -> U1 * a -> f (U1 * b) Source #

sequenceA :: Applicative f => U1 * (f a) -> f (U1 * a) Source #

mapM :: Monad m => (a -> m b) -> U1 * a -> m (U1 * b) Source #

sequence :: Monad m => U1 * (m a) -> m (U1 * a) Source #

MonadPlus (U1 *) Source #

Since: 4.9.0.0

Methods

mzero :: U1 * a Source #

mplus :: U1 * a -> U1 * a -> U1 * a Source #

Alternative (U1 *) Source #

Since: 4.9.0.0

Methods

empty :: U1 * a Source #

(<|>) :: U1 * a -> U1 * a -> U1 * a Source #

some :: U1 * a -> U1 * [a] Source #

many :: U1 * a -> U1 * [a] Source #

MonadZip (U1 *) Source #

Since: 4.9.0.0

Methods

mzip :: U1 * a -> U1 * b -> U1 * (a, b) Source #

mzipWith :: (a -> b -> c) -> U1 * a -> U1 * b -> U1 * c Source #

munzip :: U1 * (a, b) -> (U1 * a, U1 * b) Source #

Eq (U1 k p) Source #

Since: 4.9.0.0

Methods

(==) :: U1 k p -> U1 k p -> Bool #

(/=) :: U1 k p -> U1 k p -> Bool #

Data p => Data (U1 * p) Source #

Since: 4.9.0.0

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> U1 * p -> c (U1 * p) Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (U1 * p) Source #

toConstr :: U1 * p -> Constr Source #

dataTypeOf :: U1 * p -> DataType Source #

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

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

gmapT :: (forall b. Data b => b -> b) -> U1 * p -> U1 * p Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> U1 * p -> r Source #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> U1 * p -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> U1 * p -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> U1 * p -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> U1 * p -> m (U1 * p) Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> U1 * p -> m (U1 * p) Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> U1 * p -> m (U1 * p) Source #

Ord (U1 k p) Source #

Since: 4.9.0.0

Methods

compare :: U1 k p -> U1 k p -> Ordering #

(<) :: U1 k p -> U1 k p -> Bool #

(<=) :: U1 k p -> U1 k p -> Bool #

(>) :: U1 k p -> U1 k p -> Bool #

(>=) :: U1 k p -> U1 k p -> Bool #

max :: U1 k p -> U1 k p -> U1 k p #

min :: U1 k p -> U1 k p -> U1 k p #

Read (U1 k p) Source #

Since: 4.9.0.0

Show (U1 k p) Source #

Since: 4.9.0.0

Methods

showsPrec :: Int -> U1 k p -> ShowS Source #

show :: U1 k p -> String Source #

showList :: [U1 k p] -> ShowS Source #

Generic (U1 k p) Source # 

Associated Types

type Rep (U1 k p) :: * -> * Source #

Methods

from :: U1 k p -> Rep (U1 k p) x Source #

to :: Rep (U1 k p) x -> U1 k p Source #

type Rep1 k (U1 k) Source # 
type Rep1 k (U1 k) = D1 k (MetaData "U1" "GHC.Generics" "base" False) (C1 k (MetaCons "U1" PrefixI False) (U1 k))
type Rep (U1 k p) Source # 
type Rep (U1 k p) = D1 * (MetaData "U1" "GHC.Generics" "base" False) (C1 * (MetaCons "U1" PrefixI False) (U1 *))

newtype Par1 p Source #

Used for marking occurrences of the parameter

Constructors

Par1 

Fields

Instances

Monad Par1 Source #

Since: 4.9.0.0

Methods

(>>=) :: Par1 a -> (a -> Par1 b) -> Par1 b Source #

(>>) :: Par1 a -> Par1 b -> Par1 b Source #

return :: a -> Par1 a Source #

fail :: String -> Par1 a Source #

Functor Par1 Source # 

Methods

fmap :: (a -> b) -> Par1 a -> Par1 b Source #

(<$) :: a -> Par1 b -> Par1 a Source #

MonadFix Par1 Source #

Since: 4.9.0.0

Methods

mfix :: (a -> Par1 a) -> Par1 a Source #

Applicative Par1 Source #

Since: 4.9.0.0

Methods

pure :: a -> Par1 a Source #

(<*>) :: Par1 (a -> b) -> Par1 a -> Par1 b Source #

liftA2 :: (a -> b -> c) -> Par1 a -> Par1 b -> Par1 c Source #

(*>) :: Par1 a -> Par1 b -> Par1 b Source #

(<*) :: Par1 a -> Par1 b -> Par1 a Source #

Foldable Par1 Source # 

Methods

fold :: Monoid m => Par1 m -> m Source #

foldMap :: Monoid m => (a -> m) -> Par1 a -> m Source #

foldr :: (a -> b -> b) -> b -> Par1 a -> b Source #

foldr' :: (a -> b -> b) -> b -> Par1 a -> b Source #

foldl :: (b -> a -> b) -> b -> Par1 a -> b Source #

foldl' :: (b -> a -> b) -> b -> Par1 a -> b Source #

foldr1 :: (a -> a -> a) -> Par1 a -> a Source #

foldl1 :: (a -> a -> a) -> Par1 a -> a Source #

toList :: Par1 a -> [a] Source #

null :: Par1 a -> Bool Source #

length :: Par1 a -> Int Source #

elem :: Eq a => a -> Par1 a -> Bool Source #

maximum :: Ord a => Par1 a -> a Source #

minimum :: Ord a => Par1 a -> a Source #

sum :: Num a => Par1 a -> a Source #

product :: Num a => Par1 a -> a Source #

Traversable Par1 Source # 

Methods

traverse :: Applicative f => (a -> f b) -> Par1 a -> f (Par1 b) Source #

sequenceA :: Applicative f => Par1 (f a) -> f (Par1 a) Source #

mapM :: Monad m => (a -> m b) -> Par1 a -> m (Par1 b) Source #

sequence :: Monad m => Par1 (m a) -> m (Par1 a) Source #

MonadZip Par1 Source #

Since: 4.9.0.0

Methods

mzip :: Par1 a -> Par1 b -> Par1 (a, b) Source #

mzipWith :: (a -> b -> c) -> Par1 a -> Par1 b -> Par1 c Source #

munzip :: Par1 (a, b) -> (Par1 a, Par1 b) Source #

Eq p => Eq (Par1 p) Source # 

Methods

(==) :: Par1 p -> Par1 p -> Bool #

(/=) :: Par1 p -> Par1 p -> Bool #

Data p => Data (Par1 p) Source #

Since: 4.9.0.0

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Par1 p -> c (Par1 p) Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (Par1 p) Source #

toConstr :: Par1 p -> Constr Source #

dataTypeOf :: Par1 p -> DataType Source #

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

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

gmapT :: (forall b. Data b => b -> b) -> Par1 p -> Par1 p Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Par1 p -> r Source #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Par1 p -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> Par1 p -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Par1 p -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Par1 p -> m (Par1 p) Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Par1 p -> m (Par1 p) Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Par1 p -> m (Par1 p) Source #

Ord p => Ord (Par1 p) Source # 

Methods

compare :: Par1 p -> Par1 p -> Ordering #

(<) :: Par1 p -> Par1 p -> Bool #

(<=) :: Par1 p -> Par1 p -> Bool #

(>) :: Par1 p -> Par1 p -> Bool #

(>=) :: Par1 p -> Par1 p -> Bool #

max :: Par1 p -> Par1 p -> Par1 p #

min :: Par1 p -> Par1 p -> Par1 p #

Read p => Read (Par1 p) Source # 
Show p => Show (Par1 p) Source # 

Methods

showsPrec :: Int -> Par1 p -> ShowS Source #

show :: Par1 p -> String Source #

showList :: [Par1 p] -> ShowS Source #

Generic (Par1 p) Source # 

Associated Types

type Rep (Par1 p) :: * -> * Source #

Methods

from :: Par1 p -> Rep (Par1 p) x Source #

to :: Rep (Par1 p) x -> Par1 p Source #

Generic1 * Par1 Source # 

Associated Types

type Rep1 Par1 (f :: Par1 -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Par1 f a Source #

to1 :: Rep1 Par1 f a -> f a Source #

type Rep (Par1 p) Source # 
type Rep (Par1 p) = D1 * (MetaData "Par1" "GHC.Generics" "base" True) (C1 * (MetaCons "Par1" PrefixI True) (S1 * (MetaSel (Just Symbol "unPar1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 * p)))
type Rep1 * Par1 Source # 
type Rep1 * Par1 = D1 * (MetaData "Par1" "GHC.Generics" "base" True) (C1 * (MetaCons "Par1" PrefixI True) (S1 * (MetaSel (Just Symbol "unPar1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) Par1))

newtype Rec1 (f :: k -> *) (p :: k) Source #

Recursive calls of kind * -> * (or kind k -> *, when PolyKinds is enabled)

Constructors

Rec1 

Fields

Instances

Generic1 k (Rec1 k f) Source # 

Associated Types

type Rep1 (Rec1 k f) (f :: Rec1 k f -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Rec1 k f) f a Source #

to1 :: Rep1 (Rec1 k f) f a -> f a Source #

Monad f => Monad (Rec1 * f) Source #

Since: 4.9.0.0

Methods

(>>=) :: Rec1 * f a -> (a -> Rec1 * f b) -> Rec1 * f b Source #

(>>) :: Rec1 * f a -> Rec1 * f b -> Rec1 * f b Source #

return :: a -> Rec1 * f a Source #

fail :: String -> Rec1 * f a Source #

Functor f => Functor (Rec1 * f) Source # 

Methods

fmap :: (a -> b) -> Rec1 * f a -> Rec1 * f b Source #

(<$) :: a -> Rec1 * f b -> Rec1 * f a Source #

MonadFix f => MonadFix (Rec1 * f) Source #

Since: 4.9.0.0

Methods

mfix :: (a -> Rec1 * f a) -> Rec1 * f a Source #

Applicative f => Applicative (Rec1 * f) Source #

Since: 4.9.0.0

Methods

pure :: a -> Rec1 * f a Source #

(<*>) :: Rec1 * f (a -> b) -> Rec1 * f a -> Rec1 * f b Source #

liftA2 :: (a -> b -> c) -> Rec1 * f a -> Rec1 * f b -> Rec1 * f c Source #

(*>) :: Rec1 * f a -> Rec1 * f b -> Rec1 * f b Source #

(<*) :: Rec1 * f a -> Rec1 * f b -> Rec1 * f a Source #

Foldable f => Foldable (Rec1 * f) Source # 

Methods

fold :: Monoid m => Rec1 * f m -> m Source #

foldMap :: Monoid m => (a -> m) -> Rec1 * f a -> m Source #

foldr :: (a -> b -> b) -> b -> Rec1 * f a -> b Source #

foldr' :: (a -> b -> b) -> b -> Rec1 * f a -> b Source #

foldl :: (b -> a -> b) -> b -> Rec1 * f a -> b Source #

foldl' :: (b -> a -> b) -> b -> Rec1 * f a -> b Source #

foldr1 :: (a -> a -> a) -> Rec1 * f a -> a Source #

foldl1 :: (a -> a -> a) -> Rec1 * f a -> a Source #

toList :: Rec1 * f a -> [a] Source #

null :: Rec1 * f a -> Bool Source #

length :: Rec1 * f a -> Int Source #

elem :: Eq a => a -> Rec1 * f a -> Bool Source #

maximum :: Ord a => Rec1 * f a -> a Source #

minimum :: Ord a => Rec1 * f a -> a Source #

sum :: Num a => Rec1 * f a -> a Source #

product :: Num a => Rec1 * f a -> a Source #

Traversable f => Traversable (Rec1 * f) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> Rec1 * f a -> f (Rec1 * f b) Source #

sequenceA :: Applicative f => Rec1 * f (f a) -> f (Rec1 * f a) Source #

mapM :: Monad m => (a -> m b) -> Rec1 * f a -> m (Rec1 * f b) Source #

sequence :: Monad m => Rec1 * f (m a) -> m (Rec1 * f a) Source #

MonadPlus f => MonadPlus (Rec1 * f) Source #

Since: 4.9.0.0

Methods

mzero :: Rec1 * f a Source #

mplus :: Rec1 * f a -> Rec1 * f a -> Rec1 * f a Source #

Alternative f => Alternative (Rec1 * f) Source #

Since: 4.9.0.0

Methods

empty :: Rec1 * f a Source #

(<|>) :: Rec1 * f a -> Rec1 * f a -> Rec1 * f a Source #

some :: Rec1 * f a -> Rec1 * f [a] Source #

many :: Rec1 * f a -> Rec1 * f [a] Source #

MonadZip f => MonadZip (Rec1 * f) Source #

Since: 4.9.0.0

Methods

mzip :: Rec1 * f a -> Rec1 * f b -> Rec1 * f (a, b) Source #

mzipWith :: (a -> b -> c) -> Rec1 * f a -> Rec1 * f b -> Rec1 * f c Source #

munzip :: Rec1 * f (a, b) -> (Rec1 * f a, Rec1 * f b) Source #

Eq (f p) => Eq (Rec1 k f p) Source # 

Methods

(==) :: Rec1 k f p -> Rec1 k f p -> Bool #

(/=) :: Rec1 k f p -> Rec1 k f p -> Bool #

(Data (f p), Typeable (* -> *) f, Data p) => Data (Rec1 * f p) Source #

Since: 4.9.0.0

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Rec1 * f p -> c (Rec1 * f p) Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (Rec1 * f p) Source #

toConstr :: Rec1 * f p -> Constr Source #

dataTypeOf :: Rec1 * f p -> DataType Source #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (Rec1 * f p)) Source #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (Rec1 * f p)) Source #

gmapT :: (forall b. Data b => b -> b) -> Rec1 * f p -> Rec1 * f p Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Rec1 * f p -> r Source #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Rec1 * f p -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> Rec1 * f p -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Rec1 * f p -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Rec1 * f p -> m (Rec1 * f p) Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Rec1 * f p -> m (Rec1 * f p) Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Rec1 * f p -> m (Rec1 * f p) Source #

Ord (f p) => Ord (Rec1 k f p) Source # 

Methods

compare :: Rec1 k f p -> Rec1 k f p -> Ordering #

(<) :: Rec1 k f p -> Rec1 k f p -> Bool #

(<=) :: Rec1 k f p -> Rec1 k f p -> Bool #

(>) :: Rec1 k f p -> Rec1 k f p -> Bool #

(>=) :: Rec1 k f p -> Rec1 k f p -> Bool #

max :: Rec1 k f p -> Rec1 k f p -> Rec1 k f p #

min :: Rec1 k f p -> Rec1 k f p -> Rec1 k f p #

Read (f p) => Read (Rec1 k f p) Source # 
Show (f p) => Show (Rec1 k f p) Source # 

Methods

showsPrec :: Int -> Rec1 k f p -> ShowS Source #

show :: Rec1 k f p -> String Source #

showList :: [Rec1 k f p] -> ShowS Source #

Generic (Rec1 k f p) Source # 

Associated Types

type Rep (Rec1 k f p) :: * -> * Source #

Methods

from :: Rec1 k f p -> Rep (Rec1 k f p) x Source #

to :: Rep (Rec1 k f p) x -> Rec1 k f p Source #

type Rep1 k (Rec1 k f) Source # 
type Rep1 k (Rec1 k f) = D1 k (MetaData "Rec1" "GHC.Generics" "base" True) (C1 k (MetaCons "Rec1" PrefixI True) (S1 k (MetaSel (Just Symbol "unRec1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec1 k f)))
type Rep (Rec1 k f p) Source # 
type Rep (Rec1 k f p) = D1 * (MetaData "Rec1" "GHC.Generics" "base" True) (C1 * (MetaCons "Rec1" PrefixI True) (S1 * (MetaSel (Just Symbol "unRec1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 * (f p))))

newtype K1 (i :: *) c (p :: k) Source #

Constants, additional parameters and recursion of kind *

Constructors

K1 

Fields

Instances

Generic1 k (K1 k i c) Source # 

Associated Types

type Rep1 (K1 k i c) (f :: K1 k i c -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (K1 k i c) f a Source #

to1 :: Rep1 (K1 k i c) f a -> f a Source #

Bifunctor (K1 * i) Source #

Since: 4.9.0.0

Methods

bimap :: (a -> b) -> (c -> d) -> K1 * i a c -> K1 * i b d Source #

first :: (a -> b) -> K1 * i a c -> K1 * i b c Source #

second :: (b -> c) -> K1 * i a b -> K1 * i a c Source #

Bifoldable (K1 * i) Source #

Since: 4.10.0.0

Methods

bifold :: Monoid m => K1 * i m m -> m Source #

bifoldMap :: Monoid m => (a -> m) -> (b -> m) -> K1 * i a b -> m Source #

bifoldr :: (a -> c -> c) -> (b -> c -> c) -> c -> K1 * i a b -> c Source #

bifoldl :: (c -> a -> c) -> (c -> b -> c) -> c -> K1 * i a b -> c Source #

Bitraversable (K1 * i) Source #

Since: 4.10.0.0

Methods

bitraverse :: Applicative f => (a -> f c) -> (b -> f d) -> K1 * i a b -> f (K1 * i c d) Source #

Functor (K1 * i c) Source # 

Methods

fmap :: (a -> b) -> K1 * i c a -> K1 * i c b Source #

(<$) :: a -> K1 * i c b -> K1 * i c a Source #

Foldable (K1 * i c) Source # 

Methods

fold :: Monoid m => K1 * i c m -> m Source #

foldMap :: Monoid m => (a -> m) -> K1 * i c a -> m Source #

foldr :: (a -> b -> b) -> b -> K1 * i c a -> b Source #

foldr' :: (a -> b -> b) -> b -> K1 * i c a -> b Source #

foldl :: (b -> a -> b) -> b -> K1 * i c a -> b Source #

foldl' :: (b -> a -> b) -> b -> K1 * i c a -> b Source #

foldr1 :: (a -> a -> a) -> K1 * i c a -> a Source #

foldl1 :: (a -> a -> a) -> K1 * i c a -> a Source #

toList :: K1 * i c a -> [a] Source #

null :: K1 * i c a -> Bool Source #

length :: K1 * i c a -> Int Source #

elem :: Eq a => a -> K1 * i c a -> Bool Source #

maximum :: Ord a => K1 * i c a -> a Source #

minimum :: Ord a => K1 * i c a -> a Source #

sum :: Num a => K1 * i c a -> a Source #

product :: Num a => K1 * i c a -> a Source #

Traversable (K1 * i c) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> K1 * i c a -> f (K1 * i c b) Source #

sequenceA :: Applicative f => K1 * i c (f a) -> f (K1 * i c a) Source #

mapM :: Monad m => (a -> m b) -> K1 * i c a -> m (K1 * i c b) Source #

sequence :: Monad m => K1 * i c (m a) -> m (K1 * i c a) Source #

Eq c => Eq (K1 k i c p) Source # 

Methods

(==) :: K1 k i c p -> K1 k i c p -> Bool #

(/=) :: K1 k i c p -> K1 k i c p -> Bool #

(Typeable * i, Data p, Data c) => Data (K1 * i c p) Source #

Since: 4.9.0.0

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> K1 * i c p -> c (K1 * i c p) Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (K1 * i c p) Source #

toConstr :: K1 * i c p -> Constr Source #

dataTypeOf :: K1 * i c p -> DataType Source #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (K1 * i c p)) Source #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (K1 * i c p)) Source #

gmapT :: (forall b. Data b => b -> b) -> K1 * i c p -> K1 * i c p Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> K1 * i c p -> r Source #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> K1 * i c p -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> K1 * i c p -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> K1 * i c p -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> K1 * i c p -> m (K1 * i c p) Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> K1 * i c p -> m (K1 * i c p) Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> K1 * i c p -> m (K1 * i c p) Source #

Ord c => Ord (K1 k i c p) Source # 

Methods

compare :: K1 k i c p -> K1 k i c p -> Ordering #

(<) :: K1 k i c p -> K1 k i c p -> Bool #

(<=) :: K1 k i c p -> K1 k i c p -> Bool #

(>) :: K1 k i c p -> K1 k i c p -> Bool #

(>=) :: K1 k i c p -> K1 k i c p -> Bool #

max :: K1 k i c p -> K1 k i c p -> K1 k i c p #

min :: K1 k i c p -> K1 k i c p -> K1 k i c p #

Read c => Read (K1 k i c p) Source # 

Methods

readsPrec :: Int -> ReadS (K1 k i c p) Source #

readList :: ReadS [K1 k i c p] Source #

readPrec :: ReadPrec (K1 k i c p) Source #

readListPrec :: ReadPrec [K1 k i c p] Source #

Show c => Show (K1 k i c p) Source # 

Methods

showsPrec :: Int -> K1 k i c p -> ShowS Source #

show :: K1 k i c p -> String Source #

showList :: [K1 k i c p] -> ShowS Source #

Generic (K1 k i c p) Source # 

Associated Types

type Rep (K1 k i c p) :: * -> * Source #

Methods

from :: K1 k i c p -> Rep (K1 k i c p) x Source #

to :: Rep (K1 k i c p) x -> K1 k i c p Source #

type Rep1 k (K1 k i c) Source # 
type Rep1 k (K1 k i c) = D1 k (MetaData "K1" "GHC.Generics" "base" True) (C1 k (MetaCons "K1" PrefixI True) (S1 k (MetaSel (Just Symbol "unK1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 k c)))
type Rep (K1 k i c p) Source # 
type Rep (K1 k i c p) = D1 * (MetaData "K1" "GHC.Generics" "base" True) (C1 * (MetaCons "K1" PrefixI True) (S1 * (MetaSel (Just Symbol "unK1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 * c)))

newtype M1 (i :: *) (c :: Meta) (f :: k -> *) (p :: k) Source #

Meta-information (constructor names, etc.)

Constructors

M1 

Fields

Instances

Generic1 k (M1 k i c f) Source # 

Associated Types

type Rep1 (M1 k i c f) (f :: M1 k i c f -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (M1 k i c f) f a Source #

to1 :: Rep1 (M1 k i c f) f a -> f a Source #

Monad f => Monad (M1 * i c f) Source #

Since: 4.9.0.0

Methods

(>>=) :: M1 * i c f a -> (a -> M1 * i c f b) -> M1 * i c f b Source #

(>>) :: M1 * i c f a -> M1 * i c f b -> M1 * i c f b Source #

return :: a -> M1 * i c f a Source #

fail :: String -> M1 * i c f a Source #

Functor f => Functor (M1 * i c f) Source # 

Methods

fmap :: (a -> b) -> M1 * i c f a -> M1 * i c f b Source #

(<$) :: a -> M1 * i c f b -> M1 * i c f a Source #

MonadFix f => MonadFix (M1 * i c f) Source #

Since: 4.9.0.0

Methods

mfix :: (a -> M1 * i c f a) -> M1 * i c f a Source #

Applicative f => Applicative (M1 * i c f) Source #

Since: 4.9.0.0

Methods

pure :: a -> M1 * i c f a Source #

(<*>) :: M1 * i c f (a -> b) -> M1 * i c f a -> M1 * i c f b Source #

liftA2 :: (a -> b -> c) -> M1 * i c f a -> M1 * i c f b -> M1 * i c f c Source #

(*>) :: M1 * i c f a -> M1 * i c f b -> M1 * i c f b Source #

(<*) :: M1 * i c f a -> M1 * i c f b -> M1 * i c f a Source #

Foldable f => Foldable (M1 * i c f) Source # 

Methods

fold :: Monoid m => M1 * i c f m -> m Source #

foldMap :: Monoid m => (a -> m) -> M1 * i c f a -> m Source #

foldr :: (a -> b -> b) -> b -> M1 * i c f a -> b Source #

foldr' :: (a -> b -> b) -> b -> M1 * i c f a -> b Source #

foldl :: (b -> a -> b) -> b -> M1 * i c f a -> b Source #

foldl' :: (b -> a -> b) -> b -> M1 * i c f a -> b Source #

foldr1 :: (a -> a -> a) -> M1 * i c f a -> a Source #

foldl1 :: (a -> a -> a) -> M1 * i c f a -> a Source #

toList :: M1 * i c f a -> [a] Source #

null :: M1 * i c f a -> Bool Source #

length :: M1 * i c f a -> Int Source #

elem :: Eq a => a -> M1 * i c f a -> Bool Source #

maximum :: Ord a => M1 * i c f a -> a Source #

minimum :: Ord a => M1 * i c f a -> a Source #

sum :: Num a => M1 * i c f a -> a Source #

product :: Num a => M1 * i c f a -> a Source #

Traversable f => Traversable (M1 * i c f) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> M1 * i c f a -> f (M1 * i c f b) Source #

sequenceA :: Applicative f => M1 * i c f (f a) -> f (M1 * i c f a) Source #

mapM :: Monad m => (a -> m b) -> M1 * i c f a -> m (M1 * i c f b) Source #

sequence :: Monad m => M1 * i c f (m a) -> m (M1 * i c f a) Source #

MonadPlus f => MonadPlus (M1 * i c f) Source #

Since: 4.9.0.0

Methods

mzero :: M1 * i c f a Source #

mplus :: M1 * i c f a -> M1 * i c f a -> M1 * i c f a Source #

Alternative f => Alternative (M1 * i c f) Source #

Since: 4.9.0.0

Methods

empty :: M1 * i c f a Source #

(<|>) :: M1 * i c f a -> M1 * i c f a -> M1 * i c f a Source #

some :: M1 * i c f a -> M1 * i c f [a] Source #

many :: M1 * i c f a -> M1 * i c f [a] Source #

MonadZip f => MonadZip (M1 * i c f) Source #

Since: 4.9.0.0

Methods

mzip :: M1 * i c f a -> M1 * i c f b -> M1 * i c f (a, b) Source #

mzipWith :: (a -> b -> c) -> M1 * i c f a -> M1 * i c f b -> M1 * i c f c Source #

munzip :: M1 * i c f (a, b) -> (M1 * i c f a, M1 * i c f b) Source #

Eq (f p) => Eq (M1 k i c f p) Source # 

Methods

(==) :: M1 k i c f p -> M1 k i c f p -> Bool #

(/=) :: M1 k i c f p -> M1 k i c f p -> Bool #

(Data p, Data (f p), Typeable Meta c, Typeable * i, Typeable (* -> *) f) => Data (M1 * i c f p) Source #

Since: 4.9.0.0

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> M1 * i c f p -> c (M1 * i c f p) Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c (M1 * i c f p) Source #

toConstr :: M1 * i c f p -> Constr Source #

dataTypeOf :: M1 * i c f p -> DataType Source #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c (M1 * i c f p)) Source #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c (M1 * i c f p)) Source #

gmapT :: (forall b. Data b => b -> b) -> M1 * i c f p -> M1 * i c f p Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> M1 * i c f p -> r Source #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> M1 * i c f p -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> M1 * i c f p -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> M1 * i c f p -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> M1 * i c f p -> m (M1 * i c f p) Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> M1 * i c f p -> m (M1 * i c f p) Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> M1 * i c f p -> m (M1 * i c f p) Source #

Ord (f p) => Ord (M1 k i c f p) Source # 

Methods

compare :: M1 k i c f p -> M1 k i c f p -> Ordering #

(<) :: M1 k i c f p -> M1 k i c f p -> Bool #

(<=) :: M1 k i c f p -> M1 k i c f p -> Bool #

(>) :: M1 k i c f p -> M1 k i c f p -> Bool #

(>=) :: M1 k i c f p -> M1 k i c f p -> Bool #

max :: M1 k i c f p -> M1 k i c f p -> M1 k i c f p #

min :: M1 k i c f p -> M1 k i c f p -> M1 k i c f p #

Read (f p) => Read (M1 k i c f p) Source # 

Methods

readsPrec :: Int -> ReadS (M1 k i c f p) Source #

readList :: ReadS [M1 k i c f p] Source #

readPrec :: ReadPrec (M1 k i c f p) Source #

readListPrec :: ReadPrec [M1 k i c f p] Source #

Show (f p) => Show (M1 k i c f p) Source # 

Methods

showsPrec :: Int -> M1 k i c f p -> ShowS Source #

show :: M1 k i c f p -> String Source #

showList :: [M1 k i c f p] -> ShowS Source #

Generic (M1 k i c f p) Source # 

Associated Types

type Rep (M1 k i c f p) :: * -> * Source #

Methods

from :: M1 k i c f p -> Rep (M1 k i c f p) x Source #

to :: Rep (M1 k i c f p) x -> M1 k i c f p Source #

type Rep1 k (M1 k i c f) Source # 
type Rep1 k (M1 k i c f) = D1 k (MetaData "M1" "GHC.Generics" "base" True) (C1 k (MetaCons "M1" PrefixI True) (S1 k (MetaSel (Just Symbol "unM1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec1 k f)))
type Rep (M1 k i c f p) Source # 
type Rep (M1 k i c f p) = D1 * (MetaData "M1" "GHC.Generics" "base" True) (C1 * (MetaCons "M1" PrefixI True) (S1 * (MetaSel (Just Symbol "unM1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 * (f p))))

data ((f :: k -> *) :+: (g :: k -> *)) (p :: k) infixr 5 Source #

Sums: encode choice between constructors

Constructors

L1 (f p) 
R1 (g p) 

Instances

Generic1 k ((:+:) k f g) Source # 

Associated Types

type Rep1 ((k :+: f) g) (f :: (k :+: f) g -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((k :+: f) g) f a Source #

to1 :: Rep1 ((k :+: f) g) f a -> f a Source #

(Functor g, Functor f) => Functor ((:+:) * f g) Source # 

Methods

fmap :: (a -> b) -> (* :+: f) g a -> (* :+: f) g b Source #

(<$) :: a -> (* :+: f) g b -> (* :+: f) g a Source #

(Foldable f, Foldable g) => Foldable ((:+:) * f g) Source # 

Methods

fold :: Monoid m => (* :+: f) g m -> m Source #

foldMap :: Monoid m => (a -> m) -> (* :+: f) g a -> m Source #

foldr :: (a -> b -> b) -> b -> (* :+: f) g a -> b Source #

foldr' :: (a -> b -> b) -> b -> (* :+: f) g a -> b Source #

foldl :: (b -> a -> b) -> b -> (* :+: f) g a -> b Source #

foldl' :: (b -> a -> b) -> b -> (* :+: f) g a -> b Source #

foldr1 :: (a -> a -> a) -> (* :+: f) g a -> a Source #

foldl1 :: (a -> a -> a) -> (* :+: f) g a -> a Source #

toList :: (* :+: f) g a -> [a] Source #

null :: (* :+: f) g a -> Bool Source #

length :: (* :+: f) g a -> Int Source #

elem :: Eq a => a -> (* :+: f) g a -> Bool Source #

maximum :: Ord a => (* :+: f) g a -> a Source #

minimum :: Ord a => (* :+: f) g a -> a Source #

sum :: Num a => (* :+: f) g a -> a Source #

product :: Num a => (* :+: f) g a -> a Source #

(Traversable f, Traversable g) => Traversable ((:+:) * f g) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> (* :+: f) g a -> f ((* :+: f) g b) Source #

sequenceA :: Applicative f => (* :+: f) g (f a) -> f ((* :+: f) g a) Source #

mapM :: Monad m => (a -> m b) -> (* :+: f) g a -> m ((* :+: f) g b) Source #

sequence :: Monad m => (* :+: f) g (m a) -> m ((* :+: f) g a) Source #

(Eq (g p), Eq (f p)) => Eq ((:+:) k f g p) Source # 

Methods

(==) :: (k :+: f) g p -> (k :+: f) g p -> Bool #

(/=) :: (k :+: f) g p -> (k :+: f) g p -> Bool #

(Typeable (* -> *) f, Typeable (* -> *) g, Data p, Data (f p), Data (g p)) => Data ((:+:) * f g p) Source #

Since: 4.9.0.0

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall a. a -> c a) -> (* :+: f) g p -> c ((* :+: f) g p) Source #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ((* :+: f) g p) Source #

toConstr :: (* :+: f) g p -> Constr Source #

dataTypeOf :: (* :+: f) g p -> DataType Source #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ((* :+: f) g p)) Source #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ((* :+: f) g p)) Source #

gmapT :: (forall b. Data b => b -> b) -> (* :+: f) g p -> (* :+: f) g p Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> (* :+: f) g p -> r Source #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> (* :+: f) g p -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> (* :+: f) g p -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> (* :+: f) g p -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> (* :+: f) g p -> m ((* :+: f) g p) Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> (* :+: f) g p -> m ((* :+: f) g p) Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> (* :+: f) g p -> m ((* :+: f) g p) Source #

(Ord (g p), Ord (f p)) => Ord ((:+:) k f g p) Source # 

Methods

compare :: (k :+: f) g p -> (k :+: f) g p -> Ordering #

(<) :: (k :+: f) g p -> (k :+: f) g p -> Bool #

(<=) :: (k :+: f) g p -> (k :+: f) g p -> Bool #

(>) :: (k :+: f) g p -> (k :+: f) g p -> Bool #

(>=) :: (k :+: f) g p -> (k :+: f) g p -> Bool #

max :: (k :+: f) g p -> (k :+: f) g p -> (k :+: f) g p #

min :: (k :+: f) g p -> (k :+: f) g p -> (k :+: f) g p #

(Read (g p), Read (f p)) => Read ((:+:) k f g p) Source # 

Methods

readsPrec :: Int -> ReadS ((k :+: f) g p) Source #

readList :: ReadS [(k :+: f) g p] Source #

readPrec :: ReadPrec ((k :+: f) g p) Source #

readListPrec :: ReadPrec [(k :+: f) g p] Source #

(Show (g p), Show (f p)) => Show ((:+:) k f g p) Source # 

Methods

showsPrec :: Int -> (k :+: f) g p -> ShowS Source #

show :: (k :+: f) g p -> String Source #

showList :: [(k :+: f) g p] -> ShowS Source #

Generic ((:+:) k f g p) Source # 

Associated Types

type Rep ((k :+: f) g p) :: * -> * Source #

Methods

from :: (k :+: f) g p -> Rep ((k :+: f) g p) x Source #

to :: Rep ((k :+: f) g p) x -> (k :+: f) g p Source #

type Rep1 k ((:+:) k f g) Source # 
type Rep ((:+:) k f g p) Source # 

data ((f :: k -> *) :*: (g :: k -> *)) (p :: k) infixr 6 Source #

Products: encode multiple arguments to constructors

Constructors

(f p) :*: (g p) infixr 6 

Instances

Generic1 k ((:*:) k f g) Source # 

Associated Types

type Rep1 ((k :*: f) g) (f :: (k :*: f) g -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((k :*: f) g) f a Source #

to1 :: Rep1 ((k :*: f) g) f a -> f a Source #

(Monad f, Monad g) => Monad ((:*:) * f g) Source #

Since: 4.9.0.0

Methods

(>>=) :: (* :*: f) g a -> (a -> (* :*: f) g b) -> (* :*: f) g b Source #

(>>) :: (* :*: f) g a -> (* :*: f) g b -> (* :*: f) g b Source #

return :: a -> (* :*: f) g a Source #

fail :: String -> (* :*: f) g a Source #

(Functor g, Functor f) => Functor ((:*:) * f g) Source # 

Methods

fmap :: (a -> b) -> (* :*: f) g a -> (* :*: f) g b Source #

(<$) :: a -> (* :*: f) g b -> (* :*: f) g a Source #

(MonadFix f, MonadFix g) => MonadFix ((:*:) * f g) Source #

Since: 4.9.0.0

Methods

mfix :: (a -> (* :*: f) g a) -> (* :*: f) g a Source #

(Applicative f, Applicative g) => Applicative ((:*:) * f g) Source #

Since: 4.9.0.0

Methods

pure :: a -> (* :*: f) g a Source #

(<*>) :: (* :*: f) g (a -> b) -> (* :*: f) g a -> (* :*: f) g b Source #

liftA2 :: (a -> b -> c) -> (* :*: f) g a -> (* :*: f) g b -> (* :*: f) g c Source #

(*>) :: (* :*: f) g a -> (* :*: f) g b -> (* :*: f) g b Source #

(<*) :: (* :*: f) g a -> (* :*: f) g b -> (* :*: f) g a Source #

(Foldable f, Foldable g) => Foldable ((:*:) * f g) Source # 

Methods

fold :: Monoid m => (* :*: f) g m -> m Source #

foldMap :: Monoid m => (a -> m) -> (* :*: f) g a -> m Source #

foldr :: (a -> b -> b) -> b -> (* :*: f) g a -> b Source #

foldr' :: (a -> b -> b) -> b -> (* :*: f) g a -> b Source #

foldl :: (b -> a -> b) -> b -> (* :*: f) g a -> b Source #

foldl' :: (b -> a -> b) -> b -> (* :*: f) g a -> b Source #

foldr1 :: (a -> a -> a) -> (* :*: f) g a -> a Source #

foldl1 :: (a -> a -> a) -> (* :*: f) g a -> a Source #

toList :: (* :*: f) g a -> [a] Source #

null :: (* :*: f) g a -> Bool Source #

length :: (* :*: f) g a -> Int Source #

elem :: Eq a => a -> (* :*: f) g a -> Bool Source #

maximum :: Ord a => (* :*: f) g a -> a Source #

minimum :: Ord a => (* :*: f) g a -> a Source #

sum :: Num a => (* :*: f) g a -> a Source #

product :: Num a => (* :*: f) g a -> a Source #

(Traversable f, Traversable g) => Traversable ((:*:) * f g) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> (* :*: f) g a -> f ((* :*: f) g b) Source #

sequenceA :: Applicative f => (* :*: f) g (f a) -> f ((* :*: f) g a) Source #

mapM :: Monad m => (a -> m b) -> (* :*: f) g a -> m ((* :*: f) g b) Source #

sequence :: Monad m => (* :*: f) g (m a) -> m ((* :*: f) g a) Source #

(MonadPlus f, MonadPlus g) => MonadPlus ((:*:) * f g) Source #

Since: 4.9.0.0

Methods

mzero :: (* :*: f) g a Source #

mplus :: (* :*: f) g a -> (* :*: f) g a -> (* :*: f) g a Source #

(Alternative f, Alternative g) => Alternative ((:*:) * f g) Source #

Since: 4.9.0.0

Methods

empty :: (* :*: f) g a Source #

(<|>) :: (* :*: f) g a -> (* :*: f) g a -> (* :*: f) g a Source #

some :: (* :*: f) g a -> (* :*: f) g [a] Source #

many :: (* :*: f) g a -> (* :*: f) g [a] Source #

(MonadZip f, MonadZip g) => MonadZip ((:*:) * f g) Source #

Since: 4.9.0.0

Methods

mzip :: (* :*: f) g a -> (* :*: f) g b -> (* :*: f) g (a, b) Source #

mzipWith :: (a -> b -> c) -> (* :*: f) g a -> (* :*: f) g b -> (* :*: f) g c Source #

munzip :: (* :*: f) g (a, b) -> ((* :*: f) g a, (* :*: f) g b) Source #

(Eq (g p), Eq (f p)) => Eq ((:*:) k f g p) Source # 

Methods

(==) :: (k :*: f) g p -> (k :*: f) g p -> Bool #

(/=) :: (k :*: f) g p -> (k :*: f) g p -> Bool #

(Typeable (* -> *) f, Typeable (* -> *) g, Data p, Data (f p), Data (g p)) => Data ((:*:) * f g p) Source #

Since: 4.9.0.0

Methods

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

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ((* :*: f) g p) Source #

toConstr :: (* :*: f) g p -> Constr Source #

dataTypeOf :: (* :*: f) g p -> DataType Source #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ((* :*: f) g p)) Source #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ((* :*: f) g p)) Source #

gmapT :: (forall b. Data b => b -> b) -> (* :*: f) g p -> (* :*: f) g p Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> (* :*: f) g p -> r Source #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> (* :*: f) g p -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> (* :*: f) g p -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> (* :*: f) g p -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> (* :*: f) g p -> m ((* :*: f) g p) Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> (* :*: f) g p -> m ((* :*: f) g p) Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> (* :*: f) g p -> m ((* :*: f) g p) Source #

(Ord (g p), Ord (f p)) => Ord ((:*:) k f g p) Source # 

Methods

compare :: (k :*: f) g p -> (k :*: f) g p -> Ordering #

(<) :: (k :*: f) g p -> (k :*: f) g p -> Bool #

(<=) :: (k :*: f) g p -> (k :*: f) g p -> Bool #

(>) :: (k :*: f) g p -> (k :*: f) g p -> Bool #

(>=) :: (k :*: f) g p -> (k :*: f) g p -> Bool #

max :: (k :*: f) g p -> (k :*: f) g p -> (k :*: f) g p #

min :: (k :*: f) g p -> (k :*: f) g p -> (k :*: f) g p #

(Read (g p), Read (f p)) => Read ((:*:) k f g p) Source # 

Methods

readsPrec :: Int -> ReadS ((k :*: f) g p) Source #

readList :: ReadS [(k :*: f) g p] Source #

readPrec :: ReadPrec ((k :*: f) g p) Source #

readListPrec :: ReadPrec [(k :*: f) g p] Source #

(Show (g p), Show (f p)) => Show ((:*:) k f g p) Source # 

Methods

showsPrec :: Int -> (k :*: f) g p -> ShowS Source #

show :: (k :*: f) g p -> String Source #

showList :: [(k :*: f) g p] -> ShowS Source #

Generic ((:*:) k f g p) Source # 

Associated Types

type Rep ((k :*: f) g p) :: * -> * Source #

Methods

from :: (k :*: f) g p -> Rep ((k :*: f) g p) x Source #

to :: Rep ((k :*: f) g p) x -> (k :*: f) g p Source #

type Rep1 k ((:*:) k f g) Source # 
type Rep ((:*:) k f g p) Source # 

newtype ((f :: k2 -> *) :.: (g :: k1 -> k2)) (p :: k1) infixr 7 Source #

Composition of functors

Constructors

Comp1 

Fields

Instances

Functor f => Generic1 k ((:.:) * k f g) Source # 

Associated Types

type Rep1 ((* :.: k) f g) (f :: (* :.: k) f g -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((* :.: k) f g) f a Source #

to1 :: Rep1 ((* :.: k) f g) f a -> f a Source #

(Functor g, Functor f) => Functor ((:.:) * * f g) Source # 

Methods

fmap :: (a -> b) -> (* :.: *) f g a -> (* :.: *) f g b Source #

(<$) :: a -> (* :.: *) f g b -> (* :.: *) f g a Source #

(Applicative f, Applicative g) => Applicative ((:.:) * * f g) Source #

Since: 4.9.0.0

Methods

pure :: a -> (* :.: *) f g a Source #

(<*>) :: (* :.: *) f g (a -> b) -> (* :.: *) f g a -> (* :.: *) f g b Source #

liftA2 :: (a -> b -> c) -> (* :.: *) f g a -> (* :.: *) f g b -> (* :.: *) f g c Source #

(*>) :: (* :.: *) f g a -> (* :.: *) f g b -> (* :.: *) f g b Source #

(<*) :: (* :.: *) f g a -> (* :.: *) f g b -> (* :.: *) f g a Source #

(Foldable f, Foldable g) => Foldable ((:.:) * * f g) Source # 

Methods

fold :: Monoid m => (* :.: *) f g m -> m Source #

foldMap :: Monoid m => (a -> m) -> (* :.: *) f g a -> m Source #

foldr :: (a -> b -> b) -> b -> (* :.: *) f g a -> b Source #

foldr' :: (a -> b -> b) -> b -> (* :.: *) f g a -> b Source #

foldl :: (b -> a -> b) -> b -> (* :.: *) f g a -> b Source #

foldl' :: (b -> a -> b) -> b -> (* :.: *) f g a -> b Source #

foldr1 :: (a -> a -> a) -> (* :.: *) f g a -> a Source #

foldl1 :: (a -> a -> a) -> (* :.: *) f g a -> a Source #

toList :: (* :.: *) f g a -> [a] Source #

null :: (* :.: *) f g a -> Bool Source #

length :: (* :.: *) f g a -> Int Source #

elem :: Eq a => a -> (* :.: *) f g a -> Bool Source #

maximum :: Ord a => (* :.: *) f g a -> a Source #

minimum :: Ord a => (* :.: *) f g a -> a Source #

sum :: Num a => (* :.: *) f g a -> a Source #

product :: Num a => (* :.: *) f g a -> a Source #

(Traversable f, Traversable g) => Traversable ((:.:) * * f g) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> (* :.: *) f g a -> f ((* :.: *) f g b) Source #

sequenceA :: Applicative f => (* :.: *) f g (f a) -> f ((* :.: *) f g a) Source #

mapM :: Monad m => (a -> m b) -> (* :.: *) f g a -> m ((* :.: *) f g b) Source #

sequence :: Monad m => (* :.: *) f g (m a) -> m ((* :.: *) f g a) Source #

(Alternative f, Applicative g) => Alternative ((:.:) * * f g) Source #

Since: 4.9.0.0

Methods

empty :: (* :.: *) f g a Source #

(<|>) :: (* :.: *) f g a -> (* :.: *) f g a -> (* :.: *) f g a Source #

some :: (* :.: *) f g a -> (* :.: *) f g [a] Source #

many :: (* :.: *) f g a -> (* :.: *) f g [a] Source #

Eq (f (g p)) => Eq ((:.:) k2 k1 f g p) Source # 

Methods

(==) :: (k2 :.: k1) f g p -> (k2 :.: k1) f g p -> Bool #

(/=) :: (k2 :.: k1) f g p -> (k2 :.: k1) f g p -> Bool #

(Typeable (* -> *) f, Typeable (* -> *) g, Data p, Data (f (g p))) => Data ((:.:) * * f g p) Source #

Since: 4.9.0.0

Methods

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

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ((* :.: *) f g p) Source #

toConstr :: (* :.: *) f g p -> Constr Source #

dataTypeOf :: (* :.: *) f g p -> DataType Source #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ((* :.: *) f g p)) Source #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ((* :.: *) f g p)) Source #

gmapT :: (forall b. Data b => b -> b) -> (* :.: *) f g p -> (* :.: *) f g p Source #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> (* :.: *) f g p -> r Source #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> (* :.: *) f g p -> r Source #

gmapQ :: (forall d. Data d => d -> u) -> (* :.: *) f g p -> [u] Source #

gmapQi :: Int -> (forall d. Data d => d -> u) -> (* :.: *) f g p -> u Source #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> (* :.: *) f g p -> m ((* :.: *) f g p) Source #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> (* :.: *) f g p -> m ((* :.: *) f g p) Source #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> (* :.: *) f g p -> m ((* :.: *) f g p) Source #

Ord (f (g p)) => Ord ((:.:) k2 k1 f g p) Source # 

Methods

compare :: (k2 :.: k1) f g p -> (k2 :.: k1) f g p -> Ordering #

(<) :: (k2 :.: k1) f g p -> (k2 :.: k1) f g p -> Bool #

(<=) :: (k2 :.: k1) f g p -> (k2 :.: k1) f g p -> Bool #

(>) :: (k2 :.: k1) f g p -> (k2 :.: k1) f g p -> Bool #

(>=) :: (k2 :.: k1) f g p -> (k2 :.: k1) f g p -> Bool #

max :: (k2 :.: k1) f g p -> (k2 :.: k1) f g p -> (k2 :.: k1) f g p #

min :: (k2 :.: k1) f g p -> (k2 :.: k1) f g p -> (k2 :.: k1) f g p #

Read (f (g p)) => Read ((:.:) k2 k1 f g p) Source # 

Methods

readsPrec :: Int -> ReadS ((k2 :.: k1) f g p) Source #

readList :: ReadS [(k2 :.: k1) f g p] Source #

readPrec :: ReadPrec ((k2 :.: k1) f g p) Source #

readListPrec :: ReadPrec [(k2 :.: k1) f g p] Source #

Show (f (g p)) => Show ((:.:) k2 k1 f g p) Source # 

Methods

showsPrec :: Int -> (k2 :.: k1) f g p -> ShowS Source #

show :: (k2 :.: k1) f g p -> String Source #

showList :: [(k2 :.: k1) f g p] -> ShowS Source #

Generic ((:.:) k2 k1 f g p) Source # 

Associated Types

type Rep ((k2 :.: k1) f g p) :: * -> * Source #

Methods

from :: (k2 :.: k1) f g p -> Rep ((k2 :.: k1) f g p) x Source #

to :: Rep ((k2 :.: k1) f g p) x -> (k2 :.: k1) f g p Source #

type Rep1 k ((:.:) * k f g) Source # 
type Rep1 k ((:.:) * k f g) = D1 k (MetaData ":.:" "GHC.Generics" "base" True) (C1 k (MetaCons "Comp1" PrefixI True) (S1 k (MetaSel (Just Symbol "unComp1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) ((:.:) * k f (Rec1 k g))))
type Rep ((:.:) k2 k1 f g p) Source # 
type Rep ((:.:) k2 k1 f g p) = D1 * (MetaData ":.:" "GHC.Generics" "base" True) (C1 * (MetaCons "Comp1" PrefixI True) (S1 * (MetaSel (Just Symbol "unComp1") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 * (f (g p)))))

Unboxed representation types

data family URec (a :: *) (p :: k) Source #

Constants of unlifted kinds

Since: 4.9.0.0

Instances

Generic1 k (URec k Word) Source # 

Associated Types

type Rep1 (URec k Word) (f :: URec k Word -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Word) f a Source #

to1 :: Rep1 (URec k Word) f a -> f a Source #

Generic1 k (URec k Int) Source # 

Associated Types

type Rep1 (URec k Int) (f :: URec k Int -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Int) f a Source #

to1 :: Rep1 (URec k Int) f a -> f a Source #

Generic1 k (URec k Float) Source # 

Associated Types

type Rep1 (URec k Float) (f :: URec k Float -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Float) f a Source #

to1 :: Rep1 (URec k Float) f a -> f a Source #

Generic1 k (URec k Double) Source # 

Associated Types

type Rep1 (URec k Double) (f :: URec k Double -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Double) f a Source #

to1 :: Rep1 (URec k Double) f a -> f a Source #

Generic1 k (URec k Char) Source # 

Associated Types

type Rep1 (URec k Char) (f :: URec k Char -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Char) f a Source #

to1 :: Rep1 (URec k Char) f a -> f a Source #

Generic1 k (URec k (Ptr ())) Source # 

Associated Types

type Rep1 (URec k (Ptr ())) (f :: URec k (Ptr ()) -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k (Ptr ())) f a Source #

to1 :: Rep1 (URec k (Ptr ())) f a -> f a Source #

Functor (URec * Char) Source # 

Methods

fmap :: (a -> b) -> URec * Char a -> URec * Char b Source #

(<$) :: a -> URec * Char b -> URec * Char a Source #

Functor (URec * Double) Source # 

Methods

fmap :: (a -> b) -> URec * Double a -> URec * Double b Source #

(<$) :: a -> URec * Double b -> URec * Double a Source #

Functor (URec * Float) Source # 

Methods

fmap :: (a -> b) -> URec * Float a -> URec * Float b Source #

(<$) :: a -> URec * Float b -> URec * Float a Source #

Functor (URec * Int) Source # 

Methods

fmap :: (a -> b) -> URec * Int a -> URec * Int b Source #

(<$) :: a -> URec * Int b -> URec * Int a Source #

Functor (URec * Word) Source # 

Methods

fmap :: (a -> b) -> URec * Word a -> URec * Word b Source #

(<$) :: a -> URec * Word b -> URec * Word a Source #

Functor (URec * (Ptr ())) Source # 

Methods

fmap :: (a -> b) -> URec * (Ptr ()) a -> URec * (Ptr ()) b Source #

(<$) :: a -> URec * (Ptr ()) b -> URec * (Ptr ()) a Source #

Foldable (URec * Char) Source # 

Methods

fold :: Monoid m => URec * Char m -> m Source #

foldMap :: Monoid m => (a -> m) -> URec * Char a -> m Source #

foldr :: (a -> b -> b) -> b -> URec * Char a -> b Source #

foldr' :: (a -> b -> b) -> b -> URec * Char a -> b Source #

foldl :: (b -> a -> b) -> b -> URec * Char a -> b Source #

foldl' :: (b -> a -> b) -> b -> URec * Char a -> b Source #

foldr1 :: (a -> a -> a) -> URec * Char a -> a Source #

foldl1 :: (a -> a -> a) -> URec * Char a -> a Source #

toList :: URec * Char a -> [a] Source #

null :: URec * Char a -> Bool Source #

length :: URec * Char a -> Int Source #

elem :: Eq a => a -> URec * Char a -> Bool Source #

maximum :: Ord a => URec * Char a -> a Source #

minimum :: Ord a => URec * Char a -> a Source #

sum :: Num a => URec * Char a -> a Source #

product :: Num a => URec * Char a -> a Source #

Foldable (URec * Double) Source # 

Methods

fold :: Monoid m => URec * Double m -> m Source #

foldMap :: Monoid m => (a -> m) -> URec * Double a -> m Source #

foldr :: (a -> b -> b) -> b -> URec * Double a -> b Source #

foldr' :: (a -> b -> b) -> b -> URec * Double a -> b Source #

foldl :: (b -> a -> b) -> b -> URec * Double a -> b Source #

foldl' :: (b -> a -> b) -> b -> URec * Double a -> b Source #

foldr1 :: (a -> a -> a) -> URec * Double a -> a Source #

foldl1 :: (a -> a -> a) -> URec * Double a -> a Source #

toList :: URec * Double a -> [a] Source #

null :: URec * Double a -> Bool Source #

length :: URec * Double a -> Int Source #

elem :: Eq a => a -> URec * Double a -> Bool Source #

maximum :: Ord a => URec * Double a -> a Source #

minimum :: Ord a => URec * Double a -> a Source #

sum :: Num a => URec * Double a -> a Source #

product :: Num a => URec * Double a -> a Source #

Foldable (URec * Float) Source # 

Methods

fold :: Monoid m => URec * Float m -> m Source #

foldMap :: Monoid m => (a -> m) -> URec * Float a -> m Source #

foldr :: (a -> b -> b) -> b -> URec * Float a -> b Source #

foldr' :: (a -> b -> b) -> b -> URec * Float a -> b Source #

foldl :: (b -> a -> b) -> b -> URec * Float a -> b Source #

foldl' :: (b -> a -> b) -> b -> URec * Float a -> b Source #

foldr1 :: (a -> a -> a) -> URec * Float a -> a Source #

foldl1 :: (a -> a -> a) -> URec * Float a -> a Source #

toList :: URec * Float a -> [a] Source #

null :: URec * Float a -> Bool Source #

length :: URec * Float a -> Int Source #

elem :: Eq a => a -> URec * Float a -> Bool Source #

maximum :: Ord a => URec * Float a -> a Source #

minimum :: Ord a => URec * Float a -> a Source #

sum :: Num a => URec * Float a -> a Source #

product :: Num a => URec * Float a -> a Source #

Foldable (URec * Int) Source # 

Methods

fold :: Monoid m => URec * Int m -> m Source #

foldMap :: Monoid m => (a -> m) -> URec * Int a -> m Source #

foldr :: (a -> b -> b) -> b -> URec * Int a -> b Source #

foldr' :: (a -> b -> b) -> b -> URec * Int a -> b Source #

foldl :: (b -> a -> b) -> b -> URec * Int a -> b Source #

foldl' :: (b -> a -> b) -> b -> URec * Int a -> b Source #

foldr1 :: (a -> a -> a) -> URec * Int a -> a Source #

foldl1 :: (a -> a -> a) -> URec * Int a -> a Source #

toList :: URec * Int a -> [a] Source #

null :: URec * Int a -> Bool Source #

length :: URec * Int a -> Int Source #

elem :: Eq a => a -> URec * Int a -> Bool Source #

maximum :: Ord a => URec * Int a -> a Source #

minimum :: Ord a => URec * Int a -> a Source #

sum :: Num a => URec * Int a -> a Source #

product :: Num a => URec * Int a -> a Source #

Foldable (URec * Word) Source # 

Methods

fold :: Monoid m => URec * Word m -> m Source #

foldMap :: Monoid m => (a -> m) -> URec * Word a -> m Source #

foldr :: (a -> b -> b) -> b -> URec * Word a -> b Source #

foldr' :: (a -> b -> b) -> b -> URec * Word a -> b Source #

foldl :: (b -> a -> b) -> b -> URec * Word a -> b Source #

foldl' :: (b -> a -> b) -> b -> URec * Word a -> b Source #

foldr1 :: (a -> a -> a) -> URec * Word a -> a Source #

foldl1 :: (a -> a -> a) -> URec * Word a -> a Source #

toList :: URec * Word a -> [a] Source #

null :: URec * Word a -> Bool Source #

length :: URec * Word a -> Int Source #

elem :: Eq a => a -> URec * Word a -> Bool Source #

maximum :: Ord a => URec * Word a -> a Source #

minimum :: Ord a => URec * Word a -> a Source #

sum :: Num a => URec * Word a -> a Source #

product :: Num a => URec * Word a -> a Source #

Foldable (URec * (Ptr ())) Source # 

Methods

fold :: Monoid m => URec * (Ptr ()) m -> m Source #

foldMap :: Monoid m => (a -> m) -> URec * (Ptr ()) a -> m Source #

foldr :: (a -> b -> b) -> b -> URec * (Ptr ()) a -> b Source #

foldr' :: (a -> b -> b) -> b -> URec * (Ptr ()) a -> b Source #

foldl :: (b -> a -> b) -> b -> URec * (Ptr ()) a -> b Source #

foldl' :: (b -> a -> b) -> b -> URec * (Ptr ()) a -> b Source #

foldr1 :: (a -> a -> a) -> URec * (Ptr ()) a -> a Source #

foldl1 :: (a -> a -> a) -> URec * (Ptr ()) a -> a Source #

toList :: URec * (Ptr ()) a -> [a] Source #

null :: URec * (Ptr ()) a -> Bool Source #

length :: URec * (Ptr ()) a -> Int Source #

elem :: Eq a => a -> URec * (Ptr ()) a -> Bool Source #

maximum :: Ord a => URec * (Ptr ()) a -> a Source #

minimum :: Ord a => URec * (Ptr ()) a -> a Source #

sum :: Num a => URec * (Ptr ()) a -> a Source #

product :: Num a => URec * (Ptr ()) a -> a Source #

Traversable (URec * Char) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> URec * Char a -> f (URec * Char b) Source #

sequenceA :: Applicative f => URec * Char (f a) -> f (URec * Char a) Source #

mapM :: Monad m => (a -> m b) -> URec * Char a -> m (URec * Char b) Source #

sequence :: Monad m => URec * Char (m a) -> m (URec * Char a) Source #

Traversable (URec * Double) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> URec * Double a -> f (URec * Double b) Source #

sequenceA :: Applicative f => URec * Double (f a) -> f (URec * Double a) Source #

mapM :: Monad m => (a -> m b) -> URec * Double a -> m (URec * Double b) Source #

sequence :: Monad m => URec * Double (m a) -> m (URec * Double a) Source #

Traversable (URec * Float) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> URec * Float a -> f (URec * Float b) Source #

sequenceA :: Applicative f => URec * Float (f a) -> f (URec * Float a) Source #

mapM :: Monad m => (a -> m b) -> URec * Float a -> m (URec * Float b) Source #

sequence :: Monad m => URec * Float (m a) -> m (URec * Float a) Source #

Traversable (URec * Int) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> URec * Int a -> f (URec * Int b) Source #

sequenceA :: Applicative f => URec * Int (f a) -> f (URec * Int a) Source #

mapM :: Monad m => (a -> m b) -> URec * Int a -> m (URec * Int b) Source #

sequence :: Monad m => URec * Int (m a) -> m (URec * Int a) Source #

Traversable (URec * Word) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> URec * Word a -> f (URec * Word b) Source #

sequenceA :: Applicative f => URec * Word (f a) -> f (URec * Word a) Source #

mapM :: Monad m => (a -> m b) -> URec * Word a -> m (URec * Word b) Source #

sequence :: Monad m => URec * Word (m a) -> m (URec * Word a) Source #

Traversable (URec * (Ptr ())) Source # 

Methods

traverse :: Applicative f => (a -> f b) -> URec * (Ptr ()) a -> f (URec * (Ptr ()) b) Source #

sequenceA :: Applicative f => URec * (Ptr ()) (f a) -> f (URec * (Ptr ()) a) Source #

mapM :: Monad m => (a -> m b) -> URec * (Ptr ()) a -> m (URec * (Ptr ()) b) Source #

sequence :: Monad m => URec * (Ptr ()) (m a) -> m (URec * (Ptr ()) a) Source #

Eq (URec k Word p) Source # 

Methods

(==) :: URec k Word p -> URec k Word p -> Bool #

(/=) :: URec k Word p -> URec k Word p -> Bool #

Eq (URec k Int p) Source # 

Methods

(==) :: URec k Int p -> URec k Int p -> Bool #

(/=) :: URec k Int p -> URec k Int p -> Bool #

Eq (URec k Float p) Source # 

Methods

(==) :: URec k Float p -> URec k Float p -> Bool #

(/=) :: URec k Float p -> URec k Float p -> Bool #

Eq (URec k Double p) Source # 

Methods

(==) :: URec k Double p -> URec k Double p -> Bool #

(/=) :: URec k Double p -> URec k Double p -> Bool #

Eq (URec k Char p) Source # 

Methods

(==) :: URec k Char p -> URec k Char p -> Bool #

(/=) :: URec k Char p -> URec k Char p -> Bool #

Eq (URec k (Ptr ()) p) Source # 

Methods

(==) :: URec k (Ptr ()) p -> URec k (Ptr ()) p -> Bool #

(/=) :: URec k (Ptr ()) p -> URec k (Ptr ()) p -> Bool #

Ord (URec k Word p) Source # 

Methods

compare :: URec k Word p -> URec k Word p -> Ordering #

(<) :: URec k Word p -> URec k Word p -> Bool #

(<=) :: URec k Word p -> URec k Word p -> Bool #

(>) :: URec k Word p -> URec k Word p -> Bool #

(>=) :: URec k Word p -> URec k Word p -> Bool #

max :: URec k Word p -> URec k Word p -> URec k Word p #

min :: URec k Word p -> URec k Word p -> URec k Word p #

Ord (URec k Int p) Source # 

Methods

compare :: URec k Int p -> URec k Int p -> Ordering #

(<) :: URec k Int p -> URec k Int p -> Bool #

(<=) :: URec k Int p -> URec k Int p -> Bool #

(>) :: URec k Int p -> URec k Int p -> Bool #

(>=) :: URec k Int p -> URec k Int p -> Bool #

max :: URec k Int p -> URec k Int p -> URec k Int p #

min :: URec k Int p -> URec k Int p -> URec k Int p #

Ord (URec k Float p) Source # 

Methods

compare :: URec k Float p -> URec k Float p -> Ordering #

(<) :: URec k Float p -> URec k Float p -> Bool #

(<=) :: URec k Float p -> URec k Float p -> Bool #

(>) :: URec k Float p -> URec k Float p -> Bool #

(>=) :: URec k Float p -> URec k Float p -> Bool #

max :: URec k Float p -> URec k Float p -> URec k Float p #

min :: URec k Float p -> URec k Float p -> URec k Float p #

Ord (URec k Double p) Source # 

Methods

compare :: URec k Double p -> URec k Double p -> Ordering #

(<) :: URec k Double p -> URec k Double p -> Bool #

(<=) :: URec k Double p -> URec k Double p -> Bool #

(>) :: URec k Double p -> URec k Double p -> Bool #

(>=) :: URec k Double p -> URec k Double p -> Bool #

max :: URec k Double p -> URec k Double p -> URec k Double p #

min :: URec k Double p -> URec k Double p -> URec k Double p #

Ord (URec k Char p) Source # 

Methods

compare :: URec k Char p -> URec k Char p -> Ordering #

(<) :: URec k Char p -> URec k Char p -> Bool #

(<=) :: URec k Char p -> URec k Char p -> Bool #

(>) :: URec k Char p -> URec k Char p -> Bool #

(>=) :: URec k Char p -> URec k Char p -> Bool #

max :: URec k Char p -> URec k Char p -> URec k Char p #

min :: URec k Char p -> URec k Char p -> URec k Char p #

Ord (URec k (Ptr ()) p) Source # 

Methods

compare :: URec k (Ptr ()) p -> URec k (Ptr ()) p -> Ordering #

(<) :: URec k (Ptr ()) p -> URec k (Ptr ()) p -> Bool #

(<=) :: URec k (Ptr ()) p -> URec k (Ptr ()) p -> Bool #

(>) :: URec k (Ptr ()) p -> URec k (Ptr ()) p -> Bool #

(>=) :: URec k (Ptr ()) p -> URec k (Ptr ()) p -> Bool #

max :: URec k (Ptr ()) p -> URec k (Ptr ()) p -> URec k (Ptr ()) p #

min :: URec k (Ptr ()) p -> URec k (Ptr ()) p -> URec k (Ptr ()) p #

Show (URec k Word p) Source # 

Methods

showsPrec :: Int -> URec k Word p -> ShowS Source #

show :: URec k Word p -> String Source #

showList :: [URec k Word p] -> ShowS Source #

Show (URec k Int p) Source # 

Methods

showsPrec :: Int -> URec k Int p -> ShowS Source #

show :: URec k Int p -> String Source #

showList :: [URec k Int p] -> ShowS Source #

Show (URec k Float p) Source # 
Show (URec k Double p) Source # 
Show (URec k Char p) Source # 

Methods

showsPrec :: Int -> URec k Char p -> ShowS Source #

show :: URec k Char p -> String Source #

showList :: [URec k Char p] -> ShowS Source #

Generic (URec k Word p) Source # 

Associated Types

type Rep (URec k Word p) :: * -> * Source #

Methods

from :: URec k Word p -> Rep (URec k Word p) x Source #

to :: Rep (URec k Word p) x -> URec k Word p Source #

Generic (URec k Int p) Source # 

Associated Types

type Rep (URec k Int p) :: * -> * Source #

Methods

from :: URec k Int p -> Rep (URec k Int p) x Source #

to :: Rep (URec k Int p) x -> URec k Int p Source #

Generic (URec k Float p) Source # 

Associated Types

type Rep (URec k Float p) :: * -> * Source #

Methods

from :: URec k Float p -> Rep (URec k Float p) x Source #

to :: Rep (URec k Float p) x -> URec k Float p Source #

Generic (URec k Double p) Source # 

Associated Types

type Rep (URec k Double p) :: * -> * Source #

Methods

from :: URec k Double p -> Rep (URec k Double p) x Source #

to :: Rep (URec k Double p) x -> URec k Double p Source #

Generic (URec k Char p) Source # 

Associated Types

type Rep (URec k Char p) :: * -> * Source #

Methods

from :: URec k Char p -> Rep (URec k Char p) x Source #

to :: Rep (URec k Char p) x -> URec k Char p Source #

Generic (URec k (Ptr ()) p) Source # 

Associated Types

type Rep (URec k (Ptr ()) p) :: * -> * Source #

Methods

from :: URec k (Ptr ()) p -> Rep (URec k (Ptr ()) p) x Source #

to :: Rep (URec k (Ptr ()) p) x -> URec k (Ptr ()) p Source #

data URec k Word Source #

Used for marking occurrences of Word#

Since: 4.9.0.0

data URec k Word = UWord {}
data URec k Int Source #

Used for marking occurrences of Int#

Since: 4.9.0.0

data URec k Int = UInt {}
data URec k Float Source #

Used for marking occurrences of Float#

Since: 4.9.0.0

data URec k Double Source #

Used for marking occurrences of Double#

Since: 4.9.0.0

data URec k Char Source #

Used for marking occurrences of Char#

Since: 4.9.0.0

data URec k Char = UChar {}
data URec k (Ptr ()) Source #

Used for marking occurrences of Addr#

Since: 4.9.0.0

data URec k (Ptr ()) = UAddr {}
type Rep1 k (URec k Word) Source # 
type Rep1 k (URec k Word) = D1 k (MetaData "URec" "GHC.Generics" "base" False) (C1 k (MetaCons "UWord" PrefixI True) (S1 k (MetaSel (Just Symbol "uWord#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UWord k)))
type Rep1 k (URec k Int) Source # 
type Rep1 k (URec k Int) = D1 k (MetaData "URec" "GHC.Generics" "base" False) (C1 k (MetaCons "UInt" PrefixI True) (S1 k (MetaSel (Just Symbol "uInt#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UInt k)))
type Rep1 k (URec k Float) Source # 
type Rep1 k (URec k Float) = D1 k (MetaData "URec" "GHC.Generics" "base" False) (C1 k (MetaCons "UFloat" PrefixI True) (S1 k (MetaSel (Just Symbol "uFloat#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UFloat k)))
type Rep1 k (URec k Double) Source # 
type Rep1 k (URec k Double) = D1 k (MetaData "URec" "GHC.Generics" "base" False) (C1 k (MetaCons "UDouble" PrefixI True) (S1 k (MetaSel (Just Symbol "uDouble#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UDouble k)))
type Rep1 k (URec k Char) Source # 
type Rep1 k (URec k Char) = D1 k (MetaData "URec" "GHC.Generics" "base" False) (C1 k (MetaCons "UChar" PrefixI True) (S1 k (MetaSel (Just Symbol "uChar#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UChar k)))
type Rep1 k (URec k (Ptr ())) Source # 
type Rep1 k (URec k (Ptr ())) = D1 k (MetaData "URec" "GHC.Generics" "base" False) (C1 k (MetaCons "UAddr" PrefixI True) (S1 k (MetaSel (Just Symbol "uAddr#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UAddr k)))
type Rep (URec k Word p) Source # 
type Rep (URec k Word p) = D1 * (MetaData "URec" "GHC.Generics" "base" False) (C1 * (MetaCons "UWord" PrefixI True) (S1 * (MetaSel (Just Symbol "uWord#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UWord *)))
type Rep (URec k Int p) Source # 
type Rep (URec k Int p) = D1 * (MetaData "URec" "GHC.Generics" "base" False) (C1 * (MetaCons "UInt" PrefixI True) (S1 * (MetaSel (Just Symbol "uInt#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UInt *)))
type Rep (URec k Float p) Source # 
type Rep (URec k Float p) = D1 * (MetaData "URec" "GHC.Generics" "base" False) (C1 * (MetaCons "UFloat" PrefixI True) (S1 * (MetaSel (Just Symbol "uFloat#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UFloat *)))
type Rep (URec k Double p) Source # 
type Rep (URec k Double p) = D1 * (MetaData "URec" "GHC.Generics" "base" False) (C1 * (MetaCons "UDouble" PrefixI True) (S1 * (MetaSel (Just Symbol "uDouble#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UDouble *)))
type Rep (URec k Char p) Source # 
type Rep (URec k Char p) = D1 * (MetaData "URec" "GHC.Generics" "base" False) (C1 * (MetaCons "UChar" PrefixI True) (S1 * (MetaSel (Just Symbol "uChar#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UChar *)))
type Rep (URec k (Ptr ()) p) Source # 
type Rep (URec k (Ptr ()) p) = D1 * (MetaData "URec" "GHC.Generics" "base" False) (C1 * (MetaCons "UAddr" PrefixI True) (S1 * (MetaSel (Just Symbol "uAddr#") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (UAddr *)))

type UAddr = URec (Ptr ()) Source #

Type synonym for URec Addr#

Since: 4.9.0.0

type UChar = URec Char Source #

Type synonym for URec Char#

Since: 4.9.0.0

type UDouble = URec Double Source #

Type synonym for URec Double#

Since: 4.9.0.0

type UFloat = URec Float Source #

Type synonym for URec Float#

Since: 4.9.0.0

type UInt = URec Int Source #

Type synonym for URec Int#

Since: 4.9.0.0

type UWord = URec Word Source #

Type synonym for URec Word#

Since: 4.9.0.0

Synonyms for convenience

type Rec0 = K1 R Source #

Type synonym for encoding recursion (of kind *)

data R Source #

Tag for K1: recursion (of kind *)

type D1 = M1 D Source #

Type synonym for encoding meta-information for datatypes

type C1 = M1 C Source #

Type synonym for encoding meta-information for constructors

type S1 = M1 S Source #

Type synonym for encoding meta-information for record selectors

data D Source #

Tag for M1: datatype

data C Source #

Tag for M1: constructor

data S Source #

Tag for M1: record selector

Meta-information

class Datatype d where Source #

Class for datatypes that represent datatypes

Minimal complete definition

datatypeName, moduleName, packageName

Methods

datatypeName :: t d (f :: k -> *) (a :: k) -> [Char] Source #

The name of the datatype (unqualified)

moduleName :: t d (f :: k -> *) (a :: k) -> [Char] Source #

The fully-qualified name of the module where the type is declared

packageName :: t d (f :: k -> *) (a :: k) -> [Char] Source #

The package name of the module where the type is declared

Since: 4.9.0.0

isNewtype :: t d (f :: k -> *) (a :: k) -> Bool Source #

Marks if the datatype is actually a newtype

Since: 4.7.0.0

Instances

(KnownSymbol n, KnownSymbol m, KnownSymbol p, SingI Bool nt) => Datatype Meta (MetaData n m p nt) Source #

Since: 4.9.0.0

Methods

datatypeName :: t d f a -> [Char] Source #

moduleName :: t d f a -> [Char] Source #

packageName :: t d f a -> [Char] Source #

isNewtype :: t d f a -> Bool Source #

class Constructor c where Source #

Class for datatypes that represent data constructors

Minimal complete definition

conName

Methods

conName :: t c (f :: k -> *) (a :: k) -> [Char] Source #

The name of the constructor

conFixity :: t c (f :: k -> *) (a :: k) -> Fixity Source #

The fixity of the constructor

conIsRecord :: t c (f :: k -> *) (a :: k) -> Bool Source #

Marks if this constructor is a record

Instances

(KnownSymbol n, SingI FixityI f, SingI Bool r) => Constructor Meta (MetaCons n f r) Source #

Since: 4.9.0.0

Methods

conName :: t c f a -> [Char] Source #

conFixity :: t c f a -> Fixity Source #

conIsRecord :: t c f a -> Bool Source #

class Selector s where Source #

Class for datatypes that represent records

Methods

selName :: t s (f :: k -> *) (a :: k) -> [Char] Source #

The name of the selector

selSourceUnpackedness :: t s (f :: k -> *) (a :: k) -> SourceUnpackedness Source #

The selector's unpackedness annotation (if any)

Since: 4.9.0.0

selSourceStrictness :: t s (f :: k -> *) (a :: k) -> SourceStrictness Source #

The selector's strictness annotation (if any)

Since: 4.9.0.0

selDecidedStrictness :: t s (f :: k -> *) (a :: k) -> DecidedStrictness Source #

The strictness that the compiler inferred for the selector

Since: 4.9.0.0

Instances

(SingI (Maybe Symbol) mn, SingI SourceUnpackedness su, SingI SourceStrictness ss, SingI DecidedStrictness ds) => Selector Meta (MetaSel mn su ss ds) Source #

Since: 4.9.0.0

data Fixity Source #

Datatype to represent the fixity of a constructor. An infix | declaration directly corresponds to an application of Infix.

Constructors

Prefix 
Infix Associativity Int 

Instances

Eq Fixity Source # 

Methods

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

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

Data Fixity Source #

Since: 4.9.0.0

Methods

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

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

toConstr :: Fixity -> Constr Source #

dataTypeOf :: Fixity -> DataType Source #

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

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

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

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

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

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

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

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

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

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

Ord Fixity Source # 
Read Fixity Source # 
Show Fixity Source # 
Generic Fixity Source # 

Associated Types

type Rep Fixity :: * -> * Source #

type Rep Fixity Source # 

data FixityI Source #

This variant of Fixity appears at the type level.

Since: 4.9.0.0

data Associativity Source #

Datatype to represent the associativity of a constructor

Instances

Bounded Associativity Source # 
Enum Associativity Source # 
Eq Associativity Source # 
Data Associativity Source #

Since: 4.9.0.0

Methods

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

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

toConstr :: Associativity -> Constr Source #

dataTypeOf :: Associativity -> DataType Source #

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

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

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

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

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

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

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

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

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

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

Ord Associativity Source # 
Read Associativity Source # 
Show Associativity Source # 
Ix Associativity Source # 
Generic Associativity Source # 
type Rep Associativity Source # 
type Rep Associativity = D1 * (MetaData "Associativity" "GHC.Generics" "base" False) ((:+:) * (C1 * (MetaCons "LeftAssociative" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "RightAssociative" PrefixI False) (U1 *)) (C1 * (MetaCons "NotAssociative" PrefixI False) (U1 *))))

prec :: Fixity -> Int Source #

Get the precedence of a fixity value.

data SourceUnpackedness Source #

The unpackedness of a field as the user wrote it in the source code. For example, in the following data type:

data E = ExampleConstructor     Int
           {-# NOUNPACK #-} Int
           {-#   UNPACK #-} Int

The fields of ExampleConstructor have NoSourceUnpackedness, SourceNoUnpack, and SourceUnpack, respectively.

Since: 4.9.0.0

Instances

Bounded SourceUnpackedness Source # 
Enum SourceUnpackedness Source # 
Eq SourceUnpackedness Source # 
Data SourceUnpackedness Source #

Since: 4.9.0.0

Methods

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

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

toConstr :: SourceUnpackedness -> Constr Source #

dataTypeOf :: SourceUnpackedness -> DataType Source #

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

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

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

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

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

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

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

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

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

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

Ord SourceUnpackedness Source # 
Read SourceUnpackedness Source # 
Show SourceUnpackedness Source # 
Ix SourceUnpackedness Source # 
Generic SourceUnpackedness Source # 
type Rep SourceUnpackedness Source # 
type Rep SourceUnpackedness = D1 * (MetaData "SourceUnpackedness" "GHC.Generics" "base" False) ((:+:) * (C1 * (MetaCons "NoSourceUnpackedness" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "SourceNoUnpack" PrefixI False) (U1 *)) (C1 * (MetaCons "SourceUnpack" PrefixI False) (U1 *))))

data SourceStrictness Source #

The strictness of a field as the user wrote it in the source code. For example, in the following data type:

data E = ExampleConstructor Int ~Int !Int

The fields of ExampleConstructor have NoSourceStrictness, SourceLazy, and SourceStrict, respectively.

Since: 4.9.0.0

Instances

Bounded SourceStrictness Source # 
Enum SourceStrictness Source # 
Eq SourceStrictness Source # 
Data SourceStrictness Source #

Since: 4.9.0.0

Methods

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

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

toConstr :: SourceStrictness -> Constr Source #

dataTypeOf :: SourceStrictness -> DataType Source #

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

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

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

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

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

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

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

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

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

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

Ord SourceStrictness Source # 
Read SourceStrictness Source # 
Show SourceStrictness Source # 
Ix SourceStrictness Source # 
Generic SourceStrictness Source # 
type Rep SourceStrictness Source # 
type Rep SourceStrictness = D1 * (MetaData "SourceStrictness" "GHC.Generics" "base" False) ((:+:) * (C1 * (MetaCons "NoSourceStrictness" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "SourceLazy" PrefixI False) (U1 *)) (C1 * (MetaCons "SourceStrict" PrefixI False) (U1 *))))

data DecidedStrictness Source #

The strictness that GHC infers for a field during compilation. Whereas there are nine different combinations of SourceUnpackedness and SourceStrictness, the strictness that GHC decides will ultimately be one of lazy, strict, or unpacked. What GHC decides is affected both by what the user writes in the source code and by GHC flags. As an example, consider this data type:

data E = ExampleConstructor {-# UNPACK #-} !Int !Int Int

Since: 4.9.0.0

Instances

Bounded DecidedStrictness Source # 
Enum DecidedStrictness Source # 
Eq DecidedStrictness Source # 
Data DecidedStrictness Source #

Since: 4.9.0.0

Methods

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

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

toConstr :: DecidedStrictness -> Constr Source #

dataTypeOf :: DecidedStrictness -> DataType Source #

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

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

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

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

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

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

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

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

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

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

Ord DecidedStrictness Source # 
Read DecidedStrictness Source # 
Show DecidedStrictness Source # 
Ix DecidedStrictness Source # 
Generic DecidedStrictness Source # 
type Rep DecidedStrictness Source # 
type Rep DecidedStrictness = D1 * (MetaData "DecidedStrictness" "GHC.Generics" "base" False) ((:+:) * (C1 * (MetaCons "DecidedLazy" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "DecidedStrict" PrefixI False) (U1 *)) (C1 * (MetaCons "DecidedUnpack" PrefixI False) (U1 *))))

data Meta Source #

Datatype to represent metadata associated with a datatype (MetaData), constructor (MetaCons), or field selector (MetaSel).

  • In MetaData n m p nt, n is the datatype's name, m is the module in which the datatype is defined, p is the package in which the datatype is defined, and nt is 'True if the datatype is a newtype.
  • In MetaCons n f s, n is the constructor's name, f is its fixity, and s is 'True if the constructor contains record selectors.
  • In MetaSel mn su ss ds, if the field uses record syntax, then mn is Just the record name. Otherwise, mn is Nothing. su and ss are the field's unpackedness and strictness annotations, and ds is the strictness that GHC infers for the field.

Since: 4.9.0.0

Instances

(KnownSymbol n, SingI FixityI f, SingI Bool r) => Constructor Meta (MetaCons n f r) Source #

Since: 4.9.0.0

Methods

conName :: t c f a -> [Char] Source #

conFixity :: t c f a -> Fixity Source #

conIsRecord :: t c f a -> Bool Source #

(KnownSymbol n, KnownSymbol m, KnownSymbol p, SingI Bool nt) => Datatype Meta (MetaData n m p nt) Source #

Since: 4.9.0.0

Methods

datatypeName :: t d f a -> [Char] Source #

moduleName :: t d f a -> [Char] Source #

packageName :: t d f a -> [Char] Source #

isNewtype :: t d f a -> Bool Source #

(SingI (Maybe Symbol) mn, SingI SourceUnpackedness su, SingI SourceStrictness ss, SingI DecidedStrictness ds) => Selector Meta (MetaSel mn su ss ds) Source #

Since: 4.9.0.0

Generic type classes

class Generic a where Source #

Representable types of kind *. This class is derivable in GHC with the DeriveGeneric flag on.

Minimal complete definition

from, to

Associated Types

type Rep a :: * -> * Source #

Generic representation type

Methods

from :: a -> Rep a x Source #

Convert from the datatype to its representation

to :: Rep a x -> a Source #

Convert from the representation to the datatype

Instances

Generic Bool Source # 

Associated Types

type Rep Bool :: * -> * Source #

Methods

from :: Bool -> Rep Bool x Source #

to :: Rep Bool x -> Bool Source #

Generic Ordering Source # 

Associated Types

type Rep Ordering :: * -> * Source #

Generic () Source # 

Associated Types

type Rep () :: * -> * Source #

Methods

from :: () -> Rep () x Source #

to :: Rep () x -> () Source #

Generic DecidedStrictness Source # 
Generic SourceStrictness Source # 
Generic SourceUnpackedness Source # 
Generic Associativity Source # 
Generic Fixity Source # 

Associated Types

type Rep Fixity :: * -> * Source #

Generic Any Source # 

Associated Types

type Rep Any :: * -> * Source #

Methods

from :: Any -> Rep Any x Source #

to :: Rep Any x -> Any Source #

Generic All Source # 

Associated Types

type Rep All :: * -> * Source #

Methods

from :: All -> Rep All x Source #

to :: Rep All x -> All Source #

Generic ExitCode Source # 

Associated Types

type Rep ExitCode :: * -> * Source #

Generic Version Source # 

Associated Types

type Rep Version :: * -> * Source #

Generic Void Source # 

Associated Types

type Rep Void :: * -> * Source #

Methods

from :: Void -> Rep Void x Source #

to :: Rep Void x -> Void Source #

Generic [a] Source # 

Associated Types

type Rep [a] :: * -> * Source #

Methods

from :: [a] -> Rep [a] x Source #

to :: Rep [a] x -> [a] Source #

Generic (Maybe a) Source # 

Associated Types

type Rep (Maybe a) :: * -> * Source #

Methods

from :: Maybe a -> Rep (Maybe a) x Source #

to :: Rep (Maybe a) x -> Maybe a Source #

Generic (Par1 p) Source # 

Associated Types

type Rep (Par1 p) :: * -> * Source #

Methods

from :: Par1 p -> Rep (Par1 p) x Source #

to :: Rep (Par1 p) x -> Par1 p Source #

Generic (Last a) Source # 

Associated Types

type Rep (Last a) :: * -> * Source #

Methods

from :: Last a -> Rep (Last a) x Source #

to :: Rep (Last a) x -> Last a Source #

Generic (First a) Source # 

Associated Types

type Rep (First a) :: * -> * Source #

Methods

from :: First a -> Rep (First a) x Source #

to :: Rep (First a) x -> First a Source #

Generic (Product a) Source # 

Associated Types

type Rep (Product a) :: * -> * Source #

Methods

from :: Product a -> Rep (Product a) x Source #

to :: Rep (Product a) x -> Product a Source #

Generic (Sum a) Source # 

Associated Types

type Rep (Sum a) :: * -> * Source #

Methods

from :: Sum a -> Rep (Sum a) x Source #

to :: Rep (Sum a) x -> Sum a Source #

Generic (Endo a) Source # 

Associated Types

type Rep (Endo a) :: * -> * Source #

Methods

from :: Endo a -> Rep (Endo a) x Source #

to :: Rep (Endo a) x -> Endo a Source #

Generic (Dual a) Source # 

Associated Types

type Rep (Dual a) :: * -> * Source #

Methods

from :: Dual a -> Rep (Dual a) x Source #

to :: Rep (Dual a) x -> Dual a Source #

Generic (Identity a) Source # 

Associated Types

type Rep (Identity a) :: * -> * Source #

Methods

from :: Identity a -> Rep (Identity a) x Source #

to :: Rep (Identity a) x -> Identity a Source #

Generic (ZipList a) Source # 

Associated Types

type Rep (ZipList a) :: * -> * Source #

Methods

from :: ZipList a -> Rep (ZipList a) x Source #

to :: Rep (ZipList a) x -> ZipList a Source #

Generic (NonEmpty a) Source # 

Associated Types

type Rep (NonEmpty a) :: * -> * Source #

Methods

from :: NonEmpty a -> Rep (NonEmpty a) x Source #

to :: Rep (NonEmpty a) x -> NonEmpty a Source #

Generic (Option a) Source # 

Associated Types

type Rep (Option a) :: * -> * Source #

Methods

from :: Option a -> Rep (Option a) x Source #

to :: Rep (Option a) x -> Option a Source #

Generic (WrappedMonoid m) Source # 

Associated Types

type Rep (WrappedMonoid m) :: * -> * Source #

Generic (Last a) Source # 

Associated Types

type Rep (Last a) :: * -> * Source #

Methods

from :: Last a -> Rep (Last a) x Source #

to :: Rep (Last a) x -> Last a Source #

Generic (First a) Source # 

Associated Types

type Rep (First a) :: * -> * Source #

Methods

from :: First a -> Rep (First a) x Source #

to :: Rep (First a) x -> First a Source #

Generic (Max a) Source # 

Associated Types

type Rep (Max a) :: * -> * Source #

Methods

from :: Max a -> Rep (Max a) x Source #

to :: Rep (Max a) x -> Max a Source #

Generic (Min a) Source # 

Associated Types

type Rep (Min a) :: * -> * Source #

Methods

from :: Min a -> Rep (Min a) x Source #

to :: Rep (Min a) x -> Min a Source #

Generic (Complex a) Source # 

Associated Types

type Rep (Complex a) :: * -> * Source #

Methods

from :: Complex a -> Rep (Complex a) x Source #

to :: Rep (Complex a) x -> Complex a Source #

Generic (Either a b) Source # 

Associated Types

type Rep (Either a b) :: * -> * Source #

Methods

from :: Either a b -> Rep (Either a b) x Source #

to :: Rep (Either a b) x -> Either a b Source #

Generic (V1 k p) Source # 

Associated Types

type Rep (V1 k p) :: * -> * Source #

Methods

from :: V1 k p -> Rep (V1 k p) x Source #

to :: Rep (V1 k p) x -> V1 k p Source #

Generic (U1 k p) Source # 

Associated Types

type Rep (U1 k p) :: * -> * Source #

Methods

from :: U1 k p -> Rep (U1 k p) x Source #

to :: Rep (U1 k p) x -> U1 k p Source #

Generic (a, b) Source # 

Associated Types

type Rep (a, b) :: * -> * Source #

Methods

from :: (a, b) -> Rep (a, b) x Source #

to :: Rep (a, b) x -> (a, b) Source #

Generic (Proxy k t) Source # 

Associated Types

type Rep (Proxy k t) :: * -> * Source #

Methods

from :: Proxy k t -> Rep (Proxy k t) x Source #

to :: Rep (Proxy k t) x -> Proxy k t Source #

Generic (WrappedMonad m a) Source # 

Associated Types

type Rep (WrappedMonad m a) :: * -> * Source #

Methods

from :: WrappedMonad m a -> Rep (WrappedMonad m a) x Source #

to :: Rep (WrappedMonad m a) x -> WrappedMonad m a Source #

Generic (Arg a b) Source # 

Associated Types

type Rep (Arg a b) :: * -> * Source #

Methods

from :: Arg a b -> Rep (Arg a b) x Source #

to :: Rep (Arg a b) x -> Arg a b Source #

Generic (Rec1 k f p) Source # 

Associated Types

type Rep (Rec1 k f p) :: * -> * Source #

Methods

from :: Rec1 k f p -> Rep (Rec1 k f p) x Source #

to :: Rep (Rec1 k f p) x -> Rec1 k f p Source #

Generic (URec k Word p) Source # 

Associated Types

type Rep (URec k Word p) :: * -> * Source #

Methods

from :: URec k Word p -> Rep (URec k Word p) x Source #

to :: Rep (URec k Word p) x -> URec k Word p Source #

Generic (URec k Int p) Source # 

Associated Types

type Rep (URec k Int p) :: * -> * Source #

Methods

from :: URec k Int p -> Rep (URec k Int p) x Source #

to :: Rep (URec k Int p) x -> URec k Int p Source #

Generic (URec k Float p) Source # 

Associated Types

type Rep (URec k Float p) :: * -> * Source #

Methods

from :: URec k Float p -> Rep (URec k Float p) x Source #

to :: Rep (URec k Float p) x -> URec k Float p Source #

Generic (URec k Double p) Source # 

Associated Types

type Rep (URec k Double p) :: * -> * Source #

Methods

from :: URec k Double p -> Rep (URec k Double p) x Source #

to :: Rep (URec k Double p) x -> URec k Double p Source #

Generic (URec k Char p) Source # 

Associated Types

type Rep (URec k Char p) :: * -> * Source #

Methods

from :: URec k Char p -> Rep (URec k Char p) x Source #

to :: Rep (URec k Char p) x -> URec k Char p Source #

Generic (URec k (Ptr ()) p) Source # 

Associated Types

type Rep (URec k (Ptr ()) p) :: * -> * Source #

Methods

from :: URec k (Ptr ()) p -> Rep (URec k (Ptr ()) p) x Source #

to :: Rep (URec k (Ptr ()) p) x -> URec k (Ptr ()) p Source #

Generic (a, b, c) Source # 

Associated Types

type Rep (a, b, c) :: * -> * Source #

Methods

from :: (a, b, c) -> Rep (a, b, c) x Source #

to :: Rep (a, b, c) x -> (a, b, c) Source #

Generic (Alt k f a) Source # 

Associated Types

type Rep (Alt k f a) :: * -> * Source #

Methods

from :: Alt k f a -> Rep (Alt k f a) x Source #

to :: Rep (Alt k f a) x -> Alt k f a Source #

Generic (Const k a b) Source # 

Associated Types

type Rep (Const k a b) :: * -> * Source #

Methods

from :: Const k a b -> Rep (Const k a b) x Source #

to :: Rep (Const k a b) x -> Const k a b Source #

Generic (WrappedArrow a b c) Source # 

Associated Types

type Rep (WrappedArrow a b c) :: * -> * Source #

Methods

from :: WrappedArrow a b c -> Rep (WrappedArrow a b c) x Source #

to :: Rep (WrappedArrow a b c) x -> WrappedArrow a b c Source #

Generic (K1 k i c p) Source # 

Associated Types

type Rep (K1 k i c p) :: * -> * Source #

Methods

from :: K1 k i c p -> Rep (K1 k i c p) x Source #

to :: Rep (K1 k i c p) x -> K1 k i c p Source #

Generic ((:+:) k f g p) Source # 

Associated Types

type Rep ((k :+: f) g p) :: * -> * Source #

Methods

from :: (k :+: f) g p -> Rep ((k :+: f) g p) x Source #

to :: Rep ((k :+: f) g p) x -> (k :+: f) g p Source #

Generic ((:*:) k f g p) Source # 

Associated Types

type Rep ((k :*: f) g p) :: * -> * Source #

Methods

from :: (k :*: f) g p -> Rep ((k :*: f) g p) x Source #

to :: Rep ((k :*: f) g p) x -> (k :*: f) g p Source #

Generic (a, b, c, d) Source # 

Associated Types

type Rep (a, b, c, d) :: * -> * Source #

Methods

from :: (a, b, c, d) -> Rep (a, b, c, d) x Source #

to :: Rep (a, b, c, d) x -> (a, b, c, d) Source #

Generic (Sum k f g a) Source # 

Associated Types

type Rep (Sum k f g a) :: * -> * Source #

Methods

from :: Sum k f g a -> Rep (Sum k f g a) x Source #

to :: Rep (Sum k f g a) x -> Sum k f g a Source #

Generic (Product k f g a) Source # 

Associated Types

type Rep (Product k f g a) :: * -> * Source #

Methods

from :: Product k f g a -> Rep (Product k f g a) x Source #

to :: Rep (Product k f g a) x -> Product k f g a Source #

Generic (M1 k i c f p) Source # 

Associated Types

type Rep (M1 k i c f p) :: * -> * Source #

Methods

from :: M1 k i c f p -> Rep (M1 k i c f p) x Source #

to :: Rep (M1 k i c f p) x -> M1 k i c f p Source #

Generic ((:.:) k2 k1 f g p) Source # 

Associated Types

type Rep ((k2 :.: k1) f g p) :: * -> * Source #

Methods

from :: (k2 :.: k1) f g p -> Rep ((k2 :.: k1) f g p) x Source #

to :: Rep ((k2 :.: k1) f g p) x -> (k2 :.: k1) f g p Source #

Generic (a, b, c, d, e) Source # 

Associated Types

type Rep (a, b, c, d, e) :: * -> * Source #

Methods

from :: (a, b, c, d, e) -> Rep (a, b, c, d, e) x Source #

to :: Rep (a, b, c, d, e) x -> (a, b, c, d, e) Source #

Generic (Compose k1 k2 f g a) Source # 

Associated Types

type Rep (Compose k1 k2 f g a) :: * -> * Source #

Methods

from :: Compose k1 k2 f g a -> Rep (Compose k1 k2 f g a) x Source #

to :: Rep (Compose k1 k2 f g a) x -> Compose k1 k2 f g a Source #

Generic (a, b, c, d, e, f) Source # 

Associated Types

type Rep (a, b, c, d, e, f) :: * -> * Source #

Methods

from :: (a, b, c, d, e, f) -> Rep (a, b, c, d, e, f) x Source #

to :: Rep (a, b, c, d, e, f) x -> (a, b, c, d, e, f) Source #

Generic (a, b, c, d, e, f, g) Source # 

Associated Types

type Rep (a, b, c, d, e, f, g) :: * -> * Source #

Methods

from :: (a, b, c, d, e, f, g) -> Rep (a, b, c, d, e, f, g) x Source #

to :: Rep (a, b, c, d, e, f, g) x -> (a, b, c, d, e, f, g) Source #

class Generic1 (f :: k -> *) where Source #

Representable types of kind * -> * (or kind k -> *, when PolyKinds is enabled). This class is derivable in GHC with the DeriveGeneric flag on.

Minimal complete definition

from1, to1

Associated Types

type Rep1 f :: k -> * Source #

Generic representation type

Methods

from1 :: f a -> Rep1 f a Source #

Convert from the datatype to its representation

to1 :: Rep1 f a -> f a Source #

Convert from the representation to the datatype

Instances

Generic1 k (U1 k) Source # 

Associated Types

type Rep1 (U1 k) (f :: U1 k -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (U1 k) f a Source #

to1 :: Rep1 (U1 k) f a -> f a Source #

Generic1 k (V1 k) Source # 

Associated Types

type Rep1 (V1 k) (f :: V1 k -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (V1 k) f a Source #

to1 :: Rep1 (V1 k) f a -> f a Source #

Generic1 k (Proxy k) Source # 

Associated Types

type Rep1 (Proxy k) (f :: Proxy k -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Proxy k) f a Source #

to1 :: Rep1 (Proxy k) f a -> f a Source #

Generic1 k (URec k Word) Source # 

Associated Types

type Rep1 (URec k Word) (f :: URec k Word -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Word) f a Source #

to1 :: Rep1 (URec k Word) f a -> f a Source #

Generic1 k (URec k Int) Source # 

Associated Types

type Rep1 (URec k Int) (f :: URec k Int -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Int) f a Source #

to1 :: Rep1 (URec k Int) f a -> f a Source #

Generic1 k (URec k Float) Source # 

Associated Types

type Rep1 (URec k Float) (f :: URec k Float -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Float) f a Source #

to1 :: Rep1 (URec k Float) f a -> f a Source #

Generic1 k (URec k Double) Source # 

Associated Types

type Rep1 (URec k Double) (f :: URec k Double -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Double) f a Source #

to1 :: Rep1 (URec k Double) f a -> f a Source #

Generic1 k (URec k Char) Source # 

Associated Types

type Rep1 (URec k Char) (f :: URec k Char -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k Char) f a Source #

to1 :: Rep1 (URec k Char) f a -> f a Source #

Generic1 k (URec k (Ptr ())) Source # 

Associated Types

type Rep1 (URec k (Ptr ())) (f :: URec k (Ptr ()) -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (URec k (Ptr ())) f a Source #

to1 :: Rep1 (URec k (Ptr ())) f a -> f a Source #

Generic1 k (Rec1 k f) Source # 

Associated Types

type Rep1 (Rec1 k f) (f :: Rec1 k f -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Rec1 k f) f a Source #

to1 :: Rep1 (Rec1 k f) f a -> f a Source #

Generic1 k (Alt k f) Source # 

Associated Types

type Rep1 (Alt k f) (f :: Alt k f -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Alt k f) f a Source #

to1 :: Rep1 (Alt k f) f a -> f a Source #

Generic1 k (Const k a) Source # 

Associated Types

type Rep1 (Const k a) (f :: Const k a -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Const k a) f a Source #

to1 :: Rep1 (Const k a) f a -> f a Source #

Generic1 k ((:*:) k f g) Source # 

Associated Types

type Rep1 ((k :*: f) g) (f :: (k :*: f) g -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((k :*: f) g) f a Source #

to1 :: Rep1 ((k :*: f) g) f a -> f a Source #

Generic1 k ((:+:) k f g) Source # 

Associated Types

type Rep1 ((k :+: f) g) (f :: (k :+: f) g -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((k :+: f) g) f a Source #

to1 :: Rep1 ((k :+: f) g) f a -> f a Source #

Generic1 k (K1 k i c) Source # 

Associated Types

type Rep1 (K1 k i c) (f :: K1 k i c -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (K1 k i c) f a Source #

to1 :: Rep1 (K1 k i c) f a -> f a Source #

Generic1 k (Sum k f g) Source # 

Associated Types

type Rep1 (Sum k f g) (f :: Sum k f g -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Sum k f g) f a Source #

to1 :: Rep1 (Sum k f g) f a -> f a Source #

Generic1 k (Product k f g) Source # 

Associated Types

type Rep1 (Product k f g) (f :: Product k f g -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Product k f g) f a Source #

to1 :: Rep1 (Product k f g) f a -> f a Source #

Functor f => Generic1 k ((:.:) * k f g) Source # 

Associated Types

type Rep1 ((* :.: k) f g) (f :: (* :.: k) f g -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((* :.: k) f g) f a Source #

to1 :: Rep1 ((* :.: k) f g) f a -> f a Source #

Generic1 k (M1 k i c f) Source # 

Associated Types

type Rep1 (M1 k i c f) (f :: M1 k i c f -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (M1 k i c f) f a Source #

to1 :: Rep1 (M1 k i c f) f a -> f a Source #

Functor f => Generic1 k (Compose * k f g) Source # 

Associated Types

type Rep1 (Compose * k f g) (f :: Compose * k f g -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Compose * k f g) f a Source #

to1 :: Rep1 (Compose * k f g) f a -> f a Source #

Generic1 * [] Source # 

Associated Types

type Rep1 [] (f :: [] -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 [] f a Source #

to1 :: Rep1 [] f a -> f a Source #

Generic1 * Maybe Source # 

Associated Types

type Rep1 Maybe (f :: Maybe -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Maybe f a Source #

to1 :: Rep1 Maybe f a -> f a Source #

Generic1 * Par1 Source # 

Associated Types

type Rep1 Par1 (f :: Par1 -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Par1 f a Source #

to1 :: Rep1 Par1 f a -> f a Source #

Generic1 * Last Source # 

Associated Types

type Rep1 Last (f :: Last -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Last f a Source #

to1 :: Rep1 Last f a -> f a Source #

Generic1 * First Source # 

Associated Types

type Rep1 First (f :: First -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 First f a Source #

to1 :: Rep1 First f a -> f a Source #

Generic1 * Product Source # 

Associated Types

type Rep1 Product (f :: Product -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Product f a Source #

to1 :: Rep1 Product f a -> f a Source #

Generic1 * Sum Source # 

Associated Types

type Rep1 Sum (f :: Sum -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Sum f a Source #

to1 :: Rep1 Sum f a -> f a Source #

Generic1 * Dual Source # 

Associated Types

type Rep1 Dual (f :: Dual -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Dual f a Source #

to1 :: Rep1 Dual f a -> f a Source #

Generic1 * Identity Source # 

Associated Types

type Rep1 Identity (f :: Identity -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Identity f a Source #

to1 :: Rep1 Identity f a -> f a Source #

Generic1 * ZipList Source # 

Associated Types

type Rep1 ZipList (f :: ZipList -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ZipList f a Source #

to1 :: Rep1 ZipList f a -> f a Source #

Generic1 * NonEmpty Source # 

Associated Types

type Rep1 NonEmpty (f :: NonEmpty -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 NonEmpty f a Source #

to1 :: Rep1 NonEmpty f a -> f a Source #

Generic1 * Option Source # 

Associated Types

type Rep1 Option (f :: Option -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Option f a Source #

to1 :: Rep1 Option f a -> f a Source #

Generic1 * WrappedMonoid Source # 

Associated Types

type Rep1 WrappedMonoid (f :: WrappedMonoid -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 WrappedMonoid f a Source #

to1 :: Rep1 WrappedMonoid f a -> f a Source #

Generic1 * Last Source # 

Associated Types

type Rep1 Last (f :: Last -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Last f a Source #

to1 :: Rep1 Last f a -> f a Source #

Generic1 * First Source # 

Associated Types

type Rep1 First (f :: First -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 First f a Source #

to1 :: Rep1 First f a -> f a Source #

Generic1 * Max Source # 

Associated Types

type Rep1 Max (f :: Max -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Max f a Source #

to1 :: Rep1 Max f a -> f a Source #

Generic1 * Min Source # 

Associated Types

type Rep1 Min (f :: Min -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Min f a Source #

to1 :: Rep1 Min f a -> f a Source #

Generic1 * Complex Source # 

Associated Types

type Rep1 Complex (f :: Complex -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 Complex f a Source #

to1 :: Rep1 Complex f a -> f a Source #

Generic1 * (Either a) Source # 

Associated Types

type Rep1 (Either a) (f :: Either a -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Either a) f a Source #

to1 :: Rep1 (Either a) f a -> f a Source #

Generic1 * ((,) a) Source # 

Associated Types

type Rep1 ((,) a) (f :: (,) a -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((,) a) f a Source #

to1 :: Rep1 ((,) a) f a -> f a Source #

Generic1 * (WrappedMonad m) Source # 

Associated Types

type Rep1 (WrappedMonad m) (f :: WrappedMonad m -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (WrappedMonad m) f a Source #

to1 :: Rep1 (WrappedMonad m) f a -> f a Source #

Generic1 * (Arg a) Source # 

Associated Types

type Rep1 (Arg a) (f :: Arg a -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (Arg a) f a Source #

to1 :: Rep1 (Arg a) f a -> f a Source #

Generic1 * ((,,) a b) Source # 

Associated Types

type Rep1 ((,,) a b) (f :: (,,) a b -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((,,) a b) f a Source #

to1 :: Rep1 ((,,) a b) f a -> f a Source #

Generic1 * (WrappedArrow a b) Source # 

Associated Types

type Rep1 (WrappedArrow a b) (f :: WrappedArrow a b -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 (WrappedArrow a b) f a Source #

to1 :: Rep1 (WrappedArrow a b) f a -> f a Source #

Generic1 * ((,,,) a b c) Source # 

Associated Types

type Rep1 ((,,,) a b c) (f :: (,,,) a b c -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((,,,) a b c) f a Source #

to1 :: Rep1 ((,,,) a b c) f a -> f a Source #

Generic1 * ((,,,,) a b c d) Source # 

Associated Types

type Rep1 ((,,,,) a b c d) (f :: (,,,,) a b c d -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((,,,,) a b c d) f a Source #

to1 :: Rep1 ((,,,,) a b c d) f a -> f a Source #

Generic1 * ((,,,,,) a b c d e) Source # 

Associated Types

type Rep1 ((,,,,,) a b c d e) (f :: (,,,,,) a b c d e -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((,,,,,) a b c d e) f a Source #

to1 :: Rep1 ((,,,,,) a b c d e) f a -> f a Source #

Generic1 * ((,,,,,,) a b c d e f) Source # 

Associated Types

type Rep1 ((,,,,,,) a b c d e f) (f :: (,,,,,,) a b c d e f -> *) :: k -> * Source #

Methods

from1 :: f a -> Rep1 ((,,,,,,) a b c d e f) f a Source #

to1 :: Rep1 ((,,,,,,) a b c d e f) f a -> f a Source #