readsPrec -package:polyparse

attempts to parse a value from the front of the string, returning a list of (parsed value, remaining string) pairs. If there is no successful parse, the returned list is empty. Derived instances of Read and Show satisfy the following: That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.
Lift the standard readsPrec and readList functions through the type constructor.
Lift the standard readsPrec function through the type constructor.
A default readsPrec implementation for Generic1 instances that leverages Read1.
readsPrec function for an application of the type constructor based on readsPrec and readList functions for the argument type.
readsPrec function for an application of the type constructor based on readsPrec and readList functions for the argument types.
Note: uses ReadS.
A sensible default liftReadsPrec implementation for Generic1 instances.
Like liftReadsPrecDefault, but with configurable Options. Currently, the Options have no effect (but this may change in the future).
Note: uses ReadS
Generates a lambda expression which behaves like liftReadsPrec (without requiring a Read1 instance). This function is not available with transformers-0.4.
Generates a lambda expression which behaves like liftReadsPrec2 (without requiring a Read2 instance). This function is not available with transformers-0.4.