(IFn f0, Object a, long b)
| 264 | } |
| 265 | |
| 266 | public static long invokeOLL(IFn f0, Object a, long b) { |
| 267 | if(f0 instanceof IFn.OLL) { |
| 268 | return ((IFn.OLL)f0).invokePrim(a, b); |
| 269 | } else { |
| 270 | return RT.longCast(f0.invoke(a, b)); |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | public static long invokeDDL(IFn f0, double a, double b) { |
| 275 | if(f0 instanceof IFn.DDL) { |
nothing calls this directly
no test coverage detected