Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
url::url (3 of 5 overloads)

Constructor.

Synopsis
url(
    url&& u);
Description

The contents of u are transferred to the newly constructed object, which includes the underlying character buffer. After construction, the moved-from object is as if default constructed.

Postconditions
u.empty() == true
Complexity

Constant.

Exception Safety

Throws nothing.

Parameters

Name

Description

u

The url to move from.


PrevUpHomeNext