|
xrpld
|
Iterates through a comma separated list. More...
#include <rfc2616.h>
Public Types | |
| using | value_type = boost::string_ref |
| using | pointer = value_type const* |
| using | reference = value_type const& |
| using | difference_type = std::ptrdiff_t |
| using | iterator_category = std::forward_iterator_tag |
Public Member Functions | |
| ListIterator (iter_type begin, iter_type end) | |
| bool | operator== (ListIterator const &other) const |
| bool | operator!= (ListIterator const &other) const |
| reference | operator* () const |
| pointer | operator-> () const |
| ListIterator & | operator++ () |
| ListIterator | operator++ (int) |
Private Types | |
| using | iter_type = boost::string_ref::const_iterator |
Private Member Functions | |
| template<class = void> | |
| void | increment () |
Private Attributes | |
| iter_type | it_ |
| iter_type | end_ |
| boost::string_ref | value_ |
Iterates through a comma separated list.
Meets the requirements of ForwardIterator.
|
private |
| using beast::rfc2616::ListIterator::value_type = boost::string_ref |
| using beast::rfc2616::ListIterator::pointer = value_type const* |
| using beast::rfc2616::ListIterator::reference = value_type const& |
| bool beast::rfc2616::ListIterator::operator== | ( | ListIterator const & | other | ) | const |
| bool beast::rfc2616::ListIterator::operator!= | ( | ListIterator const & | other | ) | const |
| reference beast::rfc2616::ListIterator::operator* | ( | ) | const |
| pointer beast::rfc2616::ListIterator::operator-> | ( | ) | const |
| ListIterator & beast::rfc2616::ListIterator::operator++ | ( | ) |
| ListIterator beast::rfc2616::ListIterator::operator++ | ( | int | ) |
|
private |