(IFn f0, long a)
| 84 | } |
| 85 | |
| 86 | public static long invokeLL(IFn f0, long a) { |
| 87 | if(f0 instanceof IFn.LL) { |
| 88 | return ((IFn.LL)f0).invokePrim(a); |
| 89 | } else { |
| 90 | return RT.longCast(f0.invoke(a)); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | public static long invokeDL(IFn f0, double a) { |
| 95 | if(f0 instanceof IFn.DL) { |
nothing calls this directly
no test coverage detected