MCPcopy Create free account
hub / github.com/axmolengine/axmol / isUnicodeNonBreaking

Function isUnicodeNonBreaking

core/base/UTF8.cpp:200–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198}
199
200bool isUnicodeNonBreaking(char32_t ch)
201{
202 return ch == 0x00A0 // Non-Breaking Space
203 || ch == 0x202F // Narrow Non-Breaking Space
204 || ch == 0x2007 // Figure Space
205 || ch == 0x2060; // Word Joiner
206}
207
208void trimUTF16Vector(std::vector<char16_t>& str)
209{

Callers 1

getFirstWordLenMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected