textos 0.0.3

Texts, strings, formatting, unicode…
Documentation
// textos::unicode
//
//! Unicode-related types and functionality.
//
// - https://www.unicode.org/charts/

/* re-exports */

/// Re-export of the `unicode_blocks` crate.
///
#[doc(inline)]
pub use ::unicode_blocks;

#[doc(inline)]
pub use ::unicode_blocks::find_unicode_block;

pub mod char;
pub mod draw;
pub mod egc;
pub mod string;

pub use all::*;
pub(crate) mod all {
    #[doc(inline)]
    pub use super::{
        char::{Char16, Char24, Char32, Char7, Char8, Chars},
        draw::all::*,
        egc::*,
        find_unicode_block,
        string::all::*,
    };
}