#include <inline_var_len_entry_queue.h>
Public Types | |
using | difference_type = std::ptrdiff_t |
using | value_type = Entry |
using | pointer = const Entry * |
using | reference = const Entry & |
using | iterator_category = std::forward_iterator_tag |
Public Member Functions | |
constexpr | iterator (const iterator &)=default |
constexpr iterator & | operator= (const iterator &)=default |
iterator & | operator++ () |
iterator | operator++ (int) |
reference | operator* () const |
pointer | operator-> () const |
bool | operator== (const iterator &rhs) const |
bool | operator!= (const iterator &rhs) const |
Friends | |
class | BasicInlineVarLenEntryQueue |
Iterator object for a InlineVarLenEntryQueue
.
Iterators are invalidated by any operations that change the container or its underlying data (push/pop/init).