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 master branch, built from commit 579430ad1f.
PrevUpHomeNext
param_view::param_view (3 of 3 overloads)

Constructor.

Synopsis
param_view(
    param const& other);
Description

This function constructs a param which references the character buffers representing the key and value in another container. Ownership of the buffers is not transferred; the caller is responsible for ensuring that the assigned buffers remain valid until they are no longer referenced.

Example
param qp( "key" , "value" );
param_view qpv( qp );
Postconditions
this->key == key && this->value == value && this->has_value == other.has_value
Complexity

Constant.

Exception Safety

Throws nothing.

Parameters

Name

Description

other

The param to reference


PrevUpHomeNext