mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
5b544f3b30
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
16 lines
647 B
Text
16 lines
647 B
Text
Arbitrary-precision floating-point numbers represented using
|
|
scientific notation.
|
|
|
|
A Scientific number is an arbitrary-precision floating-point number
|
|
represented using scientific notation.
|
|
|
|
A scientific number with coefficient c and base10Exponent e
|
|
corresponds to the Fractional number: fromInteger c * 10 ^^ e
|
|
|
|
Its primary use-case is to serve as the target of parsing floating
|
|
point numbers. Since the textual representation of floating point
|
|
numbers use scientific notation they can be efficiently parsed to a
|
|
Scientific number.
|
|
|
|
After uninstalling, run this command to unregister the package from
|
|
the ghc package database: ghc-pkg recache
|