deriving-compat-0.6: Backports of GHC deriving extensions
Copyright(C) 2015-2017 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
PortabilityTemplate Haskell
Safe HaskellNone
LanguageHaskell2010

Text.Read.Deriving.Internal

Description

Exports functions to mechanically derive Read, Read1, and Read2 instances.

Note: this is an internal module, and as such, the API presented here is not guaranteed to be stable, even between minor releases of this library.

Synopsis

Read

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

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

deriveReadOptions :: ReadOptions -> Name -> Q [Dec] Source #

Like deriveRead, but takes a ReadOptions argument.

makeReadsPrec :: Name -> Q Exp Source #

Generates a lambda expression which behaves like readsPrec (without requiring a Read instance).

makeReadPrec :: Name -> Q Exp Source #

Generates a lambda expression which behaves like readPrec (without requiring a Read instance).

Read1

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

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

deriveRead1Options :: ReadOptions -> Name -> Q [Dec] Source #

Like deriveRead1, but takes a ReadOptions argument.

makeLiftReadsPrec :: Name -> Q Exp Source #

Generates a lambda expression which behaves like liftReadsPrec (without requiring a Read1 instance).

This function is not available with transformers-0.4.

makeLiftReadPrec :: Name -> Q Exp Source #

Generates a lambda expression which behaves like liftReadPrec (without requiring a Read1 instance).

This function is only available with base-4.10 or later.

makeReadPrec1 :: Name -> Q Exp Source #

Generates a lambda expression which behaves like readPrec1 (without requiring a Read1 instance).

This function is only available with base-4.10 or later.

makeReadsPrec1 :: Name -> Q Exp Source #

Generates a lambda expression which behaves like readsPrec1 (without requiring a Read1 instance).

Read2

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

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

This function is not available with transformers-0.4.

deriveRead2Options :: ReadOptions -> Name -> Q [Dec] Source #

Like deriveRead2, but takes a ReadOptions argument.

This function is not available with transformers-0.4.

makeLiftReadsPrec2 :: Name -> Q Exp Source #

Generates a lambda expression which behaves like liftReadsPrec2 (without requiring a Read2 instance).

This function is not available with transformers-0.4.

makeLiftReadPrec2 :: Name -> Q Exp Source #

Generates a lambda expression which behaves like liftReadPrec2 (without requiring a Read2 instance).

This function is only available with base-4.10 or later.

makeReadPrec2 :: Name -> Q Exp Source #

Generates a lambda expression which behaves like readPrec2 (without requiring a Read2 instance).

This function is only available with base-4.10 or later.

makeReadsPrec2 :: Name -> Q Exp Source #

Generates a lambda expression which behaves like readsPrec2 (without requiring a Read2 instance).

This function is not available with transformers-0.4.

ReadOptions

newtype ReadOptions Source #

Options that further configure how the functions in Text.Read.Deriving should behave.

Constructors

ReadOptions 

Fields

  • useReadPrec :: Bool

    If True:

    • Derived Read instances will implement readPrec, not readsPrec, and will provide a default implementation of readListPrec in terms of readPrec.
    • If built against base-4.10 or later, derived Read1/Read2 instances will implement liftReadPrec/liftReadPrec2, not liftReadsPrec/liftReadsPrec2, and will provide default implementations of liftReadListPrec/liftReadListPrec2 in terms of liftReadPrec/liftReadPrec2. If built against an earlier version of base, derived Read1/Read2 instances are not affected, so they will act as if this flag were False.

    If False:

    • Derived Read instances will implement readsPrec.
    • Derived Read1 instances will implement readsPrec1 (if built against transformers-0.4) or liftReadsPrec (otherwise). If not built against transformers-0.4, derived Read2 instances will implement liftReadsPrec2.

    It's generally a good idea to enable this option, since readPrec and friends are more efficient than readsPrec and friends, since the former use the efficient ReadPrec parser datatype while the latter use the slower, list-based ReadS type.