Dequeue (Stringlist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (syntax digram, tags and links)
m (syntax digram, tags and links)
Line 19: Line 19:
</ul>
</ul>


[[Category:Stringlist methods|Dequeue function]]
==See also==
{{Template:Stringlist:Dequeue footer}}

Revision as of 18:56, 26 January 2011

Retrieve value of first Stringlist item, then remove item (Stringlist class)


This callable method returns the current contents of the first item in the method object Stringlist, then it removes that first item. Dequeue is available in Sirius Mods version 7.0 and later.

Syntax

[%string =] sl:Dequeue

Syntax terms

%string This string is to contain the contents of the first item in sl.
sl A Stringlist object.

Usage notes

  • All errors in Dequeue result in request cancellation.
  • See also:
    • FirstItem which returns the first item of a Stringlist without removing it.
    • Pop which returns the last item of a Stringlist, then removes it.

See also