MCPcopy Create free account
hub / github.com/DBraun/DawDreamer / insert

Method insert

JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp:143–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143void StringArray::insert (int index, String newString)
144{
145 // NB: the local temp copy is to avoid a dangling pointer if the
146 // argument being passed-in is a reference into this array.
147 strings.insert (index, std::move (newString));
148}
149
150bool StringArray::addIfNotAlreadyThere (const String& newString, bool ignoreCase)
151{

Callers 15

tryChooseConfigMethod · 0.45
tryChooseVisualMethod · 0.45
createAttribsFunction · 0.45
registerFdCallbackMethod · 0.45
addChildFunction · 0.45
performMethod · 0.45
DirectoryIteratorFunction · 0.45
addMethod · 0.45
loadMethod · 0.45
loadMethod · 0.45
IPAddressMethod · 0.45

Calls 1

moveFunction · 0.85

Tested by

no test coverage detected