@hackage repr0.3.2
Render overloaded expressions to their textual representation.
Categories
License
BSD-3-Clause
Maintainer
v.dijk.bas@gmail.com
Links
Versions
Installation
Dependencies (6)
- base >=3 && <4.3
- base-unicode-symbols >=0.1.1 && <0.2
- dstring >=0.3.0.1 && <0.4
- random >=1.0 && <1.1
- string-combinators >=0.4 && <0.5
- to-string-class >=0.1.2 && <0.2 Show all…
Dependents (1)
@hackage/acme-everything
This library allows you to render overloaded expressions to their textual representation. For example:
*Repr> let rd = 1.5 + 2 + (3 + (-4) * (5 - pi / sqrt 6)) :: Repr Double *Repr> show rd "fromRational (3 % 2) + 2 + (3 + negate 4 * (5 - pi / sqrt 6))"