:relfileprefix: ../../../ [#boost-urls-param_view-2constructor-07e] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/param_view.adoc[pass:[param_view]]::param_view Constructor == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- param_view(xref:boost/urls/param.adoc[param] const& other) noexcept; ---- == 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 [,cpp] ---- param qp( "key", "value" ); param_view qpv( qp ); ---- === Postconditions [,cpp] ---- 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 |===