The Queue class

(PECL ds >= 1.0.0)

简介

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.

类摘要

class Ds\Queue implements Ds\Collection, ArrayAccess {
/* 常量 */
const int MIN_CAPACITY = 8;
/* 方法 */
public function allocate(int $capacity): void
public function capacity(): int
public function clear(): void
public function copy(): Ds\Queue
public function isEmpty(): bool
public function peek(): mixed
public function pop(): mixed
public function push(mixed ...$values): void
public function toArray(): array
}

预定义常量

Ds\Queue::MIN_CAPACITY

更新日志

版本 说明
PECL ds 1.3.0 The class now implements ArrayAccess.

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top