Exemplo n.º 1
0
 /**
  * @param Type $other
  * @return boolean
  */
 public function sameAs(Type $other)
 {
     if (!$other instanceof AbstractCollection) {
         return false;
     }
     return $this->getInnerIterator() === $other->getInnerIterator();
 }