MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / readBits

Method readBits

lib/decoders/fluxdecoder.cc:93–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93std::vector<bool> FluxDecoder::readBits(unsigned count)
94{
95 std::vector<bool> result;
96 while (!_fmr->eof() && count--)
97 {
98 bool b = readBit();
99 result.push_back(b);
100 }
101 return result;
102}
103
104std::vector<bool> FluxDecoder::readBits(const Fluxmap::Position& until)
105{

Callers 4

readRawBitsMethod · 0.45
mainInspectFunction · 0.45
UpdateExplorerDataMethod · 0.45
OnPaintMethod · 0.45

Calls 3

eofMethod · 0.45
push_backMethod · 0.45
tellMethod · 0.45

Tested by 1

mainInspectFunction · 0.36