MCPcopy Create free account
hub / github.com/PlotJuggler/PlotJuggler / append

Method append

pj_datastore/src/buffer.cpp:23–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23void RawBuffer::append(const void* data, std::size_t size) {
24 const auto* begin = static_cast<const uint8_t*>(data);
25 data_.insert(data_.end(), begin, begin + size);
26}
27
28void RawBuffer::resize(std::size_t new_size) {
29 data_.resize(new_size);

Callers 15

build_variantFunction · 0.45
mainFunction · 0.45
calculateMimoMethod · 0.45
toggleFullscreenMethod · 0.45
collectFunction · 0.45
warningKeyFunction · 0.45
showToastMethod · 0.45
addItemMethod · 0.45
wrapLabelToWidthFunction · 0.45
addButtonMethod · 0.45
DualCalendarWidgetMethod · 0.45
expandPlaceholdersFunction · 0.45

Calls 2

insertMethod · 0.45
endMethod · 0.45

Tested by 1

TESTFunction · 0.36