(IFn f0, Object a, Object b)
| 296 | } |
| 297 | |
| 298 | public static long invokeOOL(IFn f0, Object a, Object b) { |
| 299 | if(f0 instanceof IFn.OOL) { |
| 300 | return ((IFn.OOL)f0).invokePrim(a, b); |
| 301 | } else { |
| 302 | return RT.longCast(f0.invoke(a, b)); |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | public static long invokeODL(IFn f0, Object a, double b) { |
| 307 | if(f0 instanceof IFn.ODL) { |
nothing calls this directly
no test coverage detected