Home | Libraries | People | FAQ | More |
A view representing query parameters in a URL.
Defined in header <boost/url/params_view.hpp>
class params_view : public params_base
Name |
Description |
---|---|
A Bidirectional iterator to a query parameter. |
|
The reference type. |
|
A signed integer type used to represent differences. |
|
A Bidirectional iterator to a query parameter. |
|
The reference type. |
|
An unsigned integer type to represent sizes. |
|
The value type. |
Name |
Description |
---|---|
Return an iterator to the beginning. |
|
Return the referenced character buffer. |
|
Return true if a matching key exists. |
|
Return the number of matching keys. |
|
Return true if there are no params. |
|
Return an iterator to the end. |
|
Find a matching key. |
|
Find a matching key. |
|
Assignment. |
|
params_view [constructor] |
Constructor. |
Return the number of params. |
Name |
Description |
---|---|
Return the maximum number of characters possible. |
Objects of this type are used to interpret the query parameters as a bidirectional view of key/value pairs. The view does not retain ownership of the elements and instead references the original character buffer. The caller is responsible for ensuring that the lifetime of the buffer extends until it is no longer referenced.
url_view u( "?first=John&last=Doe" ); params_view p = u.params();
The strings produced when iterators are dereferenced belong to the iterator and become invalidated when that particular iterator is incremented, decremented, or destroyed. Any percent-escapes in returned strings are decoded first. Strings passed to member functions do not contain percent-escapes; the percent character ('') is treated as a literal percent.
Changes to the underlying character buffer can invalidate iterators which reference it.
Convenience header <boost/url.hpp>