(IFn f0, double a, double b)
| 416 | } |
| 417 | |
| 418 | public static short invokeDDS(IFn f0, double a, double b) { |
| 419 | if(f0 instanceof IFn.DDL) { |
| 420 | return RT.shortCast(((IFn.DDL)f0).invokePrim(a, b)); |
| 421 | } else { |
| 422 | return RT.shortCast(f0.invoke(a, b)); |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | public static short invokeLDS(IFn f0, long a, double b) { |
| 427 | if(f0 instanceof IFn.LDL) { |
nothing calls this directly
no test coverage detected