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

Method appendInt32Bulk

pj_datastore/src/column_buffer.cpp:218–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216}
217
218void TypedColumnBuffer::appendInt32Bulk(Span<const int32_t> data) {
219 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt32);
220 appendFixedBulk(data);
221}
222
223void TypedColumnBuffer::appendInt64Bulk(Span<const int64_t> data) {
224 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt64);

Callers 2

appendColumn<int32_t>Method · 0.80
TESTFunction · 0.80

Calls 1

storageKindOfFunction · 0.85

Tested by 1

TESTFunction · 0.64