(IFn f0, double a, double b)
| 488 | } |
| 489 | |
| 490 | public static byte invokeDDB(IFn f0, double a, double b) { |
| 491 | if(f0 instanceof IFn.DDL) { |
| 492 | return RT.byteCast(((IFn.DDL)f0).invokePrim(a, b)); |
| 493 | } else { |
| 494 | return RT.byteCast(f0.invoke(a, b)); |
| 495 | } |
| 496 | } |
| 497 | |
| 498 | public static byte invokeLDB(IFn f0, long a, double b) { |
| 499 | if(f0 instanceof IFn.LDL) { |
nothing calls this directly
no test coverage detected