PHP 8.4.24 Released!

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().

Короткий огляд iнтерфейcу

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.)

Зміст

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top