(PECL ds >= 1.0.0)
Ds\Collection::clear — Removes all values
Removes all values from the collection.
This function has no parameters.
No value is returned.
Example #1 Ds\Collection::clear() example
<?php$collection = new \Ds\Vector([1, 2, 3]);print_r($collection);$collection->clear();print_r($collection);?>
The above example will output something similar to:
Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Vector Object ( )