Skip to content
Dickson Law edited this page Apr 12, 2023 · 3 revisions

Classes

Queue(...)

A standard first-in-first-out data structure. See DS Queues.

Ported Methods

Aliases

  • get(): Same as head().

New Methods

  • clone(): Return a shallow clone of the queue.
  • cloneDeep(): Same as clone(), but also making deep copies of everything in the queue.
  • copyDeep(sourceQueue): Same as copy(sourceQueue), but with deep copies of everything in the source.

Clone this wiki locally