// devela::text::char::_reexport_core
/// <span class="stab portability" title="re-exported from rust's `core`">`core`</span>
/// A 32-bit [Unicode scalar][scalar].
///
/// It can represent each and every scalar.
///
/// See also: [`char7`], [`char8`], [`char16`].
///
/// [scalar]: https://www.unicode.org/glossary/#unicode_scalar_value
/// [`char7`]: crate::char7
/// [`char8`]: crate::char8
/// [`char16`]: crate::char16
///
/// ---
/// ---
// NOTE: this reexport type is not recognized implicity by rustdoc, is it a BUG?
// TODO: minimal example and the search/make an ISSUE in rust-repo
pub type char = char;
// NOTE: replaced by `CharIter`
// _reexport! { rust: core::str,
// tag: crate::tags!(text iterator),
// doc: "An iterator over the [`char`][prim@char]s of a string slice.",
// @Chars as IterChars
// }