| 222 | } |
| 223 | |
| 224 | Bytes 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 | |
| 234 | Bytes Bytes::operator+(const Bytes& other) |
| 235 | { |
no test coverage detected