 |
Qore Programming Language Reference Manual
0.9.11
|
auto first()
Returns the first entry in the list.
bool complexType()
returns True if the list has a Hash With Declared Value Type, False if not
int lsize()
Returns the number of elements in the list.
AbstractIterator rangeIterator(auto val)
Returns a RangeIterator object for the list elements.
auto last()
Returns the last entry in the list.
bool contains(auto arg)
Returns True if the list contains arg, False if it does not.
string join(string str)
Creates a string from the list and a separator string given as an argument.
int size()
Returns the number of elements in the list.
bool val()
Returns False if the list is empty (size = 0), True if not.
int typeCode()
Returns Qore::NT_LIST.
bool sizep()
Returns True since lists can return a non-zero size.
Methods in this pseudo-class are available to be executed on any value type (even NOTHING); this is t...
Definition: Pseudo_QC_All.dox.h:6
bool empty()
Returns True if the list is empty (size = 0), False if not.
Methods in this pseudo-class can be executed on lists.
Definition: Pseudo_QC_List.dox.h:6
This class defines an abstract interface for iterators.
Definition: QC_AbstractIterator.dox.h:10
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
AbstractIterator iterator()
Returns a ListIterator object for the list.