1//! Constants for the `f128` double-precision floating point type.
2//!
3//! *[See also the `f128` primitive type](primitive@f128).*
4//!
5//! Mathematically significant numbers are provided in the `consts` sub-module.
6
7#[cfg(test)]
8mod tests;
9
10#[unstable(feature = "f128", issue = "116909")]
11pub use core::f128::consts;
12