macro_rules! IS_TAB {
($string:expr) => { ... };
}
Expand description
Checks if the character at the current pointer in the given string is a tab character (ASCII 0x09).
§Parameters
string
: A reference to the string to check.
§Return
bool
: Returns true
if the character is a tab character, and false
otherwise.