Random access iterator to the elements of a TTreeReaderArray.
Definition at line 82 of file TTreeReaderArray.h.
Public Types | |
using | difference_type = std::ptrdiff_t |
using | iterator_category = std::random_access_iterator_tag |
using | pointer = std::conditional_t< std::is_const< ReaderArrayType >::value, const T *, T * > |
using | reference = std::conditional_t< std::is_const< ReaderArrayType >::value, const T &, T & > |
using | value_type = T |
Public Member Functions | |
Iterator_t () | |
Default ctor: constructs a past-the-end iterator. | |
Iterator_t (const Iterator_t &)=default | |
Iterator_t (Iterator_t &&)=default | |
Iterator_t (std::size_t index, const TTreeReaderArray *array) | |
Construct iterator from a const TTreeReaderArray. | |
Iterator_t (std::size_t index, TTreeReaderArray *array) | |
Construct iterator. | |
bool | IsValid () const |
operator pointer () | |
bool | operator!= (const Iterator_t &other) const |
reference | operator* () const |
Iterator_t | operator+ (std::ptrdiff_t n) const |
Iterator_t & | operator++ () |
Pre-increment operator. | |
Iterator_t | operator++ (int) |
Post-increment operator. | |
Iterator_t & | operator+= (std::ptrdiff_t n) |
std::ptrdiff_t | operator- (const Iterator_t &other) const |
Iterator_t | operator- (std::ptrdiff_t n) const |
Iterator_t & | operator-- () |
Pre-decrement operator. | |
Iterator_t | operator-- (int) |
Post-decrement operator. | |
Iterator_t & | operator-= (std::ptrdiff_t n) |
pointer | operator-> () const |
bool | operator< (const Iterator_t &other) const |
bool | operator<= (const Iterator_t &other) const |
Iterator_t & | operator= (const Iterator_t &)=default |
Iterator_t & | operator= (Iterator_t &&)=default |
bool | operator== (const Iterator_t &other) const |
bool | operator> (const Iterator_t &other) const |
bool | operator>= (const Iterator_t &other) const |
reference | operator[] (std::size_t index) const |
Private Attributes | |
TTreeReaderArray * | fArray |
The array iterated over; nullptr if invalid/past-the-end. | |
std::size_t | fIndex |
Current index in the array. | |
std::size_t | fSize |
Size of the TTreeReaderArray. | |
Friends | |
auto | operator+ (std::ptrdiff_t n, const Iterator_t &it) -> decltype(it+n) |
#include <TTreeReaderArray.h>
using TTreeReaderArray< T >::Iterator_t< ReaderArrayType >::difference_type = std::ptrdiff_t |
Definition at line 87 of file TTreeReaderArray.h.
using TTreeReaderArray< T >::Iterator_t< ReaderArrayType >::iterator_category = std::random_access_iterator_tag |
Definition at line 85 of file TTreeReaderArray.h.
using TTreeReaderArray< T >::Iterator_t< ReaderArrayType >::pointer = std::conditional_t<std::is_const<ReaderArrayType>::value, const T *, T *> |
Definition at line 88 of file TTreeReaderArray.h.
using TTreeReaderArray< T >::Iterator_t< ReaderArrayType >::reference = std::conditional_t<std::is_const<ReaderArrayType>::value, const T &, T &> |
Definition at line 89 of file TTreeReaderArray.h.
using TTreeReaderArray< T >::Iterator_t< ReaderArrayType >::value_type = T |
Definition at line 86 of file TTreeReaderArray.h.
|
inline |
Default ctor: constructs a past-the-end iterator.
Definition at line 97 of file TTreeReaderArray.h.
|
inline |
Construct iterator.
Definition at line 100 of file TTreeReaderArray.h.
|
inline |
Construct iterator from a const TTreeReaderArray.
Definition at line 108 of file TTreeReaderArray.h.
|
default |
|
default |
|
inline |
Definition at line 195 of file TTreeReaderArray.h.
|
inline |
Definition at line 193 of file TTreeReaderArray.h.
|
inline |
Definition at line 132 of file TTreeReaderArray.h.
|
inline |
Definition at line 116 of file TTreeReaderArray.h.
|
inline |
Definition at line 170 of file TTreeReaderArray.h.
|
inline |
Pre-increment operator.
Definition at line 135 of file TTreeReaderArray.h.
|
inline |
Post-increment operator.
Definition at line 145 of file TTreeReaderArray.h.
|
inline |
Definition at line 182 of file TTreeReaderArray.h.
|
inline |
Definition at line 180 of file TTreeReaderArray.h.
|
inline |
Definition at line 173 of file TTreeReaderArray.h.
|
inline |
Pre-decrement operator.
Definition at line 153 of file TTreeReaderArray.h.
|
inline |
Post-decrement operator.
Definition at line 163 of file TTreeReaderArray.h.
|
inline |
Definition at line 184 of file TTreeReaderArray.h.
|
inline |
Definition at line 122 of file TTreeReaderArray.h.
|
inline |
Definition at line 186 of file TTreeReaderArray.h.
|
inline |
Definition at line 188 of file TTreeReaderArray.h.
|
default |
|
default |
|
inline |
Definition at line 124 of file TTreeReaderArray.h.
|
inline |
Definition at line 187 of file TTreeReaderArray.h.
|
inline |
Definition at line 189 of file TTreeReaderArray.h.
|
inline |
Definition at line 191 of file TTreeReaderArray.h.
|
friend |
Definition at line 171 of file TTreeReaderArray.h.
|
private |
The array iterated over; nullptr if invalid/past-the-end.
Definition at line 92 of file TTreeReaderArray.h.
|
private |
Current index in the array.
Definition at line 93 of file TTreeReaderArray.h.
|
private |
Size of the TTreeReaderArray.
Definition at line 94 of file TTreeReaderArray.h.