delphirtl • Docs
delphirtl / Queue
A first in, first out class
• T
new Queue<
T
>():Queue
<T
>
Queue
<T
>
get length():
number
The number of values in the store
number
next():
undefined
|T
undefined
| T
The first value in the store
pop():
undefined
|T
undefined
| T
The first value in the store
push(
val
):void
• val: T
Puts the given value into the class
void