Format arguments into a URL
<boost/url/format.hpp>Format arguments into a URL
url
format(
    core::string_view fmt,
    std::initializer_list<format_arg> args);
» more...
Format arguments into a URL
template<std::convertible_to<format_arg>... Args>
url
format(
    core::string_view fmt,
    Args...&&... args);
» more...
| Name | Thrown on | 
|---|---|
| system_error | fmtcontains an invalid format string and the result contains an invalid URL after replacements are applied. | 
| Name | Description | 
|---|---|
| fmt | The format URL string. | 
| args | Arguments to be formatted. |