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