/// Uppercase first char
///
/// # Examples
///
/// ```rust
/// assert_eq!("Abc", toolkit::text::uppercase_first_char("abc"));
/// ```
/// Lowercase first char
///
/// # Examples
///
/// ```rust
/// assert_eq!("aBC", toolkit::text::lowercase_first_char("ABC"));
/// ```