data access via a simple c string pointer
| 50 | |
| 51 | //! data access via a simple c string pointer |
| 52 | constexpr const char* data() const { return &content.data[0]; } |
| 53 | //! redundant size() function for usability (note that this of course also includes \0 chars) |
| 54 | constexpr size_t size() const { return count; } |
| 55 |