Expand description
Functions for incrementing and decrementing char
s.
Functionsยง
- char_
to_ contiguous_ range - Converts a
char
to au32
. - contiguous_
range_ to_ char - Converts a
u32
to achar
; if allchar
s were arranged in ascending order, passing $u$ to this function would return the $u$thchar
. - decrement_
char - Decrements this
char
, skipping over the surrogate code points. - increment_
char - Increments this
char
, skipping over the surrogate code points.