(Object a, Object b)
| 476 | } |
| 477 | |
| 478 | public static Object mathMin(Object a, Object b) { |
| 479 | if (a == null || b == null) return null; |
| 480 | double first = toDouble(a); |
| 481 | double second = toDouble(b); |
| 482 | return (first < second) ? a : b; |
| 483 | } |
| 484 | |
| 485 | public static double mathPow(Object base, Object exp) { |
| 486 | if (base instanceof Number && exp instanceof Number) { |
no test coverage detected