(IFn f0, long a)
| 156 | } |
| 157 | |
| 158 | public static byte invokeLB(IFn f0, long a) { |
| 159 | if(f0 instanceof IFn.LL) { |
| 160 | return RT.byteCast(((IFn.LL)f0).invokePrim(a)); |
| 161 | } else { |
| 162 | return RT.byteCast(f0.invoke(a)); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | public static byte invokeDB(IFn f0, double a) { |
| 167 | if(f0 instanceof IFn.DL) { |
nothing calls this directly
no test coverage detected