MCPcopy Create free account
hub / github.com/MyGUI/mygui / operator+

Method operator+

MyGUIEngine/src/MyGUI_UString.cpp:130–138  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

128 }
129 //--------------------------------------------------------------------------
130 UString::_fwd_iterator UString::_fwd_iterator::operator+(difference_type n)
131 {
132 _fwd_iterator tmp(*this);
133 if (n < 0)
134 tmp._seekRev(-n);
135 else
136 tmp._seekFwd(n);
137 return tmp;
138 }
139 //--------------------------------------------------------------------------
140 UString::_fwd_iterator UString::_fwd_iterator::operator-(difference_type n)
141 {

Callers

nothing calls this directly

Calls 2

_seekRevMethod · 0.80
_seekFwdMethod · 0.80

Tested by

no test coverage detected