| 260 | } |
| 261 | |
| 262 | void BinaryContainer::append(const std::vector<uint8_t>&& a) |
| 263 | { |
| 264 | if (isLE_) |
| 265 | std::copy(a.cbegin(), a.cend(), std::back_inserter(buf_)); |
| 266 | else |
| 267 | std::reverse_copy(a.cbegin(), a.cend(), std::back_inserter(buf_)); |
| 268 | } |
| 269 | |
| 270 | void BinaryContainer::write(size_t offset, const std::vector<uint8_t>&& a) |
| 271 | { |
no test coverage detected