コード例 #1
0
ファイル: BigRational.php プロジェクト: dmitrymomot/math
 /**
  * Returns the quotient and remainder of the division of the numerator by the denominator.
  *
  * @return BigInteger[]
  */
 public function quotientAndRemainder()
 {
     return $this->numerator->quotientAndRemainder($this->denominator);
 }