The Collection interface

(PECL ds >= 1.0.0)

简介

Collection is the base interface which covers functionality common to all the data structures in this library. It guarantees that all structures are traversable, countable, and can be converted to json using json_encode().

接口摘要

interface Ds\Collection extends Countable, IteratorAggregate, JsonSerializable {
/* 方法 */
public function clear(): void
public function copy(): Ds\Collection
public function isEmpty(): bool
public function toArray(): array
/* 继承的方法 */
public function Countable::count(): int
}

更新日志

版本 说明
PECL ds 1.4.0 Collection implements IteratorAggregate now instead of just Traversable. (This change came to the polyfill in 1.4.1.)

目录

添加备注

用户贡献的备注

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