[#boost-urls-params_encoded_view-2conversion] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/params_encoded_view.adoc[params_encoded_view]::operator xref:boost/urls/params_view.adoc[params_view] :relfileprefix: ../../../ :mrdocs: Conversion == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/params_encoded_view.hpp#L227[boost/url/params_encoded_view.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- operator xref:boost/urls/params_view.adoc[params_view]() const noexcept; ---- == Description This conversion returns a new view which references the same underlying character buffer, and whose iterators and members return ordinary strings with decoding applied to any percent escapes. Ownership is not transferred; the caller is responsible for ensuring the lifetime of the buffer extends until it is no longer referenced. === Example [,cpp] ---- params_view qp = parse_path( "/path/to/file.txt" ).value(); ---- === Postconditions [,cpp] ---- params_view( *this ).buffer().data() == this->buffer().data() ---- === Complexity Constant === Exception Safety Throws nothing [.small]#Created with https://www.mrdocs.com[MrDocs]#