(IFn f0, double a, long b)
| 576 | } |
| 577 | |
| 578 | public static double invokeDLD(IFn f0, double a, long b) { |
| 579 | if(f0 instanceof IFn.DLD) { |
| 580 | return ((IFn.DLD)f0).invokePrim(a, b); |
| 581 | } else { |
| 582 | return RT.doubleCast(f0.invoke(a, b)); |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | public static double invokeOOD(IFn f0, Object a, Object b) { |
| 587 | if(f0 instanceof IFn.OOD) { |
nothing calls this directly
no test coverage detected