| 6742 | constexpr void url::clear_pathname() { path.clear(); } |
| 6743 | |
| 6744 | constexpr void url::clear_search() { query = std::nullopt; } |
| 6745 | |
| 6746 | [[nodiscard]] constexpr bool url::has_hash() const noexcept { |
| 6747 | return hash.has_value(); |
no test coverage detected