| 6744 | constexpr void url::clear_search() { query = std::nullopt; } |
| 6745 | |
| 6746 | [[nodiscard]] constexpr bool url::has_hash() const noexcept { |
| 6747 | return hash.has_value(); |
| 6748 | } |
| 6749 | |
| 6750 | [[nodiscard]] constexpr bool url::has_search() const noexcept { |
| 6751 | return query.has_value(); |
no test coverage detected