We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a new numeric type represented by Scientific. Use it for JSON (#168).
Possible conversions:
Integer <: Scientific
Scientific <: Literal
Scientific <: Rational
1E1000000000
Scientific <: Number
Integer
inexact: Scientific -> Number
Rational -> Maybe Scientific
Should literals be of type Scientific?
Scientific
Should Scientific exponent be limited? If so, how? Note max Double value is 1.7976931348623157E308.
Representation as Literal: would be as large rational.
Literal
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create a new numeric type represented by Scientific. Use it for JSON (#168).
Possible conversions:
Integer <: Scientific
: safe, but might conflict withScientific <: Literal
.Scientific <: Rational
(exact): unsafe, e.g.1E1000000000
.Scientific <: Number
(inexact): safe, ugly, not injective, would have to special-caseInteger
.inexact: Scientific -> Number
: safeRational -> Maybe Scientific
: safeShould literals be of type
Scientific
?Should
Scientific
exponent be limited? If so, how? Note max Double value is 1.7976931348623157E308.Representation as
Literal
: would be as large rational.The text was updated successfully, but these errors were encountered: