Esempio n. 1
0
 /**
  * @param Rational $value
  * @return Rational
  */
 public function divide(Rational $value) : Rational
 {
     return $this->multiply($value->getInverse());
 }