(IFn f0, double a)
| 92 | } |
| 93 | |
| 94 | public static long invokeDL(IFn f0, double a) { |
| 95 | if(f0 instanceof IFn.DL) { |
| 96 | return ((IFn.DL)f0).invokePrim(a); |
| 97 | } else { |
| 98 | return RT.longCast(f0.invoke(a)); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | public static long invokeOL(IFn f0, Object a) { |
| 103 | if(f0 instanceof IFn.OL) { |
nothing calls this directly
no test coverage detected