(IFn f0, double a, double b)
| 272 | } |
| 273 | |
| 274 | public static long invokeDDL(IFn f0, double a, double b) { |
| 275 | if(f0 instanceof IFn.DDL) { |
| 276 | return ((IFn.DDL)f0).invokePrim(a, b); |
| 277 | } else { |
| 278 | return RT.longCast(f0.invoke(a, b)); |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | public static long invokeLDL(IFn f0, long a, double b) { |
| 283 | if(f0 instanceof IFn.LDL) { |
nothing calls this directly
no test coverage detected