MCPcopy Create free account
hub / github.com/VCVRack/Rack / startData

Method startData

include/dsp/ringbuffer.hpp:209–211  ·  view source on GitHub ↗

Returns a pointer to S consecutive elements for consumption If any data is consumed, call startIncr afterwards. */

Source from the content-addressed store, hash-verified

207 If any data is consumed, call startIncr afterwards.
208 */
209 const T* startData() const {
210 return &data[start];
211 }
212 void startIncr(size_t n) {
213 // This is valid as long as n < S
214 start += n;

Callers 1

processOutputMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected