operator<<

Format the encoded authority to the output stream

Synopsis

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

Declared in file <include/boost/url/authority_view.hpp> on line 1386

Defined in file <include/boost/url/authority_view.hpp> on 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;