(Object x, Object y)
| 192 | } |
| 193 | |
| 194 | static public Number quotient(Object x, Object y){ |
| 195 | Ops yops = ops(y); |
| 196 | if(yops.isZero((Number) y)) |
| 197 | throw new ArithmeticException("Divide by zero"); |
| 198 | return ops(x).combine(yops).quotient((Number)x, (Number)y); |
| 199 | } |
| 200 | |
| 201 | static public Number remainder(Object x, Object y){ |
| 202 | Ops yops = ops(y); |
no test coverage detected