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

Method appendFloat32Bulk

pj_datastore/src/column_buffer.cpp:208–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206// ---------------------------------------------------------------------------
207
208void TypedColumnBuffer::appendFloat32Bulk(Span<const float> data) {
209 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kFloat32);
210 appendFixedBulk(data);
211}
212
213void TypedColumnBuffer::appendFloat64Bulk(Span<const double> data) {
214 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kFloat64);

Callers 2

appendColumn<float>Method · 0.80
TESTFunction · 0.80

Calls 1

storageKindOfFunction · 0.85

Tested by 1

TESTFunction · 0.64