Dequeue (Arraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (missed a tag)
m (missed a tag)
Line 7: Line 7:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><i>%item</i></th>
<tr><th>%item</th>
<td>A variable of the same type as specified on the <var class="term">al</var> declaration to contain the contents of the first <var class="term">al</var> item. </td></tr>
<td>A variable of the same type as specified on the <var class="term">al</var> declaration to contain the contents of the first <var class="term">al</var> item. </td></tr>
<tr><th><i><var class="term">al</var></i></th>
<tr><th><var class="term">al</var></th>
<td>An <var>Arraylist</var> object.</td></tr>
<td>An <var>Arraylist</var> object.</td></tr>
</table>
</table>

Revision as of 01:47, 2 February 2011

Retrieve first Arraylist item, then remove item (Arraylist class)


This callable function returns the current contents of the first item in the method object Arraylist; then it removes that item.

Syntax

[%item =] al:Dequeue

Syntax terms

%item A variable of the same type as specified on the al declaration to contain the contents of the first al item.
al An Arraylist object.

Usage notes

  • The Dequeue method for object al is equivalent to specifying al:Item(1) followed by al:RemoveItem(1).
  • The FirstItem property returns the first item of an Arraylist without removing it.
  • The Pop function returns the last item of an Arraylist, then removes it.
  • Dequeue is available in Sirius Mods version 7.0 and later.

See also