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

Method setValid

pj_datastore/src/buffer.cpp:78–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78void BitVector::setValid(std::size_t bit_index) {
79 bytes_[bit_index / 8] |= static_cast<uint8_t>(1u << (bit_index % 8));
80}
81
82void BitVector::setNull(std::size_t bit_index) {
83 bytes_[bit_index / 8] &= static_cast<uint8_t>(~(1u << (bit_index % 8)));

Callers 6

appendFixedMethod · 0.45
appendStringMethod · 0.45
appendFixedBulkMethod · 0.45
appendStringsBulkMethod · 0.45
appendValidityBulkMethod · 0.45
TESTFunction · 0.45

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.36