CopperSpice API
1.9.2
|
The QFutureIterator class provides a Java-style const iterator for QFuture. More...
Public Methods | |
QFutureIterator (const QFuture< T > &future) | |
bool | findNext (const T &value) |
bool | findPrevious (const T &value) |
bool | hasNext () const |
bool | hasPrevious () const |
const T & | next () |
QFutureIterator & | operator= (const QFuture< T > &future) |
const T & | peekNext () const |
const T & | peekPrevious () const |
const T & | previous () |
void | toBack () |
void | toFront () |
The QFutureIterator class provides a Java-style const iterator for QFuture.
QFuture has both Java-style iterators and STL-style iterators. The Java-style iterators are more high-level and easier to use than the STL-style iterators; on the other hand, they are slightly less efficient.
An alternative to using iterators is to use index positions. Some QFuture member functions take an index as their first parameter, making it possible to access results without using iterators.
QFutureIterator<T> allows you to iterate over a QFuture<T>. There is no mutable iterator for QFuture (unlike the other Java-style iterators).
The QFutureIterator is constructed using a QFuture. After construction the iterator is located at the beginning of the result list, before the first result. The following example show how to iterate over all the results sequentially.
Calling next() returns the next result (waiting for it to become available, if necessary) from the future and advances the iterator. Unlike STL-style iterators, Java-style iterators point between results rather than directly at results. The first call to next() advances the iterator to the position between the first and second result and returns the first result. The second call to next() advances the iterator to the position between the second and third result and returns the second result, etc.
This example shows how to iterate over the elements in reverse order.
If you want to find all occurrences of a particular value use findNext() or findPrevious() in a loop. Multiple iterators can be used on the same future. If the future is modified while a QFutureIterator is active, the QFutureIterator will continue iterating over the original future, ignoring the modified copy.
|
inline |
Constructs an iterator for traversing future. The iterator is set to be at the front of the result list, before the first result.
|
inline |
Searches for value starting from the current iterator position and moving forward. Returns true if the specified value is found, otherwise it returns false. If value is found the iterator is positioned just after the matching item, otherwise the iterator is positioned at the end of the result list.
|
inline |
Searches for value starting from the current iterator position and moving backward. Returns true if a (key, value) pair with the specified value is found, otherwise it returns false. If value was found the iterator is positioned just before the matching item. Otherwise the iterator is positioned at the beginning of the container.
|
inline |
Returns true if there is at least one result past the position of the iterator. Otherwise returns false.
|
inline |
Returns true if there is at least one result prior to the position of the iterator. Otherwise returns false.
|
inline |
Returns the next result and advances the iterator by one position. Calling this method with an iterator located at the end of the result list is undefined behavior.
|
inline |
|
inline |
Returns the next result without moving the iterator. Calling this method with an iterator located at the end of the result list is undefined behavior.
|
inline |
Returns the previous result without moving the iterator. Calling this method with an iterator located at the beginning of the result list is undefined behavior.
|
inline |
Returns the previous result and moves the iterator back by one position. Calling this method with an iterator located at the beginning of the result list is undefined behavior.
|
inline |
Moves the iterator to the back of the result list, after the last result.