textos 0.0.3

Texts, strings, formatting, unicode…
Documentation
// textos::unicode::string
//
//! Utf-8 strings.
//

mod counter;
mod non_nul;
mod strings;
mod u8string;

pub use all::*;
pub(crate) mod all {
    #[doc(inline)]
    pub use super::{non_nul::*, strings::Strings, u8string::*};

    #[doc(inline)]
    #[cfg(feature = "alloc")]
    pub use super::counter::counter_string;
}