Macro libyml::IS_BREAK

source ·
macro_rules! IS_BREAK {
    ($string:expr) => { ... };
}
Expand description

Checks if the character at the current pointer in the given string is a line break character.

§Parameters

  • string: A reference to the string to check.

§Return

Returns true if the character is a line break character (CR, LF, NEL, LS, PS), and false otherwise.