@return Is this an empty string
| 232 | |
| 233 | /// @return Is this an empty string |
| 234 | [[nodiscard]] constexpr bool is_empty() const noexcept |
| 235 | { |
| 236 | return this->view_.is_empty(); |
| 237 | } |
| 238 | |
| 239 | [[nodiscard]] constexpr text_view subview(const u64 from, const u64 size = SIZE_MAX) const noexcept |
| 240 | { |
no test coverage detected