Public Types | |
| using | iterator_category = std::forward_iterator_tag |
| using | difference_type = std::ptrdiff_t |
| using | value_type = std::pair< const std::string, std::string > |
| using | reference = const value_type & |
| using | const_reference = const value_type & |
| using | pointer = const value_type * |
| using | const_pointer = const value_type * |
| using | UnderlyingIterator = std::vector< header_map::MapEntry >::const_reverse_iterator |
Public Member Functions | |
| ConstIterator (UnderlyingIterator it) | |
| ConstIterator (const ConstIterator &other) | |
| ConstIterator (ConstIterator &&other) noexcept | |
| ConstIterator & | operator= (const ConstIterator &other) |
| ConstIterator & | operator= (ConstIterator &&other) noexcept |
| ConstIterator | operator++ (int) |
| ConstIterator & | operator++ () |
| reference | operator* () |
| const_reference | operator* () const |
| pointer | operator-> () |
| const_pointer | operator-> () const |
| bool | operator== (const ConstIterator &other) const |
| bool | operator!= (const ConstIterator &other) const |
| bool | operator== (const Iterator &other) const |
Friends | |
| class | HeaderMap::Iterator |
Definition at line 391 of file header_map.hpp.
| using http::headers::HeaderMap::ConstIterator::const_pointer = const value_type* |
Definition at line 399 of file header_map.hpp.
| using http::headers::HeaderMap::ConstIterator::const_reference = const value_type& |
Definition at line 397 of file header_map.hpp.
| using http::headers::HeaderMap::ConstIterator::difference_type = std::ptrdiff_t |
Definition at line 394 of file header_map.hpp.
| using http::headers::HeaderMap::ConstIterator::iterator_category = std::forward_iterator_tag |
Definition at line 393 of file header_map.hpp.
| using http::headers::HeaderMap::ConstIterator::pointer = const value_type* |
Definition at line 398 of file header_map.hpp.
| using http::headers::HeaderMap::ConstIterator::reference = const value_type& |
Definition at line 396 of file header_map.hpp.
| using http::headers::HeaderMap::ConstIterator::UnderlyingIterator = std::vector<header_map::MapEntry>::const_reverse_iterator |
Definition at line 404 of file header_map.hpp.
| using http::headers::HeaderMap::ConstIterator::value_type = std::pair<const std::string, std::string> |
Definition at line 395 of file header_map.hpp.
|
friend |
Definition at line 430 of file header_map.hpp.