(IFn f0, long a, long b)
| 536 | } |
| 537 | |
| 538 | public static double invokeLLD(IFn f0, long a, long b) { |
| 539 | if(f0 instanceof IFn.LLD) { |
| 540 | return ((IFn.LLD)f0).invokePrim(a, b); |
| 541 | } else { |
| 542 | return RT.doubleCast(f0.invoke(a, b)); |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | public static double invokeLOD(IFn f0, long a, Object b) { |
| 547 | if(f0 instanceof IFn.LOD) { |
nothing calls this directly
no test coverage detected