ElementTree pushListItem(ElementTree list, String initialcontents=createString(0))
Arguments
list: The list to append toinitialcontents: Optionally, the initial contents of the list item
Usage
Append a list item to a list. If the list given is not actually a list, an InvalidNesting Exception is thrown. This is sometimes a more convenient way to build up lists than using an initial content array on addList, especially if the final size of the list is variable.
list = addList(parent,Ordered,0);
while (text = getNextText(source)) {
pushListItem(list,text);
}