KJS::ListIterator
Search for usage in LXR
#include <list.h>
Iterator for KJS::List objects.
Definition at line 202 of file list.h.
◆ ListIterator()
KJS::ListIterator::ListIterator |
( |
const List & |
l | ) |
|
|
inline |
Construct an iterator that points to the first element of the list.
- Parameters
-
l | The list the iterator will operate on. |
Definition at line 209 of file list.h.
◆ operator!=()
bool KJS::ListIterator::operator!= |
( |
const ListIterator & |
it | ) |
const |
|
inline |
Check for inequality with another iterator.
- Returns
- True if the two iterators operate on different list elements.
Definition at line 265 of file list.h.
◆ operator++() [1/2]
JSValue* KJS::ListIterator::operator++ |
( |
| ) |
|
|
inline |
Prefix increment operator.
- Returns
- The element after the increment.
Definition at line 227 of file list.h.
◆ operator++() [2/2]
JSValue* KJS::ListIterator::operator++ |
( |
int |
| ) |
|
|
inline |
Postfix increment operator.
Definition at line 234 of file list.h.
◆ operator--() [1/2]
JSValue* KJS::ListIterator::operator-- |
( |
| ) |
|
|
inline |
Prefix decrement operator.
Definition at line 241 of file list.h.
◆ operator--() [2/2]
JSValue* KJS::ListIterator::operator-- |
( |
int |
| ) |
|
|
inline |
Postfix decrement operator.
Definition at line 248 of file list.h.
◆ operator->()
JSValue* KJS::ListIterator::operator-> |
( |
| ) |
const |
|
inline |
Dereference the iterator.
- Returns
- A pointer to the element the iterator operates on.
Definition at line 215 of file list.h.
◆ operator==()
bool KJS::ListIterator::operator== |
( |
const ListIterator & |
it | ) |
const |
|
inline |
Compare the iterator with another one.
- Returns
- True if the two iterators operate on the same list element. False otherwise.
Definition at line 257 of file list.h.
The documentation for this class was generated from the following file:
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon Feb 6 2023 03:56:21 by
doxygen 1.8.17 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.