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

Method reverseBits

lib/core/bytes.cc:224–232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

222}
223
224Bytes Bytes::reverseBits() const
225{
226 Bytes output;
227 ByteWriter bw(output);
228
229 for (uint8_t b : *this)
230 bw.write_8(reverse_bits(b));
231 return output;
232}
233
234Bytes Bytes::operator+(const Bytes& other)
235{

Callers 3

decodeSectorRecordMethod · 0.80
decodeSectorRecordMethod · 0.80
UpdateExplorerDataMethod · 0.80

Calls 1

reverse_bitsFunction · 0.85

Tested by

no test coverage detected