(IFn f0, long a, long b)
| 392 | } |
| 393 | |
| 394 | public static short invokeLLS(IFn f0, long a, long b) { |
| 395 | if(f0 instanceof IFn.LLL) { |
| 396 | return RT.shortCast(((IFn.LLL)f0).invokePrim(a, b)); |
| 397 | } else { |
| 398 | return RT.shortCast(f0.invoke(a, b)); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | public static short invokeLOS(IFn f0, long a, Object b) { |
| 403 | if(f0 instanceof IFn.LOL) { |
nothing calls this directly
no test coverage detected