Qore Programming Language Reference Manual  0.9.4.2
QC_ObjectReverseIterator.dox.h
1 namespace Qore {
4 
43 
44 public:
46 
53  constructor(object o);
54 
55 public:
57 
63  constructor();
64 
65 public:
67 
72  copy();
73 
74 public:
76 
89 bool first();
90 
91 public:
93 
106 bool last();
107 
108 public:
110 
127 bool next();
128 
129 public:
131 
148 bool prev();
149 };
150 }
Qore::ObjectReverseIterator::first
bool first()
returns True if on the last element of the object
Qore::ObjectReverseIterator::last
bool last()
returns True if on the first element of the object
Qore::ObjectReverseIterator::prev
bool prev()
Moves the current position to the next element in the object; returns False if there are no more elem...
Qore::ObjectReverseIterator::copy
copy()
Creates a copy of the ObjectReverseIterator object, iterating the same object as the original and in ...
Qore::ObjectReverseIterator
This class an iterator class for objects.
Definition: QC_ObjectReverseIterator.dox.h:42
Qore::ObjectIterator
This class a basic iterator class for objects.
Definition: QC_ObjectIterator.dox.h:37
Qore::ObjectReverseIterator::constructor
constructor()
Creates an empty iterator object.
Qore::ObjectReverseIterator::next
bool next()
Moves the current position to the previous element in the object; returns False if there are no more ...
Qore
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3