(IFn f0, long a, double b)
| 424 | } |
| 425 | |
| 426 | public static short invokeLDS(IFn f0, long a, double b) { |
| 427 | if(f0 instanceof IFn.LDL) { |
| 428 | return RT.shortCast(((IFn.LDL)f0).invokePrim(a, b)); |
| 429 | } else { |
| 430 | return RT.shortCast(f0.invoke(a, b)); |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | public static short invokeDLS(IFn f0, double a, long b) { |
| 435 | if(f0 instanceof IFn.DLL) { |
nothing calls this directly
no test coverage detected