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

Function toString

MyGUIEngine/include/MyGUI_StringUtility.h:26–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24
25 template<typename T>
26 inline std::string toString(T _value)
27 {
28 std::ostringstream stream;
29 stream << _value;
30 return stream.str();
31 }
32
33 inline const std::string& toString(const std::string& _value)
34 {

Callers 15

getButtonNameMethod · 0.85
initialiseMethod · 0.85
getStatisticMethod · 0.85
createRenderMethod · 0.85
makeScreenShotMethod · 0.85
getStatisticMethod · 0.85
injectObjectMethod · 0.85
createSceneMethod · 0.85
AddItemMethod · 0.85
InsertItemMethod · 0.85
AddItemMethod · 0.85
InsertItemMethod · 0.85

Calls 1

strMethod · 0.80

Tested by 5

AddItemMethod · 0.68
InsertItemMethod · 0.68
AddItemMethod · 0.68
InsertItemMethod · 0.68
ChangeItemsMethod · 0.68