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

Method length_Characters

MyGUIEngine/src/MyGUI_UString.cpp:566–577  ·  view source on GitHub ↗

--------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

564 }
565 //--------------------------------------------------------------------------
566 UString::size_type UString::length_Characters() const
567 {
568 const_iterator i = begin();
569 const_iterator ie = end();
570 size_type c = 0;
571 while (i != ie)
572 {
573 i.moveNext();
574 ++c;
575 }
576 return c;
577 }
578 //--------------------------------------------------------------------------
579 UString::size_type UString::max_size() const
580 {

Callers

nothing calls this directly

Calls 1

moveNextMethod · 0.80

Tested by

no test coverage detected