Home | Libraries | People | FAQ | More |
Constructor.
param_view( string_view key, std::nullptr_t);
This constructs a parameter with a key and no value. No validation is performed on the strings. The new key will reference the same underlying character buffer. 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.
param_view qp( "key" );
this->key.data() == key.data() && this->value == "" && this->has_value == false
Constant.
Throws nothing.
Name |
Description |
---|---|
|
The key to set. |