implements |
Collection |
---|
A Queue is a “first in, first out” or “FIFO” collection that only allows access to the value at the front of the queue and iterates in that order, destructively.
Uses a Ds\Vector internally.
Methods | ||
---|---|---|
public
|
__construct(iterable $values = [])
|
# |
public
|
allocate(int $capacity)
|
# |
public
|
capacity(): int
|
# |
public
|
clear(): void
|
# |
public
|
count(): int
|
# |
public
|
copy(): Stack
|
# |
public
|
getIterator(): Traversable
|
# |
public
|
isEmpty(): bool
|
# |
public
|
toArray(): array
|
# |
public
|
jsonSerialize(): mixed
|
# |
public
|
peek(): mixed
|
# |
public
|
pop(): mixed
|
# |
public
|
push(array ...$values)
|
# |