(IFn f0, Object a)
| 172 | } |
| 173 | |
| 174 | public static byte invokeOB(IFn f0, Object a) { |
| 175 | if(f0 instanceof IFn.OL) { |
| 176 | return RT.byteCast(((IFn.OL)f0).invokePrim(a)); |
| 177 | } else { |
| 178 | return RT.byteCast(f0.invoke(a)); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | public static double invokeLD(IFn f0, long a) { |
| 183 | if(f0 instanceof IFn.LD) { |
nothing calls this directly
no test coverage detected