(IFn f0, long a, Object b)
| 544 | } |
| 545 | |
| 546 | public static double invokeLOD(IFn f0, long a, Object b) { |
| 547 | if(f0 instanceof IFn.LOD) { |
| 548 | return ((IFn.LOD)f0).invokePrim(a, b); |
| 549 | } else { |
| 550 | return RT.doubleCast(f0.invoke(a, b)); |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | public static double invokeOLD(IFn f0, Object a, long b) { |
| 555 | if(f0 instanceof IFn.OLD) { |
nothing calls this directly
no test coverage detected