Simpatico  v1.10
ArrayIterator.h
1 #ifndef UTIL_ARRAY_ITERATOR_H
2 #define UTIL_ARRAY_ITERATOR_H
3 
4 /*
5 * Util Package - C++ Utilities for Scientific Computation
6 *
7 * Copyright 2010 - 2017, The Regents of the University of Minnesota
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 namespace Util
12 {
13 
14  //template <typename Data> class Array;
15  //template <typename Data, int Capacity> class FSArray;
16 
38  template <typename Data>
40  {
41 
42  public:
43 
50  : current_(0),
51  end_(0)
52  {}
53 
59  void setCurrent(Data *ptr)
60  { current_ = ptr; }
61 
67  void setEnd(Data *ptr)
68  { end_ = ptr; }
69 
75  bool isEnd() const
76  { return (current_ == end_); }
77 
83  bool notEnd() const
84  { return (current_ != end_); }
85 
91  Data* get() const
92  { return current_; }
93 
95 
96 
102  Data& operator* () const
103  { return *current_; }
104 
110  Data* operator -> () const
111  { return current_; }
112 
119  {
120  ++current_;
121  return *this;
122  }
123 
125 
126  private:
127 
129  Data* current_;
130 
132  Data* end_;
133 
134  };
135 
136 }
137 #endif
bool notEnd() const
Is the current pointer not at the end of the array?
Definition: ArrayIterator.h:83
ArrayIterator< Data > & operator++()
Increment the current pointer.
void setCurrent(Data *ptr)
Set the current pointer value.
Definition: ArrayIterator.h:59
Utility classes for scientific computation.
Definition: accumulators.mod:1
Forward iterator for an Array or a C array.
Definition: ArrayIterator.h:39
Data * operator->() const
Provide a pointer to the current Data object.
void setEnd(Data *ptr)
Set the value of the end pointer.
Definition: ArrayIterator.h:67
bool isEnd() const
Has the end of the array been reached?
Definition: ArrayIterator.h:75
Data & operator*() const
Get a reference to the current Data.
ArrayIterator()
Default constructor.
Definition: ArrayIterator.h:49