syb-0.7.2.4: Scrap Your Boilerplate
Copyright(c) The University of Glasgow CWI 2001--2003
LicenseBSD-style (see the LICENSE file)
Maintainergenerics@haskell.org
Stabilityexperimental
Portabilitynon-portable (uses Data.Generics.Basics)
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Generics.Text

Description

"Scrap your boilerplate" --- Generic programming in Haskell See http://www.cs.uu.nl/wiki/GenericProgramming/SYB. The present module provides generic operations for text serialisation of terms.

Synopsis

Generic show

gshow :: Data a => a -> String Source #

Generic show: an alternative to "deriving Show"

Since: 0.1.0.0

gshows :: Data a => a -> ShowS Source #

Generic shows

Since: 0.2

Generic read

gread :: Data a => ReadS a Source #

Generic read: an alternative to "deriving Read"

Since: 0.1.0.0