only the prefix ++ is implemented, the postfix would have to return a copy
Definition at line 28 of file QuasiRandomSequenceIterator.h. References mCurrent, mPickout, and mSequence. 00029 { 00030 mCurrent = mSequence.erase(mCurrent); 00031 if(mCurrent == mSequence.end()) 00032 mCurrent = mSequence.begin(); 00033 if(mSequence.size() > 0) 00034 for(int i=mPickout ; i>0 ; --i) 00035 { 00036 ++mCurrent; 00037 if(mCurrent == mSequence.end()) 00038 mCurrent = mSequence.begin(); 00039 } 00040 return *this; 00041 }
|