| 
| 
bool  | operator== (const ContentType &, const ContentType &) | 
|   | 
| 
bool  | operator!= (const ContentType &, const ContentType &) | 
|   | 
| bool  | operator< (const ContentType &, const ContentType &) | 
|   | 
| 
std::ostream &  | operator<< (std::ostream &, const ContentType &) | 
|   | 
| 
std::string  | UrlDecode (std::string_view range) | 
|   | Decode URL. 
  | 
|   | 
| 
std::string  | UrlEncode (std::string_view input_string) | 
|   | Encode as URL. 
  | 
|   | 
| 
std::string  | MakeQuery (const Args &query_args) | 
|   | Make an URL query. 
  | 
|   | 
| 
std::string  | MakeQuery (const std::unordered_map< std::string, std::string > &query_args) | 
|   | Make an URL query. 
  | 
|   | 
| 
std::string  | MakeQuery (std::initializer_list< std::pair< std::string_view, std::string_view > > query_args) | 
|   | Make an URL query. 
  | 
|   | 
| 
std::string  | MakeUrl (std::string_view path, const Args &query_args) | 
|   | Make an URL with query arguments. 
  | 
|   | 
| 
std::string  | MakeUrl (std::string_view path, const std::unordered_map< std::string, std::string > &query_args) | 
|   | Make an URL with query arguments. 
  | 
|   | 
| 
std::string  | MakeUrl (std::string_view path, const Args &query_args, MultiArgs query_multiargs) | 
|   | Make an URL with query arguments. 
  | 
|   | 
| 
std::string  | MakeUrl (std::string_view path, std::initializer_list< std::pair< std::string_view, std::string_view > > query_args) | 
|   | Make an URL with query arguments. 
  | 
|   | 
| 
std::string  | ExtractMetaTypeFromUrl (const std::string &url) | 
|   | Returns URL part before the first '?' character. 
  | 
|   | 
| 
std::string  | ExtractPath (std::string_view url) | 
|   | Returns HTTP path part of a URL. 
  | 
|   | 
| 
std::string  | ExtractHostname (std::string_view url) | 
|   | Returns hostname part of a URL. 
  | 
|   |