(IFn f0, double a)
| 188 | } |
| 189 | |
| 190 | public static double invokeDD(IFn f0, double a) { |
| 191 | if(f0 instanceof IFn.DD) { |
| 192 | return ((IFn.DD)f0).invokePrim(a); |
| 193 | } else { |
| 194 | return RT.doubleCast(f0.invoke(a)); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | public static double invokeOD(IFn f0, Object a) { |
| 199 | if(f0 instanceof IFn.OD) { |
nothing calls this directly
no test coverage detected