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

Function addArray

JuceLibraryCode/modules/juce_core/text/juce_StringArray.h:248–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246 */
247 template <typename Iterator>
248 void addArray (Iterator&& start, Iterator&& end)
249 {
250 ensureStorageAllocated (size() + (int) static_cast<size_t> (end - start));
251
252 while (start != end)
253 strings.add (*start++);
254 }
255
256 /** Merges the strings from another array into this one.
257 This will not add a string that already exists.

Callers 7

addSetMethod · 0.85
OwnedArrayMethod · 0.85
addArrayMethod · 0.85
ArrayMethod · 0.85
StringArrayFunction · 0.85
juce_StringArray.hFile · 0.85

Calls 2

sizeFunction · 0.70
addMethod · 0.45

Tested by

no test coverage detected