| 17390 | } |
| 17391 | |
| 17392 | bool ada_has_search(ada_url result) noexcept { |
| 17393 | ada::result<ada::url_aggregator>& r = get_instance(result); |
| 17394 | if (!r) { |
| 17395 | return false; |
| 17396 | } |
| 17397 | return r->has_search(); |
| 17398 | } |
| 17399 | |
| 17400 | // returns a pointer to the internal url_aggregator::url_components |
| 17401 | const ada_url_components* ada_get_components(ada_url result) noexcept { |
nothing calls this directly
no test coverage detected