/**
  * merge in another collection, elements are appended
  *
  * @param SimpleCollection $a_collection
  */
 function merge(SimpleCollection $a_collection)
 {
     $this->storage = array_merge($this->storage, $a_collection->getArrayCopy());
 }