#![doc = crate::_DOC_TEXT_FMT!()] #![doc = crate::_doc!(modules: crate::text; fmt)]
#![doc = crate::_doc!(flat:"text")]
#![doc = crate::_doc!(extends: fmt)]
mod _reexport_core;
#[cfg(feature = "alloc")]
mod _reexport_alloc;
mod buf; mod cat; mod debug; mod namespace; mod num;
crate::structural_mods! { _mods {
pub use super::namespace::*;
pub use super::{
buf::*,
cat::*,
debug::*,
num::_all::*,
};
}
_reexports {
pub use super::_reexport_core::*;
#[cfg(feature = "alloc")]
pub use super::_reexport_alloc::*;
}
_hidden {
pub use super::num::_hidden::*;
}
}