| Maintainer | Bas van Dijk <v.dijk.bas@gmail.com> |
|---|---|
| Safe Haskell | Safe |
Text.Repr
Contents
Description
Textual representation of values.
- data Repr α
- extract :: Repr α -> α
- renderer :: Repr α -> Renderer
- type Renderer = Precedence -> Fixity -> DString
- type Precedence = Int
- data Fixity
- (<?>) :: Repr α -> DString -> Repr α
- pure :: Show α => α -> Repr α
- repr :: α -> Renderer -> Repr α
- constant :: α -> DString -> Repr α
- to :: (α -> β) -> Repr α -> β
- to2 :: (α -> β -> γ) -> Repr α -> Repr β -> γ
- app :: (α -> β) -> DString -> Repr α -> Repr β
- app2 :: (α -> β -> γ) -> DString -> Repr α -> Repr β -> Repr γ
- infx :: Fixity -> Precedence -> (α -> β -> γ) -> DString -> Repr α -> Repr β -> Repr γ
Documentation
Repr α is a value of type α paired with a way to render that value to
its textual representation.
Reprs follow the property that given a Repr r if you evaluate the textual
representation of r you should get the value or r.
Note that Repr α has an instance for most classes in base provided that α
has instances for the respected classes. This allows you to write a numeric
expression of type Repr α. For example:
*Repr> let r = 1.5 + 2 + (3 + (-4) * (5 - pi / sqrt 6)) :: Repr Double
You can extract the value of r:
*Repr> extract r 17.281195923884734
And you can render r to its textual representation using show:
*Repr> show r "1.5 + 2.0 + (3.0 + negate 4.0 * (5.0 - pi / sqrt 6.0))"
Instances
| Typeable1 Repr | |
| Bounded α => Bounded (Repr α) | |
| Enum α => Enum (Repr α) | |
| Eq α => Eq (Repr α) | |
| (Fractional (Repr α), Floating α, Show α) => Floating (Repr α) | |
| (Num (Repr α), Fractional α, Show α) => Fractional (Repr α) | |
| (Real (Repr α), Enum (Repr α), Integral α, Show α) => Integral (Repr α) | |
| (Num α, Show α) => Num (Repr α) | |
| (Eq (Repr α), Ord α) => Ord (Repr α) | |
| Read α => Read (Repr α) | |
| (Num (Repr α), Ord (Repr α), Real α, Show α) => Real (Repr α) | |
| (RealFrac (Repr α), Floating (Repr α), RealFloat α, Show α) => RealFloat (Repr α) | |
| (Real (Repr α), Fractional (Repr α), RealFrac α, Show α) => RealFrac (Repr α) | |
| Show (Repr α) | |
| (Ord (Repr α), Ix α) => Ix (Repr α) | |
| IsString α => IsString (Repr α) | |
| HasResolution α => HasResolution (Repr α) | |
| Monoid α => Monoid (Repr α) | |
| (Show α, Storable α) => Storable (Repr α) | |
| (Eq (Repr α), Bits α, Show α) => Bits (Repr α) | |
| (Typeable (Repr α), Show (Repr α), Exception α) => Exception (Repr α) | |
| (Random α, Show α) => Random (Repr α) |
type Renderer = Precedence -> Fixity -> DStringSource
To render you need to supply the precedence and fixity of the enclosing context.
For more documentation about precedence and fixity see:
http://haskell.org/onlinereport/decls.html#sect4.4.2
The reason the renderer returns a DString, instead of for example a String
has to do with efficiency. The rendering of expressions involves lots of
left-factored appends i.e.: ((a ++ b) ++ c) ++ d. A DString, which is
equivalent to a ShowS, has a O(1) append operation while a String has a O(n)
append.
type Precedence = IntSource
The precedence of operators and function application.
- Operators usually have a precedence in the range of 0 to 9.
- Function application always has precedence 10.
Fixity of operators.
(<?>) :: Repr α -> DString -> Repr αSource
x <?> s annotates the rendering with the given string.
The rendering wil look like: "({- s -} ...)" where ... is the rendering
of x.
This combinator is handy when you want to render the ouput of a function and you
want to see how the parameters of the function contribute to the result. For
example, suppose you defined the following function f:
f p0 p1 p2 = p0 ^ 2 + sqrt p1 * ([p2..] !! 10)
You can then apply f to some parameters annotated with some descriptive
strings (the name of the parameter is usally a good idea):
f (1 <?> "p0") (2 <?> "p1") (3 <?> "p2")
The rendering will then look like:
"({- p0 -} fromInteger 1) * ({- p0 -} fromInteger 1) + sqrt ({- p1 -} (fromInteger 2)) * enumFrom ({- p2 -} (fromInteger 3)) !! 10"
pure :: Show α => α -> Repr αSource
pure x constructs a Repr which has x as value and the showed x
as rendering. For example:
*Repr> let r = pure [1,2,3] *Repr> extract r [1,2,3] *Repr> show r "[1,2,3]"
Utilities
Handy utilities when writing type class instances for Reprs.