* @returns Pointer to the character data contained * in this stream. The data is guaranteed * to be null-terminated. */
| 200 | * to be null-terminated. |
| 201 | */ |
| 202 | inline const char* Data() const noexcept { |
| 203 | return Ptr()->data(); |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * @returns Total number of characters in this |
no test coverage detected