Beispiel #1
0
 /*
  * It receives all messages.
  */
 inline void done() { impl.done(); }
Beispiel #2
0
bool SpectrumIterator::Impl::equal(const Impl& that) const
{
    return (done() && &that.spectrumList_==&pastEndMarker_ ||
            &spectrumList_==&pastEndMarker_ && that.done() ||
            &spectrumList_==&that.spectrumList_ && currentIndex_==that.currentIndex_);
}