(IFn f0, double a)
| 164 | } |
| 165 | |
| 166 | public static byte invokeDB(IFn f0, double a) { |
| 167 | if(f0 instanceof IFn.DL) { |
| 168 | return RT.byteCast(((IFn.DL)f0).invokePrim(a)); |
| 169 | } else { |
| 170 | return RT.byteCast(f0.invoke(a)); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | public static byte invokeOB(IFn f0, Object a) { |
| 175 | if(f0 instanceof IFn.OL) { |
nothing calls this directly
no test coverage detected