|
LIEF: Library to Instrument Executable Formats Version 0.17.1
|
An iterator type that allows iterating over the pointees via some other iterator. More...
#include <iterators.hpp>


Public Member Functions | |
| pointee_iterator ()=default | |
| template<typename U> | |
| pointee_iterator (U &&u) | |
| T & | operator* () const |
| Public Member Functions inherited from LIEF::iterator_adaptor_base< DerivedT, WrappedIteratorT, IteratorCategoryT, T, DifferenceTypeT, PointerT, ReferenceT > | |
| DerivedT & | operator+= (difference_type n) |
| DerivedT & | operator-= (difference_type n) |
| difference_type | operator- (const DerivedT &RHS) const |
| DerivedT & | operator++ () |
| DerivedT & | operator-- () |
| ReferenceT | operator* () const |
| Public Member Functions inherited from LIEF::iterator_facade_base< DerivedT, IteratorCategoryT, T, DifferenceTypeT, PointerT, ReferenceT > | |
| DerivedT | operator+ (DifferenceTypeT n) const |
| DerivedT | operator- (DifferenceTypeT n) const |
| DerivedT & | operator++ () |
| DerivedT | operator++ (int) |
| DerivedT & | operator-- () |
| DerivedT | operator-- (int) |
| bool | operator!= (const DerivedT &RHS) const |
| bool | operator> (const DerivedT &RHS) const |
| bool | operator<= (const DerivedT &RHS) const |
| bool | operator>= (const DerivedT &RHS) const |
| PointerProxy | operator-> () const |
| ReferenceProxy | operator[] (DifferenceTypeT n) const |
Additional Inherited Members | |
| Public Types inherited from LIEF::iterator_adaptor_base< DerivedT, WrappedIteratorT, IteratorCategoryT, T, DifferenceTypeT, PointerT, ReferenceT > | |
| using | difference_type = DifferenceTypeT |
| Public Types inherited from LIEF::iterator_facade_base< DerivedT, IteratorCategoryT, T, DifferenceTypeT, PointerT, ReferenceT > | |
| using | iterator_category = IteratorCategoryT |
| using | value_type = T |
| using | difference_type = DifferenceTypeT |
| using | pointer = PointerT |
| using | reference = ReferenceT |
An iterator type that allows iterating over the pointees via some other iterator.
The typical usage of this is to expose a type that iterates over Ts, but which is implemented with some iterator over T*s:
|
default |
Referenced by pointee_iterator().
|
inline |
References pointee_iterator().
|
inline |