(IFn f0, double a)
| 212 | } |
| 213 | |
| 214 | public static float invokeDF(IFn f0, double a) { |
| 215 | if(f0 instanceof IFn.DD) { |
| 216 | return RT.floatCast(((IFn.DD)f0).invokePrim(a)); |
| 217 | } else { |
| 218 | return RT.floatCast(f0.invoke(a)); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | public static float invokeOF(IFn f0, Object a) { |
| 223 | if(f0 instanceof IFn.OD) { |
nothing calls this directly
no test coverage detected