#include <BoxIterator.H>
BoxIterator iterates through the IntVects of a box. The actual sqeuence of IntVects is implementation-specific. Typical usage:
Box b; ... BoxIterator bit (b); for (bit.begin(); bit.ok(); ++bit) { IntVect iv = bit(); (do operations involving iv) }
Public Member Functions | |
BoxIterator () | |
BoxIterator (const Box &a_bx) | |
void | setBox (const Box &a_bx) |
void | define (const Box &a_bx) |
BoxIterator (const BoxIterator &a_iterIn) | |
~BoxIterator () | |
void | begin () |
void | reset () |
void | operator++ () |
void | next () |
const IntVect & | operator() () const |
bool | ok () |
Protected Attributes | |
IntVect | m_current |
IntVect | m_boxLo |
IntVect | m_boxHi |
BoxIterator::BoxIterator | ( | ) | [inline] |
Default constructor. This constructs an invalid iterator. The user must call define before using.
References m_boxHi, m_boxLo, m_current, IntVect::Unit, and IntVect::Zero.
BoxIterator::BoxIterator | ( | const Box & | a_bx | ) | [inline] |
Constructs a BoxIterator and associates it with a Box. Arguments: a_bx (not modified) the Box to iterate over.
References define().
BoxIterator::BoxIterator | ( | const BoxIterator & | a_iterIn | ) | [inline] |
Copy constructor. Arguments: a_iterIn (not modified) the BoxIterator to copy.
BoxIterator::~BoxIterator | ( | ) | [inline] |
void BoxIterator::setBox | ( | const Box & | a_bx | ) |
void BoxIterator::define | ( | const Box & | a_bx | ) |
Associates a Box with this BoxIterator. Arguments: a_bx (not modified) the Box to iterate over.
Referenced by BoxIterator().
void BoxIterator::begin | ( | ) | [inline] |
void BoxIterator::reset | ( | ) | [inline] |
Sets this BoxIterator to the first IntVect in its Box. The definition of the "first" IntVect is implementation-dependent.
References begin().
void BoxIterator::operator++ | ( | ) | [inline] |
Modifies this BoxIterator to set it to the next location in its Box. The definition of the "next location" of a Box is implementation-dependent.
References next().
void BoxIterator::next | ( | ) | [inline] |
const IntVect & BoxIterator::operator() | ( | ) | const [inline] |
Returns the value of the InVect for the current location of this BoxIterator.
bool BoxIterator::ok | ( | ) | [inline] |
IntVect BoxIterator::m_current [protected] |
Referenced by begin(), BoxIterator(), next(), ok(), and operator()().
IntVect BoxIterator::m_boxLo [protected] |
Referenced by begin(), BoxIterator(), next(), and operator()().
IntVect BoxIterator::m_boxHi [protected] |
Referenced by begin(), BoxIterator(), next(), ok(), and operator()().