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

Method appendInt64Bulk

pj_datastore/src/column_buffer.cpp:223–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221}
222
223void TypedColumnBuffer::appendInt64Bulk(Span<const int64_t> data) {
224 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt64);
225 appendFixedBulk(data);
226}
227
228void TypedColumnBuffer::appendUint64Bulk(Span<const uint64_t> data) {
229 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kUint64);

Callers 2

appendColumn<int64_t>Method · 0.80
TESTFunction · 0.80

Calls 1

storageKindOfFunction · 0.85

Tested by 1

TESTFunction · 0.64