Macro libyml::IS_SPACE_AT
source · macro_rules! IS_SPACE_AT { ($string:expr, $offset:expr) => { ... }; }
Expand description
Checks if the character at the specified offset in the given string is a space character (ASCII 0x20).
§Parameters
$string
: A reference to the string to check.$offset
: The offset within the string to check.
§Return
bool
: Returnstrue
if the character at the specified offset is a space character, andfalse
otherwise.