MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / operator<

Method operator<

modules/gui/gui/src/backend/text_server/ustring.cpp:106–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104/*************************************************************************/
105
106bool Char16String::operator<(const Char16String& p_right) const
107{
108 if (length() == 0)
109 {
110 return p_right.length() != 0;
111 }
112
113 return is_str_less(get_data(), p_right.get_data());
114}
115
116Char16String& Char16String::operator+=(char16_t p_char)
117{

Callers

nothing calls this directly

Calls 6

is_str_lessFunction · 0.85
lengthFunction · 0.50
get_dataFunction · 0.50
is_emptyFunction · 0.50
lengthMethod · 0.45
get_dataMethod · 0.45

Tested by

no test coverage detected