For decimal and scientific numbers (e.g., 1.23
, 3.12e10
).
Examples:
1.23
is syntax forOfScientific.ofScientific (nat_lit 123) true (nat_lit 2)
121e100
is syntax forOfScientific.ofScientific (nat_lit 121) false (nat_lit 100)
Note the use of nat_lit
; there is no wrapping OfNat.ofNat
in the resulting term.
Produces a value from the given mantissa, exponent sign, and decimal exponent. For the exponent sign,
true
indicates a negative exponent.Examples:
1.23
is syntax forOfScientific.ofScientific (nat_lit 123) true (nat_lit 2)
121e100
is syntax forOfScientific.ofScientific (nat_lit 121) false (nat_lit 100)
Note the use of
nat_lit
; there is no wrappingOfNat.ofNat
in the resulting term.
Constructs a Float
from the given mantissa, sign, and exponent values.
This function is part of the implementation of the OfScientific Float
instance that is used to
interpret floating-point literals.
The OfScientific Float
must have priority higher than mid
since
the default instance Neg Int
has mid
priority.
#check -42.0 -- must be Float
Equations
- instOfScientificFloat = { ofScientific := Float.ofScientific }
Converts a natural number into the closest-possible 64-bit floating-point number, or an infinite
floating-point value if the range of Float
is exceeded.
Equations
Converts an integer into the closest-possible 64-bit floating-point number, or positive or negative
infinite floating-point value if the range of Float
is exceeded.
Equations
- Float.ofInt (Int.ofNat n) = Float.ofNat n
- Float.ofInt (Int.negSucc n) = (Float.ofNat n.succ).neg
Equations
- instOfNatFloat = { ofNat := Float.ofNat n }
Converts a natural number into the closest-possible 64-bit floating-point number, or an infinite
floating-point value if the range of Float
is exceeded.
Equations
- n.toFloat = Float.ofNat n
Constructs a Float32
from the given mantissa, sign, and exponent values.
This function is part of the implementation of the OfScientific Float32
instance that is used to
interpret floating-point literals.
Equations
- instOfScientificFloat32 = { ofScientific := Float32.ofScientific }
Converts a natural number into the closest-possible 32-bit floating-point number, or an infinite
floating-point value if the range of Float32
is exceeded.
Equations
Converts an integer into the closest-possible 32-bit floating-point number, or positive or negative
infinite floating-point value if the range of Float32
is exceeded.
Equations
- Float32.ofInt (Int.ofNat n) = Float32.ofNat n
- Float32.ofInt (Int.negSucc n) = (Float32.ofNat n.succ).neg
Equations
- instOfNatFloat32 = { ofNat := Float32.ofNat n }
Converts a natural number into the closest-possible 32-bit floating-point number, or an infinite
floating-point value if the range of Float32
is exceeded.
Equations
- n.toFloat32 = Float32.ofNat n