// devela::text::char::namespace
//
//! Defines the [`Char`] namespace.
//
// TOC
// - struct Char
// - methods over u16
// Char<char>
// Char<u16>
// Char<u32>
// Char<u8 | &[u8] | &[u8; N]>
/// Unicode scalars-related low-level *const* operations.
///
/// # Methods
/// - [over `char`](#methods-over-char)
/// - [over `u32`](#methods-over-u32)
/// - [over `u16`](#methods-over-u16)
/// - [over `u8`](#methods-over-u8)
/// - [over `&[u8]`](#methods-over-u8-slice)
///
/// See also [`Str`][crate::Str].
;