Available on crate feature
core only.Expand description
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.
Structs
- Represents a unicode scalar value.
Functions
- Determines whether or not
chris alphabetic according to the Unicode standard. - Determines whether or not
chris alphabetic or numeric according to the Unicode standard. - Determines whether or not
chris an ASCII character. - Determines whether or not
chris a control character according to the Unicode standard. - Determines whether or not
chris a digit, depending onradix. - Determines whether or not
chris lowercase according to the Unicode standard. - Determines whether or not
chris numeric according to the Unicode standard. - Determines whether or not
chris uppercase according to the Unicode standard. - Determines whether or not
chris white space according to the Unicode standard. - Creates a new
NSTDUnicharfrom a 32-bit character value. - Returns the Unicode replacement character (�).
Type Aliases
- Represents an optional value of type
NSTDUnichar.