abstract container class that throws an exception if an unknown key is accessed
More...
Inherits Serializable.
|
| add (auto val) |
| adds the given value to the list
|
|
| constructor (softlist nl) |
| creates the object with the list<auto> argument passed
|
|
bool | empty () |
| returns True if the container is empty, False if not
|
|
abstract auto | get (softint i) |
| returns the value of the given element in the contained list if it exists, otherwise throws an ELEMENT-ERROR exception More...
|
|
abstract string | getElementName () |
| must return the name of the contained element
|
|
list< auto > | getList () |
| returns the list contained by this object
|
|
Qore::ListIterator | iterator () |
| Returns a ListIterator object for the contained list. More...
|
|
int | size () |
| Returns the number of elements in the contained list. More...
|
|
auto | take (int i) |
| removes the given element from the contained list and returns the value
|
|
bool | val () |
| Returns False if the contained list is empty, True if not. More...
|
|
abstract container class that throws an exception if an unknown key is accessed