A class that represents a list entry.
List entries represent values that have been pushed on the list and are waiting to be pulled.value | Gets the variant value of the thing on the list. |
remove | Removes the entry from the partition. |
readonly Variant value
Gets the variant value of the thing on the list.
List("ItemList").entries()[1].value == 5;
void remove( ) |
Removes the entry from the partition.
List("ItemList").entries()[1].remove();
Use this instead of destroyobject() so the list can keep track of its statistics.