Function fractal::utils::matrix::char_is_ascii_word_boundary
source ยท fn char_is_ascii_word_boundary(c: char) -> bool
Expand description
Whether the given char
is a word boundary, according to the Matrix spec.
A word boundary is any character not in the sets [A-Z]
, [a-z]
, [0-9]
or _
.