HH\Collection

Collection is the primary collection interface for mutable collections

Assuming you want the ability to clear out your collection, you would implement this (or a child of this) interface. Otherwise, you can implement OutputCollection only. If your collection to be immutable, implement ConstCollection only instead.

Guides

Interface Synopsis

namespace HH;

interface Collection implements \ConstCollection<Te>, \OutputCollection<Te> {...}

Public Methods

  • ->clear()
    Removes all items from the collection

Public Methods (ConstCollection)

Public Methods (IPureStringishObject)

Public Methods (OutputCollection)