* Removes the hash of the URL. * * Despite `ada_set_hash` method, this function allows the complete * removal of the hash attribute, even if it has a value of `#`. */
| 17306 | * removal of the hash attribute, even if it has a value of `#`. |
| 17307 | */ |
| 17308 | void ada_clear_hash(ada_url result) noexcept { |
| 17309 | ada::result<ada::url_aggregator>& r = get_instance(result); |
| 17310 | if (r) { |
| 17311 | r->clear_hash(); |
| 17312 | } |
| 17313 | } |
| 17314 | |
| 17315 | /** |
| 17316 | * Removes the search of the URL. |
nothing calls this directly
no test coverage detected