(IFn f0, double a, double b)
| 344 | } |
| 345 | |
| 346 | public static int invokeDDI(IFn f0, double a, double b) { |
| 347 | if(f0 instanceof IFn.DDL) { |
| 348 | return RT.intCast(((IFn.DDL)f0).invokePrim(a, b)); |
| 349 | } else { |
| 350 | return RT.intCast(f0.invoke(a, b)); |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | public static int invokeLDI(IFn f0, long a, double b) { |
| 355 | if(f0 instanceof IFn.LDL) { |
nothing calls this directly
no test coverage detected