The Collection interface

From Get docs
Php/docs/latest/class.ds-collection


The Collection interface

Introduction

(No version information available, might only be in Git)

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 synopsis

class Ds\Collection implements Traversable, Countable, JsonSerializable {

/* Methods */

abstract public clear(): void
abstract public copy(): Ds\Collection
abstract public isEmpty(): bool
abstract public toArray(): array

}

Table of Contents


© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/class.ds-collection.php