@hackage repr0.4.1.3
Render overloaded expressions to their textual representation.
Categories
License
BSD-3-Clause
Maintainer
v.dijk.bas@gmail.com
Links
Versions
Installation
Dependencies (5)
- base >=3 && <4.7
- base-unicode-symbols >=0.1.1 && <0.3
- dstring >=0.3.0.1 && <0.5
- random >=1.0 && <1.1
- string-combinators >=0.6 && <0.7 Show all…
Dependents (1)
@hackage/acme-everything
This library allows you to render overloaded expressions to their textual representation. For example:
*Repr> let r = 1.5 + 2 + (3 + (-4) * (5 - pi / sqrt 6)) :: Repr Double
*Repr> extract r
17.281195923884734
*Repr> show rd
"1.5 + 2.0 + (3.0 + negate 4.0 * (5.0 - pi / sqrt 6.0))"