KJS::List Class Reference
#include <list.h>
Detailed Description
Native list type.List is a native ECMAScript type. List values are only used for intermediate results of expression evaluation and cannot be stored as properties of objects.
The list is explicitly shared. Note that while copyTail() returns a copy of the list the referenced objects are still shared.
Definition at line 48 of file list.h.
Public Member Functions | |
List () | |
List (bool needsMarking) | |
~List () | |
List (const List &b) | |
List & | operator= (const List &) |
void | append (const Value &val) |
void | append (ValueImp *val) |
void | clear () |
List | copy () const |
List | copyTail () const |
bool | isEmpty () const |
int | size () const |
ListIterator | begin () const |
ListIterator | end () const |
Value | at (int i) const |
Value | operator[] (int i) const |
ValueImp * | impAt (int i) const |
void | mark () |
Static Public Member Functions | |
static const List & | empty () |
Member Function Documentation
|
Append an object to the end of the list.
|
|
Retrieve an element at an indexed position. If you want to iterate trough the whole list using KJS::ListIterator will be faster.
|
|
|
|
Remove all elements from the list.
|
|
Make a copy of the list.
|
|
Make a copy of the list, omitting the first element.
|
|
Returns a pointer to a static instance of an empty list. Useful if a function has a KJS::List parameter. |
|
|
|
|
|
Equivalent to at.
|
|
|
The documentation for this class was generated from the following files: