@brief Get the maximum number of the character sequence size. @return The maximum number of the character sequence size.
| 2363 | /// @brief Get the maximum number of the character sequence size. |
| 2364 | /// @return The maximum number of the character sequence size. |
| 2365 | constexpr size_type max_size() const noexcept { |
| 2366 | return static_cast<size_type>(std::numeric_limits<difference_type>::max()); |
| 2367 | } |
| 2368 | |
| 2369 | /// @brief Checks if the referenced character sequence is empty. |
| 2370 | /// @return true if empty, false otherwise. |
no outgoing calls
no test coverage detected