(IFn f0, long a)
| 204 | } |
| 205 | |
| 206 | public static float invokeLF(IFn f0, long a) { |
| 207 | if(f0 instanceof IFn.LD) { |
| 208 | return RT.floatCast(((IFn.LD)f0).invokePrim(a)); |
| 209 | } else { |
| 210 | return RT.floatCast(f0.invoke(a)); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | public static float invokeDF(IFn f0, double a) { |
| 215 | if(f0 instanceof IFn.DD) { |
nothing calls this directly
no test coverage detected