macro_rules! MOVE { ($string:expr) => { ... }; }
Expand description
Moves the pointer of the given string to the next Unicode character.
This macro moves the pointer of the given string to the next Unicode character, taking into account the width of the Unicode character. The width is determined by the first byte of the character.
§Parameters
string
: A mutable reference to the string whose pointer will be moved.
§Return
This macro does not return a value. It moves the pointer of the given string to the next Unicode character.