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