List.Entry

Description

A class that represents a list entry.

List entries represent values that have been pushed on the list and are waiting to be pulled.

Properties

value Gets the variant value of the thing on the list.

Methods

remove Removes the entry from the partition.

Details

Do no remove, this fixes the anchor on doc.flexsim.com

List.Entry.value

readonly Variant value

Description

Gets the variant value of the thing on the list.

List("ItemList").entries()[1].value == 5;
Do no remove, this fixes the anchor on doc.flexsim.com

List.Entry.remove()

void remove( )

Description

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.