@brief Checks if the referenced character sequence is empty. @return true if empty, false otherwise.
| 2369 | /// @brief Checks if the referenced character sequence is empty. |
| 2370 | /// @return true if empty, false otherwise. |
| 2371 | bool empty() const noexcept { |
| 2372 | return m_len == 0; |
| 2373 | } |
| 2374 | |
| 2375 | /// @brief Get the element at the given position. |
| 2376 | /// @param pos The position of the target element. |