generic-deriving-1.6: Generic programming library for generalised deriving.

Portabilitynon-portable
Stabilityexperimental
Maintainergenerics@haskell.org
Safe HaskellSafe-Inferred

Generics.Deriving.ConNames

Contents

Description

Summary: Return the name of all the constructors of a type.

Synopsis

Functionality for retrieving the names of all the possible contructors

class ConNames f whereSource

Methods

gconNames :: f a -> [String]Source

Instances

(ConNames f, ConNames g) => ConNames (:+: f g) 
ConNames f => ConNames (D1 c f) 
Constructor c => ConNames (C1 c f) 

conNames :: (Generic a, ConNames (Rep a)) => a -> [String]Source

Return the name of all the constructors of the type of the given term.