(IFn f0, long a, long b)
| 320 | } |
| 321 | |
| 322 | public static int invokeLLI(IFn f0, long a, long b) { |
| 323 | if(f0 instanceof IFn.LLL) { |
| 324 | return RT.intCast(((IFn.LLL)f0).invokePrim(a, b)); |
| 325 | } else { |
| 326 | return RT.intCast(f0.invoke(a, b)); |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | public static int invokeLOI(IFn f0, long a, Object b) { |
| 331 | if(f0 instanceof IFn.LOL) { |
nothing calls this directly
no test coverage detected