(IFn f0, Object a)
| 124 | } |
| 125 | |
| 126 | public static int invokeOI(IFn f0, Object a) { |
| 127 | if(f0 instanceof IFn.OL) { |
| 128 | return RT.intCast(((IFn.OL)f0).invokePrim(a)); |
| 129 | } else { |
| 130 | return RT.intCast(f0.invoke(a)); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | public static short invokeLS(IFn f0, long a) { |
| 135 | if(f0 instanceof IFn.LL) { |
nothing calls this directly
no test coverage detected