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 a snapshot of the develop branch, built from commit 0bde506516.
PrevUpHomeNext
params_encoded_ref::params_encoded_ref

Constructor.

Synopsis
params_encoded_ref(
    params_encoded_ref const& other);
Description

After construction, both views reference the same url. Ownership is not transferred; the caller is responsible for ensuring the lifetime of the url extends until it is no longer referenced.

Postconditions
&this->url() == &other.url();
Complexity

Constant.

Exception Safety

Throws nothing.

Parameters

Name

Description

other

The other view.


PrevUpHomeNext