MCPcopy Create free account
hub / github.com/ashvardanian/StringZilla / is_space

Method is_space

include/stringzilla/stringzilla.hpp:2241–2241  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2239 bool is_digit() const noexcept { return !empty() && contains_only(digits_set()); }
2240 bool is_lower() const noexcept { return !empty() && contains_only(ascii_lowercase_set()); }
2241 bool is_space() const noexcept { return !empty() && contains_only(whitespaces_set()); }
2242 bool is_upper() const noexcept { return !empty() && contains_only(ascii_uppercase_set()); }
2243 bool is_printable() const noexcept { return empty() || contains_only(ascii_printables_set()); }
2244

Callers

nothing calls this directly

Calls 1

whitespaces_setFunction · 0.85

Tested by

no test coverage detected