(IFn f0, Object a, long b)
| 552 | } |
| 553 | |
| 554 | public static double invokeOLD(IFn f0, Object a, long b) { |
| 555 | if(f0 instanceof IFn.OLD) { |
| 556 | return ((IFn.OLD)f0).invokePrim(a, b); |
| 557 | } else { |
| 558 | return RT.doubleCast(f0.invoke(a, b)); |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | public static double invokeDDD(IFn f0, double a, double b) { |
| 563 | if(f0 instanceof IFn.DDD) { |
nothing calls this directly
no test coverage detected