예제 #1
0
 /**
  * Returns the negated value of this BigRational.
  *
  * @return BigRational
  */
 public function negated()
 {
     return new BigRational($this->numerator->negated(), $this->denominator, false);
 }