#include <AH/Containers/Array.hpp>
Public Types | |
using | difference_type = std::ptrdiff_t |
using | value_type = T |
using | pointer = ElementPtrType |
using | reference = ElementRefType |
using | iterator_category = std::random_access_iterator_tag |
Public Member Functions | |
Iterator (ElementPtrType ptr) | |
bool | operator== (Iterator rhs) const |
bool | operator!= (Iterator rhs) const |
reference | operator* () const |
pointer | operator-> () const |
reference | operator[] (difference_type n) const |
Iterator & | operator++ () |
Iterator & | operator-- () |
Iterator | operator++ (int) |
Iterator | operator-- (int) |
Iterator & | operator+= (difference_type n) |
Iterator & | operator-= (difference_type n) |
difference_type | operator- (Iterator rhs) const |
Iterator | operator+ (difference_type rhs) const |
Iterator | operator- (difference_type rhs) const |
bool | operator< (Iterator rhs) const |
bool | operator> (Iterator rhs) const |
bool | operator<= (Iterator rhs) const |
bool | operator>= (Iterator rhs) const |
Private Attributes | |
ElementPtrType | ptr |
Related Functions | |
(Note that these are not member functions.) | |
template<class T , size_t N, bool Reverse, bool Const> | |
ArraySlice< T, N, Reverse, Const >::Iterator | operator+ (typename ArraySlice< T, N, Reverse, Const >::Iterator::difference_type n, typename ArraySlice< T, N, Reverse, Const >::Iterator a) |
using difference_type = std::ptrdiff_t |
using value_type = T |
using pointer = ElementPtrType |
using reference = ElementRefType |
using iterator_category = std::random_access_iterator_tag |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
private |