(IFn f0, long a, double b)
| 568 | } |
| 569 | |
| 570 | public static double invokeLDD(IFn f0, long a, double b) { |
| 571 | if(f0 instanceof IFn.LDD) { |
| 572 | return ((IFn.LDD)f0).invokePrim(a, b); |
| 573 | } else { |
| 574 | return RT.doubleCast(f0.invoke(a, b)); |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | public static double invokeDLD(IFn f0, double a, long b) { |
| 579 | if(f0 instanceof IFn.DLD) { |
nothing calls this directly
no test coverage detected