(IFn f0, Object a)
| 196 | } |
| 197 | |
| 198 | public static double invokeOD(IFn f0, Object a) { |
| 199 | if(f0 instanceof IFn.OD) { |
| 200 | return ((IFn.OD)f0).invokePrim(a); |
| 201 | } else { |
| 202 | return RT.doubleCast(f0.invoke(a)); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | public static float invokeLF(IFn f0, long a) { |
| 207 | if(f0 instanceof IFn.LD) { |
nothing calls this directly
no test coverage detected