MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / addArray

Function addArray

JUCE/modules/juce_core/text/juce_StringArray.h:247–253  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

245 */
246 template <typename Iterator>
247 void addArray (Iterator&& start, Iterator&& end)
248 {
249 ensureStorageAllocated (size() + (int) static_cast<size_t> (end - start));
250
251 while (start != end)
252 strings.add (*start++);
253 }
254
255 /** Merges the strings from another array into this one.
256 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