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

Method addArray

JUCE/modules/juce_core/containers/juce_ArrayBase.h:288–293  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

286 //==============================================================================
287 template <typename Type>
288 void addArray (const Type* elementsToAdd, int numElementsToAdd)
289 {
290 ensureAllocatedSize (numUsed + numElementsToAdd);
291 addArrayInternal (elementsToAdd, numElementsToAdd);
292 numUsed += numElementsToAdd;
293 }
294
295 template <typename TypeToCreateFrom>
296 void addArray (const std::initializer_list<TypeToCreateFrom>& items)

Callers

nothing calls this directly

Calls 3

addArrayFunction · 0.85
sizeMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected