operator<<

Format the encoded authority to the output stream

Synopsis

ostream& operator<<( ostream& os, const authority_view& a);

Declared in file <boost/url/authority_view.hpp> at line 1358

Description

This function serializes the encoded URL to the output stream.

Example

authority_view a( "www.example.com" ); std::cout << a << std::endl;