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

Method appendFloat64

pj_datastore/src/column_buffer.cpp:103–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103void TypedColumnBuffer::appendFloat64(double value) {
104 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kFloat64);
105 appendFixed(value);
106}
107
108void TypedColumnBuffer::appendInt32(int32_t value) {
109 assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt32);

Callers 3

set<double>Method · 0.80
sortRowsByTimestampMethod · 0.80
TESTFunction · 0.80

Calls 1

storageKindOfFunction · 0.85

Tested by 1

TESTFunction · 0.64