| 77 | } |
| 78 | |
| 79 | bool BytesView::operator==(const BytesView& other) const { |
| 80 | if (_size != other.size()) { |
| 81 | return false; |
| 82 | } |
| 83 | |
| 84 | return asStringView() == other.asStringView(); |
| 85 | } |
| 86 | |
| 87 | bool BytesView::operator!=(const BytesView& other) const { |
| 88 | return !(*this == other); |
nothing calls this directly
no test coverage detected