(IFn f0, Object a, long b)
| 336 | } |
| 337 | |
| 338 | public static int invokeOLI(IFn f0, Object a, long b) { |
| 339 | if(f0 instanceof IFn.OLL) { |
| 340 | return RT.intCast(((IFn.OLL)f0).invokePrim(a, b)); |
| 341 | } else { |
| 342 | return RT.intCast(f0.invoke(a, b)); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | public static int invokeDDI(IFn f0, double a, double b) { |
| 347 | if(f0 instanceof IFn.DDL) { |
nothing calls this directly
no test coverage detected