(IFn f0, double a)
| 140 | } |
| 141 | |
| 142 | public static short invokeDS(IFn f0, double a) { |
| 143 | if(f0 instanceof IFn.DL) { |
| 144 | return RT.shortCast(((IFn.DL)f0).invokePrim(a)); |
| 145 | } else { |
| 146 | return RT.shortCast(f0.invoke(a)); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | public static short invokeOS(IFn f0, Object a) { |
| 151 | if(f0 instanceof IFn.OL) { |
nothing calls this directly
no test coverage detected