Expand description
Astro-float (astronomically large floating point numbers) is a library that implements arbitrary precision floating point numbers.
See main crate docs.
Modules§
- ctx
- Context is used in expressions returning
BigFloat
.
Structs§
- BigFloat
- A floating point number of arbitrary precision.
- Consts
- Constants cache contains arbitrary-precision mathematical constants.
Enums§
- Error
- Possible errors.
- Radix
- Radix.
- Rounding
Mode - Rounding modes.
- Sign
- Sign.
Constants§
- EXPONENT_
BIT_ SIZE - The size of exponent type in bits.
- EXPONENT_
MAX - Maximum exponent value.
- EXPONENT_
MIN - Minimum exponent value.
- INF_NEG
- Negative infinity.
- INF_POS
- Positive infinity.
- NAN
- Not a number.
- WORD_
BASE - Base of words.
- WORD_
BIT_ SIZE - Size of a word in bits.
- WORD_
MAX - Maximum value of a word.
- WORD_
SIGNIFICANT_ BIT - Word with the most significant bit set.
Traits§
- FromExt
- A trait for conversion with additional arguments.