(IFn f0, long a, double b)
| 280 | } |
| 281 | |
| 282 | public static long invokeLDL(IFn f0, long a, double b) { |
| 283 | if(f0 instanceof IFn.LDL) { |
| 284 | return ((IFn.LDL)f0).invokePrim(a, b); |
| 285 | } else { |
| 286 | return RT.longCast(f0.invoke(a, b)); |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | public static long invokeDLL(IFn f0, double a, long b) { |
| 291 | if(f0 instanceof IFn.DLL) { |
nothing calls this directly
no test coverage detected