ConstCollection
The base interface implemented for a collection type so that base information such as count and its items are available
Every concrete class indirectly implements this interface.
Guides
Interface Synopsis
interface ConstCollection implements Countable, IPureStringishObject {...}
Public Methods
-
->count(): int
Get the number of items in the collection -
->isEmpty(): bool
Is the collection empty? -
->items(): HH\Iterable<Te>
Get access to the items in the collection