MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / findNextValue

Method findNextValue

Engine/source/util/settings.cpp:480–486  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

478}
479
480const char* Settings::findNextValue()
481{
482 if ( mSearchPos + 1 >= mSearchResults.size() )
483 return "";
484 mSearchPos++;
485 return mSearchResults[mSearchPos];
486}
487
488// make sure to replace the strings
489DefineEngineMethod(Settings, findFirstValue, const char*, ( const char* pattern, bool deepSearch, bool includeDefaults ), ("", false, false), "settingObj.findFirstValue();")

Callers 1

DefineEngineMethodFunction · 0.80

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected