#![doc = crate::_DOC_TEXT_STR!()] #![doc = crate::_doc!(modules: crate::text; str)]
#![doc = crate::_doc!(flat:"text")]
#![doc = crate::_doc!(extends: str, string)]
mod _reexport;
mod array; mod buf; mod ext; mod namespace; mod small;
crate::structural_mods! { _mods {
pub use super::{
array::_all::*,
buf::*,
ext::*,
namespace::Str,
small::*,
};
}
_reexports {
pub use super::_reexport::*;
pub use crate::CStr;
#[cfg(feature = "alloc")]
pub use crate::CString;
}
}