Check if the string has no characters. Returns `true` if there are no characters in the string, i.e. @ref size() returns 0. @par Complexity Constant. @par Exception Safety No-throw guarantee. */
| 985 | No-throw guarantee. |
| 986 | */ |
| 987 | bool |
| 988 | empty() const noexcept |
| 989 | { |
| 990 | return impl_.size() == 0; |
| 991 | } |
| 992 | |
| 993 | /** Return the number of characters in the string. |
| 994 |
no test coverage detected