/**
  * @param ValueObjectInterface $other
  * @return boolean
  */
 public function sameValueAs(ValueObjectInterface $other)
 {
     if (!$other instanceof Arguments) {
         return false;
     }
     return $this->toArray() == $other->toArray();
 }