Home | Libraries | People | FAQ | More |
Return the complete authority.
string_view buffer() const;
This function returns the authority as a percent-encoded string.
assert( parse_authority( "www.example.com" ).value().encoded_authority() == "www.example.com" );
authority = [ userinfo "@" ] host [ ":" port ]
Throws nothing.