deriving-compat-0.3.3: Backports of GHC deriving extensions

Copyright(C) 2015-2016 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
PortabilityTemplate Haskell
Safe HaskellNone
LanguageHaskell2010

Data.Bounded.Deriving

Contents

Description

Exports functions to mechanically derive Bounded instances.

Synopsis

Bounded

deriveBounded :: Name -> Q [Dec] Source #

Generates a Bounded instance declaration for the given data type or data family instance.

makeMinBound :: Name -> Q Exp Source #

Generates a lambda expression which behaves like minBound (without requiring a Bounded instance).

makeMaxBound :: Name -> Q Exp Source #

Generates a lambda expression which behaves like maxBound (without requiring a Bounded instance).

deriveBounded limitations

Be aware of the following potential gotchas:

  • Type variables of kind * are assumed to have Bounded constraints. If this is not desirable, use makeMinBound or one of its cousins.