MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / is_space_codepoint

Function is_space_codepoint

subprojects/llama.cpp/common/console.cpp:567–569  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

565 }
566
567 static bool is_space_codepoint(char32_t cp) {
568 return std::iswspace(static_cast<wint_t>(cp)) != 0;
569 }
570
571 static void move_word_left(size_t & char_pos, size_t & byte_pos, const std::vector<int> & widths, const std::string & line) {
572 if (char_pos == 0) {

Callers 2

move_word_leftFunction · 0.85
move_word_rightFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected