rippled
|
Iterates through a comma separated list. More...
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 | |
list_iterator (iter_type begin, iter_type end) | |
bool | operator== (list_iterator const &other) const |
bool | operator!= (list_iterator const &other) const |
reference | operator* () const |
pointer | operator-> () const |
list_iterator & | operator++ () |
list_iterator | 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::list_iterator::value_type = boost::string_ref |
using beast::rfc2616::list_iterator::pointer = value_type const* |
using beast::rfc2616::list_iterator::reference = value_type const& |
bool beast::rfc2616::list_iterator::operator== | ( | list_iterator const & | other | ) | const |
bool beast::rfc2616::list_iterator::operator!= | ( | list_iterator const & | other | ) | const |
reference beast::rfc2616::list_iterator::operator* | ( | ) | const |
pointer beast::rfc2616::list_iterator::operator-> | ( | ) | const |
list_iterator& beast::rfc2616::list_iterator::operator++ | ( | ) |
list_iterator beast::rfc2616::list_iterator::operator++ | ( | int | ) |
|
private |