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

Method appendFloat64Bulk

pj_datastore/src/column_buffer.cpp:213–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213void TypedColumnBuffer::appendFloat64Bulk(Span<const double> data) {
214 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kFloat64);
215 appendFixedBulk(data);
216}
217
218void TypedColumnBuffer::appendInt32Bulk(Span<const int32_t> data) {
219 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt32);

Callers 2

appendColumn<double>Method · 0.80
TESTFunction · 0.80

Calls 1

storageKindOfFunction · 0.85

Tested by 1

TESTFunction · 0.64