MCPcopy Create free account
hub / github.com/LabSound/LabSound / copyToRange

Method copyToRange

include/LabSound/core/AudioArray.h:84–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82 }
83
84 void copyToRange(const T * sourceData, unsigned start, unsigned end)
85 {
86 bool isSafe = (start <= end) && (end <= (unsigned) size());
87 if (!isSafe)
88 return;
89
90 memcpy(data() + start, sourceData, sizeof(T) * (end - start));
91 }
92
93};
94

Callers 1

doPaddedFFTMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected