[−][src]Function encoding_rs::mem::is_utf16_code_unit_bidi
pub fn is_utf16_code_unit_bidi(u: u16) -> bool
Checks whether a UTF-16 code unit triggers right-to-left processing.
The check is done on a Unicode block basis without regard to assigned vs. unassigned code points in the block. Additionally, the four RIGHT-TO-LEFT FOO controls in General Punctuation are checked for. Control characters that are technically bidi controls but do not cause right-to-left behavior without the presence of right-to-left characters or right-to-left controls are not checked for.
Since supplementary-plane right-to-left blocks are identifiable from the
high surrogate without examining the low surrogate, this function returns
true
for such high surrogates making the function suitable for handling
supplementary-plane text without decoding surrogate pairs to scalar
values. Obviously, such high surrogates are then reported as right-to-left
even if actually unpaired.