(IFn f0, Object a)
| 220 | } |
| 221 | |
| 222 | public static float invokeOF(IFn f0, Object a) { |
| 223 | if(f0 instanceof IFn.OD) { |
| 224 | return RT.floatCast(((IFn.OD)f0).invokePrim(a)); |
| 225 | } else { |
| 226 | return RT.floatCast(f0.invoke(a)); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | public static Object invokeLO(IFn f0, long a) { |
| 231 | if(f0 instanceof IFn.LO) { |
nothing calls this directly
no test coverage detected