1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
//! A Unicode scalar value.
//!
//! This is a structure that wraps an `NSTDChar32` (Rust's `char` primitive is not FFI safe). This
//! is done so that an `NSTDUnichar` can be created once and used a number of times without
//! worrying about Unicode validity.
use crate::{
core::optional::{gen_optional, NSTDOptional},
NSTDBool, NSTDChar32, NSTDUInt32,
};
use nstdapi::nstdapi;
/// Represents a unicode scalar value.
#[nstdapi]
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub struct NSTDUnichar {
/// The 32-bit value.
value: NSTDChar32,
}
impl From<char> for NSTDUnichar {
/// Converts a Rust `char` into an `NSTDUnichar`.
#[inline]
fn from(value: char) -> Self {
Self { value: value as _ }
}
}
impl From<NSTDUnichar> for char {
/// Converts an `NSTDUnichar` into a Rust `char`.
#[inline]
fn from(value: NSTDUnichar) -> Self {
// SAFETY: `value` is always a valid Unicode scalar value.
unsafe { char::from_u32_unchecked(value.value) }
}
}
gen_optional!(NSTDOptionalUnichar, NSTDUnichar);
/// Creates a new `NSTDUnichar` from a 32-bit character value.
///
/// # Parameters:
///
/// - `NSTDChar32 value` - The 32-bit character to be converted into an `NSTDUnichar`.
///
/// # Returns
///
/// `NSTDOptionalUnichar unichar` - The new Unicode scalar value on success.
#[inline]
#[nstdapi]
pub const fn nstd_core_unichar_new(value: NSTDChar32) -> NSTDOptionalUnichar {
match char::from_u32(value) {
Some(_) => NSTDOptional::Some(NSTDUnichar { value }),
_ => NSTDOptional::None,
}
}
/// Returns the Unicode replacement character (�).
///
/// # Returns
///
/// `NSTDUnichar replacement_char` - The Unicode replacement character (�).
///
/// # Example
///
/// ```
/// use nstd_sys::core::unichar::nstd_core_unichar_replacement;
///
/// assert!(unsafe { nstd_core_unichar_replacement() } == char::REPLACEMENT_CHARACTER.into());
/// ```
#[inline]
#[nstdapi]
pub const fn nstd_core_unichar_replacement() -> NSTDUnichar {
NSTDUnichar {
value: char::REPLACEMENT_CHARACTER as _,
}
}
/// Generates deterministic functions such as `is_alphabetic` or `is_numeric`.
macro_rules! gen_deterministic {
(
$(#[$meta:meta])*
$name: ident,
$method: ident
) => {
$(#[$meta])*
#[inline]
#[nstdapi]
pub fn $name(chr: NSTDUnichar) -> NSTDBool {
char::from(chr).$method()
}
};
}
gen_deterministic!(
/// Determines whether or not `chr` is an ASCII character.
///
/// # Parameters:
///
/// - `NSTDUnichar chr` - The character to check.
///
/// # Returns
///
/// `NSTDBool is_ascii` - `NSTD_TRUE` if `chr` is an ASCII character.
///
/// # Example
///
/// ```
/// use nstd_sys::{core::unichar::nstd_core_unichar_is_ascii, NSTD_FALSE};
///
/// unsafe {
/// assert!(nstd_core_unichar_is_ascii('='.into()) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_ascii('💯'.into()) == NSTD_FALSE);
/// }
/// ```
nstd_core_unichar_is_ascii,
is_ascii
);
gen_deterministic!(
/// Determines whether or not `chr` is alphabetic according to the Unicode standard.
///
/// # Parameters:
///
/// - `NSTDUnichar chr` - The character to check.
///
/// # Returns
///
/// `NSTDBool is_alphabetic` - `NSTD_TRUE` if `chr` is alphabetic.
///
/// # Example
///
/// ```
/// use nstd_sys::{core::unichar::nstd_core_unichar_is_alphabetic, NSTD_FALSE};
///
/// unsafe {
/// assert!(nstd_core_unichar_is_alphabetic('G'.into()) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_alphabetic('0'.into()) == NSTD_FALSE);
/// }
/// ```
nstd_core_unichar_is_alphabetic,
is_alphabetic
);
gen_deterministic!(
/// Determines whether or not `chr` is numeric according to the Unicode standard.
///
/// # Parameters:
///
/// - `NSTDUnichar chr` - The character to check.
///
/// # Returns
///
/// `NSTDBool is_numeric` - `NSTD_TRUE` if `chr` is numeric.
///
/// # Example
///
/// ```
/// use nstd_sys::{core::unichar::nstd_core_unichar_is_numeric, NSTD_FALSE};
///
/// unsafe {
/// assert!(nstd_core_unichar_is_numeric('9'.into()) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_numeric('a'.into()) == NSTD_FALSE);
/// }
/// ```
nstd_core_unichar_is_numeric,
is_numeric
);
gen_deterministic!(
/// Determines whether or not `chr` is alphabetic or numeric according to the Unicode standard.
///
/// # Parameters:
///
/// - `NSTDUnichar chr` - The character to check.
///
/// # Returns
///
/// `NSTDBool is_alphanumeric` - `NSTD_TRUE` if `chr` is alphabetic or numeric.
///
/// # Example
///
/// ```
/// use nstd_sys::{core::unichar::nstd_core_unichar_is_alphanumeric, NSTD_FALSE};
///
/// unsafe {
/// assert!(nstd_core_unichar_is_alphanumeric('Z'.into()) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_alphanumeric('5'.into()) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_alphanumeric(';'.into()) == NSTD_FALSE);
/// }
/// ```
nstd_core_unichar_is_alphanumeric,
is_alphanumeric
);
gen_deterministic!(
/// Determines whether or not `chr` is lowercase according to the Unicode standard.
///
/// # Parameters:
///
/// - `NSTDUnichar chr` - The character to check.
///
/// # Returns
///
/// `NSTDBool is_lowercase` - `NSTD_TRUE` if `chr` is lowercase.
///
/// # Example
///
/// ```
/// use nstd_sys::{core::unichar::nstd_core_unichar_is_lowercase, NSTD_FALSE};
///
/// unsafe {
/// assert!(nstd_core_unichar_is_lowercase('v'.into()) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_lowercase('M'.into()) == NSTD_FALSE);
/// }
/// ```
nstd_core_unichar_is_lowercase,
is_lowercase
);
gen_deterministic!(
/// Determines whether or not `chr` is uppercase according to the Unicode standard.
///
/// # Parameters:
///
/// - `NSTDUnichar chr` - The character to check.
///
/// # Returns
///
/// `NSTDBool is_uppercase` - `NSTD_TRUE` if `chr` is uppercase.
///
/// # Example
///
/// ```
/// use nstd_sys::{core::unichar::nstd_core_unichar_is_uppercase, NSTD_FALSE};
///
/// unsafe {
/// assert!(nstd_core_unichar_is_uppercase('P'.into()) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_uppercase('s'.into()) == NSTD_FALSE);
/// }
/// ```
nstd_core_unichar_is_uppercase,
is_uppercase
);
gen_deterministic!(
/// Determines whether or not `chr` is white space according to the Unicode standard.
///
/// # Parameters:
///
/// - `NSTDUnichar chr` - The character to check.
///
/// # Returns
///
/// `NSTDBool is_whitespace` - `NSTD_TRUE` if `chr` is white space.
///
/// # Example
///
/// ```
/// use nstd_sys::{core::unichar::nstd_core_unichar_is_whitespace, NSTD_FALSE};
///
/// unsafe {
/// assert!(nstd_core_unichar_is_whitespace('\n'.into()) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_whitespace('.'.into()) == NSTD_FALSE);
/// }
/// ```
nstd_core_unichar_is_whitespace,
is_whitespace
);
gen_deterministic!(
/// Determines whether or not `chr` is a control character according to the Unicode standard.
///
/// # Parameters:
///
/// - `NSTDUnichar chr` - The character to check.
///
/// # Returns
///
/// `NSTDBool is_control` - `NSTD_TRUE` if `chr` is a control character.
///
/// # Example
///
/// ```
/// use nstd_sys::{core::unichar::nstd_core_unichar_is_control, NSTD_FALSE};
///
/// unsafe {
/// assert!(nstd_core_unichar_is_control('\0'.into()) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_control('\\'.into()) == NSTD_FALSE);
/// }
/// ```
nstd_core_unichar_is_control,
is_control
);
/// Determines whether or not `chr` is a digit, depending on `radix`.
///
/// # Parameters:
///
/// - `NSTDUnichar chr` - The character to check.
///
/// - `NSTDUInt32 radix` - The base.
///
/// # Returns
///
/// `NSTDBool is_digit` - `NSTD_TRUE` if `chr` is a digit.
///
/// # Example
///
/// ```
/// use nstd_sys::{core::unichar::nstd_core_unichar_is_digit, NSTD_FALSE};
///
/// unsafe {
/// assert!(nstd_core_unichar_is_digit('5'.into(), 16) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_digit('E'.into(), 16) != NSTD_FALSE);
/// assert!(nstd_core_unichar_is_digit('F'.into(), 10) == NSTD_FALSE);
/// assert!(nstd_core_unichar_is_digit('0'.into(), 37) == NSTD_FALSE);
/// }
/// ```
#[inline]
#[nstdapi]
pub fn nstd_core_unichar_is_digit(chr: NSTDUnichar, radix: NSTDUInt32) -> NSTDBool {
match radix <= 36 {
true => char::from(chr).is_digit(radix),
false => false,
}
}