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

Method appendBoolBulk

pj_datastore/src/column_buffer.cpp:233–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231}
232
233void TypedColumnBuffer::appendBoolBulk(Span<const uint8_t> data) {
234 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kBool);
235 // Bool stored as uint8_t per element (1 byte per bool, not packed)
236 appendFixedBulk(data);
237}
238
239void TypedColumnBuffer::appendStringsBulk(Span<const uint32_t> offsets, Span<const char> data) {
240 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kString);

Callers 2

appendColumn<uint8_t>Method · 0.80
TESTFunction · 0.80

Calls 1

storageKindOfFunction · 0.85

Tested by 1

TESTFunction · 0.64