|
avcpp
2.0
Wrapper for the FFmpeg that simplify usage from C++ projects.
|
Base dictionary iterator implementation. More...
#include <dictionary.h>
Public Types | |
| using | iterator_category = std::forward_iterator_tag |
| using | value_type = typename std::conditional< constIterator, const Entry, Entry >::type |
| using | difference_type = ptrdiff_t |
| using | pointer = value_type * |
| using | reference = value_type & |
Public Member Functions | |
| DictionaryIterator (DictType &dict, const Entry &entry) noexcept | |
| DictionaryIterator (DictType &dict) noexcept | |
| DictionaryIterator & | operator++ () noexcept |
| DictionaryIterator | operator++ (int) noexcept |
| EntryType & | operator* () noexcept |
| EntryType * | operator-> () noexcept |
Friends | |
| bool | operator== (const DictionaryIterator &lhs, const DictionaryIterator &rhs) noexcept |
| bool | operator!= (const DictionaryIterator &lhs, const DictionaryIterator &rhs) noexcept |
Base dictionary iterator implementation.
| using av::Dictionary::DictionaryIterator< constIterator >::difference_type = ptrdiff_t |
| using av::Dictionary::DictionaryIterator< constIterator >::iterator_category = std::forward_iterator_tag |
| using av::Dictionary::DictionaryIterator< constIterator >::pointer = value_type* |
| using av::Dictionary::DictionaryIterator< constIterator >::reference = value_type& |
| using av::Dictionary::DictionaryIterator< constIterator >::value_type = typename std::conditional<constIterator, const Entry, Entry>::type |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
friend |
|
friend |