(IFn f0, Object a, long b)
| 408 | } |
| 409 | |
| 410 | public static short invokeOLS(IFn f0, Object a, long b) { |
| 411 | if(f0 instanceof IFn.OLL) { |
| 412 | return RT.shortCast(((IFn.OLL)f0).invokePrim(a, b)); |
| 413 | } else { |
| 414 | return RT.shortCast(f0.invoke(a, b)); |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | public static short invokeDDS(IFn f0, double a, double b) { |
| 419 | if(f0 instanceof IFn.DDL) { |
nothing calls this directly
no test coverage detected