:relfileprefix: ../../ [#boost-urls-operator_lshift-0e] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::operator<< Format the encoded authority to the output stream == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:std.adoc[std]::ostream& operator<<( xref:std.adoc[std]::ostream& os, xref:boost/urls/authority_view.adoc[authority_view] const& a); ---- == Description This function serializes the encoded URL to the output stream. === Example [,cpp] ---- authority_view a( "www.example.com" ); std::cout << a << std::endl; ---- == Return Value A reference to the output stream, for chaining == Parameters |=== | Name | Description | *os* | The output stream to write to | *a* | The URL to write |===