MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / is_ascii_space

Function is_ascii_space

src/framework/text/chunking.cpp:43–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41 bool sentence_break = false;
42};
43
44bool is_ascii_space(std::string_view token) noexcept {
45 return token.size() == 1 && std::isspace(static_cast<unsigned char>(token.front())) != 0;
46}
47
48bool is_ascii_line_break(std::string_view token) noexcept {

Callers 2

split_word_rangesFunction · 0.85
split_tag_aware_unitsFunction · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected