param_view

Constructor

Synopsis

constexpr
param_view() = default;

Defined in file <include/boost/url/param.hpp> on line 455

Description

Default constructed query parameters have an empty key and no value.

Example

param_view qp;

Postconditions

this->key == "" && this->value == "" && this->has_value == false

Complexity

Constant.

Exception Safety

Throws nothing.