@brief Check if StringView is empty @return `true` if string is empty
| 125 | /// @brief Check if StringView is empty |
| 126 | /// @return `true` if string is empty |
| 127 | [[nodiscard]] constexpr bool isEmpty() const { return text == nullptr or textSizeInBytes == 0; } |
| 128 | |
| 129 | /// @brief Check if StringView is immediately followed by a null termination character |
| 130 | /// @return `true` if StringView is immediately followed by a null termination character |
no outgoing calls
no test coverage detected