1 #ifndef UTIL_ARRAY_ITERATOR_H 2 #define UTIL_ARRAY_ITERATOR_H 38 template <
typename Data>
76 {
return (current_ == end_); }
84 {
return (current_ != end_); }
103 {
return *current_; }
bool notEnd() const
Is the current pointer not at the end of the array?
ArrayIterator< Data > & operator++()
Increment the current pointer.
void setCurrent(Data *ptr)
Set the current pointer value.
Utility classes for scientific computation.
Forward iterator for an Array or a C array.
Data * operator->() const
Provide a pointer to the current Data object.
void setEnd(Data *ptr)
Set the value of the end pointer.
bool isEnd() const
Has the end of the array been reached?
Data & operator*() const
Get a reference to the current Data.
ArrayIterator()
Default constructor.