(IFn f0, long a)
| 180 | } |
| 181 | |
| 182 | public static double invokeLD(IFn f0, long a) { |
| 183 | if(f0 instanceof IFn.LD) { |
| 184 | return ((IFn.LD)f0).invokePrim(a); |
| 185 | } else { |
| 186 | return RT.doubleCast(f0.invoke(a)); |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | public static double invokeDD(IFn f0, double a) { |
| 191 | if(f0 instanceof IFn.DD) { |
nothing calls this directly
no test coverage detected