* @returns Total number of characters in this * stream. Note that this is not the same * as the total number of characters * available for reading. */
| 210 | * available for reading. |
| 211 | */ |
| 212 | inline size_t Size() const noexcept { |
| 213 | return Ptr()->size(); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * @returns Whether the string that this stream |
no test coverage detected