| 272 | const std::shared_ptr<Buffer> value = NULLPTR; |
| 273 | |
| 274 | const void* data() const override { |
| 275 | return value ? reinterpret_cast<const void*>(value->data()) : NULLPTR; |
| 276 | } |
| 277 | std::string_view view() const override { |
| 278 | return value ? std::string_view(*value) : std::string_view(); |
| 279 | } |
no test coverage detected