(Object a, Object b)
| 315 | } |
| 316 | |
| 317 | public static String stringMod(Object a, Object b) { |
| 318 | if (a == null || b == null) return null; |
| 319 | return new Precise(a).mod(new Precise(b)).toString(); |
| 320 | } |
| 321 | |
| 322 | // -------- utilities -------- |
| 323 | private static int toInt(Object o) { |