boost::urls::params_encoded_base::iterator

A Bidirectional iterator to a query parameter

Synopsis

Declared in <include/boost/url/impl/params_encoded_base.hpp>

class iterator;

Types

NameDescription
difference_type
iterator_category
pointer
reference
value_type

Member Functions

NameDescription
iterator [constructor]
operator*
operator++
operator--
operator->
operator=

Friends

NameDescription
operator!=
operator==

Description

Objects of this type allow iteration through the parameters in the query. Strings returned by iterators may contain percent escapes. The values returned are read-only; changes to parameters must be made through the container instead, if the container supports modification.

The strings produced when iterators are dereferenced refer to the underlying character buffer. Ownership is not transferred; the caller is responsible for ensuring that the lifetime of the buffer extends until it is no longer referenced by any container or iterator.

Created with MrDocs