instant-generics-0.4: Generic programming library with a sum of products view

Portabilitynon-portable
Stabilityexperimental
Maintainergenerics@haskell.org
Safe HaskellNone

Generics.Instant.Functions.Show

Description

Simplified generic show function.

Documentation

class GShow a whereSource

Methods

gshow :: a -> StringSource

Instances

GShow Bool 
GShow Char 
GShow Double 
GShow Float 
GShow Int 
GShow Integer 
GShow [Char] 
GShow a => GShow [a] 
GShow a => GShow (Maybe a) 
(GShow a, GShow b) => GShow (a, b) 

gshowDefault :: (Representable a, GShow' (Rep a)) => a -> StringSource