(IFn f0, double a, double b)
| 560 | } |
| 561 | |
| 562 | public static double invokeDDD(IFn f0, double a, double b) { |
| 563 | if(f0 instanceof IFn.DDD) { |
| 564 | return ((IFn.DDD)f0).invokePrim(a, b); |
| 565 | } else { |
| 566 | return RT.doubleCast(f0.invoke(a, b)); |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | public static double invokeLDD(IFn f0, long a, double b) { |
| 571 | if(f0 instanceof IFn.LDD) { |
nothing calls this directly
no test coverage detected