(x: Rational)
| 166 | export function neg(x: [bigint, bigint]): [bigint, bigint]; |
| 167 | export function neg(x: Rational): Rational; |
| 168 | export function neg(x: Rational): Rational { |
| 169 | return [-x[0], x[1]] as Rational; |
| 170 | } |
| 171 | |
| 172 | export function inverse( |
| 173 | x: [SmallInteger, SmallInteger] |
no outgoing calls
no test coverage detected