Parser doesn't clear URL first, so if you parse over a non-clear URL, the resulting URL may contain some of the previous data. */
| 732 | |
| 733 | */ |
| 734 | inline ParseResult |
| 735 | URL::parse(std::string_view url) |
| 736 | { |
| 737 | return this->parse(url.data(), static_cast<int>(url.size())); |
| 738 | } |
| 739 | |
| 740 | /** |
| 741 | Parser doesn't clear URL first, so if you parse over a non-clear URL, |