(IFn f0, long a, double b)
| 352 | } |
| 353 | |
| 354 | public static int invokeLDI(IFn f0, long a, double b) { |
| 355 | if(f0 instanceof IFn.LDL) { |
| 356 | return RT.intCast(((IFn.LDL)f0).invokePrim(a, b)); |
| 357 | } else { |
| 358 | return RT.intCast(f0.invoke(a, b)); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | public static int invokeDLI(IFn f0, double a, long b) { |
| 363 | if(f0 instanceof IFn.DLL) { |
nothing calls this directly
no test coverage detected