MCPcopy Create free account
hub / github.com/MyGUI/mygui / inString

Method inString

MyGUIEngine/src/MyGUI_UString.cpp:661–671  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

659 }
660
661 bool UString::inString(unicode_char ch) const
662 {
663 const_iterator i;
664 const_iterator ie = end();
665 for (i = begin(); i != ie; i.moveNext())
666 {
667 if (i.getCharacter() == ch)
668 return true;
669 }
670 return false;
671 }
672
673 const std::string& UString::asUTF8() const
674 {

Callers 4

find_first_ofMethod · 0.80
find_first_not_ofMethod · 0.80
find_last_ofMethod · 0.80
find_last_not_ofMethod · 0.80

Calls 2

moveNextMethod · 0.80
getCharacterMethod · 0.80

Tested by

no test coverage detected