[#7E39725B150943241C326A0E4CC2C3EE902B72F5]

Function params_ref:: append

Append elements

Synopsis

            iterator
append(std::initializer_list init);
        

Description

This function appends the params in an initializer-list to the view.

The `end()` iterator is invalidated.

Example

url u; u.params().append({ { "first", "John" }, { "last", "Doe" } });

Complexity

Linear in `this->url().encoded_query().size()`.

Exception Safety

Strong guarantee. Calls to allocate may throw.