devela/text/char/impls/
mod.rs
1#[allow(unused_imports)]
10use super::*; mod c;
15#[cfg(feature = "_char16")]
16mod c16;
17#[cfg(feature = "_char7")]
18mod c7;
19#[cfg(feature = "_char8")]
20mod c8;
21
22macro_rules! impl_char {
26 () => {
27 impl_char![7|"_char7", 8|"_char8", 16|"_char16"];
28 };
29 ($( $bits:literal | $feature:literal ),+ ) => { $crate::paste! {
30 $(
31 #[cfg(feature = $feature)]
32 impl_char!(@[<char $bits>]);
33 )+
34 }};
35 (@$name:ident) => {
36
37 impl UnicodeScalar for $name {
40 const MIN: Self = Self::MIN;
41 const MAX: Self = Self::MAX;
42
43 fn byte_len(self) -> usize { self.byte_len() }
46 fn len_utf8(self) -> usize { self.len_utf8() }
47 fn len_utf16(self) -> usize { self.len_utf16() }
48 fn encode_utf8(self, dst: &mut [u8]) -> &mut str {
49 self.to_char().encode_utf8(dst)
50 }
51 fn to_utf8_bytes(self) -> [u8; 4] {
52 let dyn_array = self.to_utf8_bytes();
53 let mut array = [0u8; 4];
54 for i in 0..dyn_array.len() {
55 array[i] = dyn_array[i];
56 }
57 array
58 }
59 fn encode_utf16(self, dst: &mut [u16]) -> &mut [u16] {
60 self.to_char().encode_utf16(dst)
61 }
62 fn to_digit(self, radix: u32) -> Option<u32> { self.to_digit(radix) }
63 fn to_ascii_uppercase(self) -> Self { self.to_ascii_uppercase() }
64 fn to_ascii_lowercase(self) -> Self { self.to_ascii_lowercase() }
65
66 fn is_noncharacter(self) -> bool { self.is_noncharacter() }
69 fn is_digit(self, radix: u32) -> bool { self.is_digit(radix) }
70 fn is_control(self) -> bool { self.to_char().is_control() }
72 fn is_nul(self) -> bool { self.is_nul() }
73 fn is_alphabetic(self) -> bool { self.to_char().is_alphabetic() }
74 fn is_numeric(self) -> bool { self.to_char().is_numeric() }
75 fn is_alphanumeric(self) -> bool { self.to_char().is_alphanumeric() }
76 fn is_lowercase(self) -> bool { self.to_char().is_lowercase() }
77 fn is_uppercase(self) -> bool { self.to_char().is_uppercase() }
78 fn is_whitespace(self) -> bool { self.to_char().is_whitespace() }
79 fn is_ascii(self) -> bool { self.is_ascii() }
81 }
82
83 impl $name {
86 #[must_use]
90 pub const fn byte_len(self) -> usize { Char::byte_len(self.to_u32()) }
91
92 #[must_use]
94 pub const fn len_utf8(self) -> usize { self.to_char().len_utf8() }
95
96 #[must_use]
98 pub const fn len_utf16(self) -> usize { self.to_char().len_utf16() }
99
100 #[must_use]
111 pub const fn to_digit(self, radix: u32) -> Option<u32> {
112 self.to_char().to_digit(radix)
113 }
114
115 #[must_use]
119 pub const fn is_nul(self) -> bool { self.to_u32() == 0 }
120
121 #[must_use]
125 pub const fn is_digit(self, radix: u32) -> bool {
126 if let Some(_) = self.to_digit(radix) { true } else { false }
127 }
128 }
129 };
130}
131impl_char!();