Category talk:Wren-queue: Difference between revisions

Content added Content deleted
(→‎Source code: Removed type aliases which are no longer needed.)
m (→‎Source code: Fixed syntax highlighting.)
Line 18: Line 18:
===Source code===
===Source code===


<lang ecmascript>/* Module "queue.wren" */
<syntaxhighlight lang=ecmascript>/* Module "queue.wren" */


/* Queue represents a FIFO list of values. */
/* Queue represents a FIFO list of values. */
Line 254: Line 254:
// Returns the string representation of the priority queue's underlying list.
// Returns the string representation of the priority queue's underlying list.
toString { _pqueue.toString }
toString { _pqueue.toString }
}</lang>
}</syntaxhighlight>