| 69 | } |
| 70 | |
| 71 | std::string_view BytesView::asStringView() const { |
| 72 | return std::string_view(reinterpret_cast<const char*>(_data), _size); |
| 73 | } |
| 74 | |
| 75 | bool BytesView::isStrictlyIdenticalTo(const BytesView& other) const { |
| 76 | return _source.get() == other._source.get() && _data == other._data && _size == other._size; |
no outgoing calls