...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Constructs an empty address.
any_address();
» more...
Copy constructor.
any_address(
const any_address& other);
» more...
Move constructor.
any_address(
any_address&& other);
» more...
Constructs an address containing a host and a port.
any_address(
host_and_port value);
» more...
Constructs an address containing a UNIX socket path.
any_address(
unix_path value);
» more...