/**
  * Compares this lemon with another one and returns true if they have the same datas
  *
  * @param Lemon $lemon 
  * @return boolean
  */
 public function is_same_as($lemon)
 {
     return $this->_datas === $lemon->datas();
 }