The Collection interfaceIntroductionCollection 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
Ds\Collection
extends
Countable
IteratorAggregate
JsonSerializable
/* Methods */
public void Ds\Collection::clear()
public Ds\Collection Ds\Collection::copy()
public bool Ds\Collection::isEmpty()
public array Ds\Collection::toArray()
/* Inherited methods */
public int Countable::count()
public Traversable IteratorAggregate::getIterator()
public mixed JsonSerializable::jsonSerialize()
Changelog
|