コード例 #1
0
ファイル: Rational.php プロジェクト: bound1ess/php-math
 /**
  * @param Rational $value
  * @return Rational
  */
 public function divide(Rational $value) : Rational
 {
     return $this->multiply($value->getInverse());
 }