(IFn f0, Object a, Object b)
| 368 | } |
| 369 | |
| 370 | public static int invokeOOI(IFn f0, Object a, Object b) { |
| 371 | if(f0 instanceof IFn.OOL) { |
| 372 | return RT.intCast(((IFn.OOL)f0).invokePrim(a, b)); |
| 373 | } else { |
| 374 | return RT.intCast(f0.invoke(a, b)); |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | public static int invokeODI(IFn f0, Object a, double b) { |
| 379 | if(f0 instanceof IFn.ODL) { |
nothing calls this directly
no test coverage detected