GHC.Generics.Extra
Description
Extensions to the GHC.Generics module.
module GHC.Generics
data (c :=>: (f :: k -> Type)) (a :: k) where Source #
Constraints: used to represent constraints in a constructor.
data Showable a = Show a => a -> X a instance Generic (Showable a) where type Rep (Showable a) = (Show a) :=>: (K1 R a)
Constructors