macro_rules! IS_BLANKZ_AT {
($string:expr, $offset:expr) => { ... };
}
Expand description
Checks if the character at the specified offset in the given string is a space, tab, or line break character, or if it is a null character.
§Parameters
$string
: A reference to the string to check.$offset
: The offset within the string to check.
§Return
Returns true
if the character at the specified offset is a space, tab, line break character, or null character,
and false
otherwise.