QVectorIterator ( const QVector<T> & vector ) |
|
bool
|
findNext
( const T & value )
|
bool
|
findPrevious
( const T & value )
|
bool
|
hasNext
() const
|
bool
|
hasPrevious
() const
|
const T &
|
next
()
|
const T &
|
peekNext
() const
|
const T &
|
peekPrevious
() const
|
const T &
|
previous
()
|
void
|
toBack
()
|
void
|
toFront
()
|
QVectorIterator &
|
operator=
( const QVector<T> & vector )
|
QVector<float> vector;
...
QVectorIterator<float> i(vector);
while (i.hasNext())
qDebug() << i.next();
QVectorIterator<float> i(vector);
i.toBack();
while (i.hasPrevious())
qDebug() << i.previous();