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

Method is_upper

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

Source from the content-addressed store, hash-verified

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
2245#pragma region Character Set Arguments

Callers

nothing calls this directly

Calls 1

ascii_uppercase_setFunction · 0.85

Tested by

no test coverage detected