Qore Programming Language Reference Manual  0.9.11
QC_ListReverseIterator.dox.h
1 namespace Qore {
4 
33 
34 public:
36 
45  constructor(softlist<auto> l);
46 
47 public:
49 
54  copy();
55 
56 public:
58 
71 bool first();
72 
73 public:
75 
88 bool last();
89 
90 public:
92 
109 bool next();
110 
111 public:
113 
130 bool prev();
131 };
132 }
Qore::ListReverseIterator::constructor
constructor(softlist< auto > l)
Creates the list iterator object.
Qore::ListIterator
This class an iterator class for lists.
Definition: QC_ListIterator.dox.h:28
Qore::ListReverseIterator::next
bool next()
Moves the current position to the previous element in the list; returns False if there are no more el...
Qore::ListReverseIterator::prev
bool prev()
Moves the current position to the next element in the list; returns False if there are no more elemen...
Qore::ListReverseIterator::last
bool last()
returns True if on the last element iterated with this iterator (ie the first element in the list)
Qore::ListReverseIterator::first
bool first()
returns True if on the first element iterated with this iterator (ie the last element in the list)
Qore
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
Qore::ListReverseIterator::copy
copy()
Creates a copy of the ListReverseIterator object, iterating the same object as the original and in th...
Qore::ListReverseIterator
This class an iterator class for lists.
Definition: QC_ListReverseIterator.dox.h:32