Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
url::operator= (1 of 3 overloads)

Assignment.

Synopsis
url&
operator=(
    url&& u);
Description

The contents of u are transferred to this, including the underlying character buffer. The previous contents of this are destroyed. After assignment, the moved-from object will be as if default constructed.

Postconditions
u.empty() == true
Complexity

Constant.

Exception Safety

Throws nothing.

Parameters

Name

Description

u

The url to assign from.


PrevUpHomeNext