Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// numera::real
//
//! Real numbers, subsets of $\R$.
//

pub mod float;

pub use all::*;
pub(crate) mod all {
    #[doc(inline)]
    // pub use super::{family::AllReals, trait_real::Real};
    pub use super::float::all::*;
}