(IFn f0, double a)
| 116 | } |
| 117 | |
| 118 | public static int invokeDI(IFn f0, double a) { |
| 119 | if(f0 instanceof IFn.DL) { |
| 120 | return RT.intCast(((IFn.DL)f0).invokePrim(a)); |
| 121 | } else { |
| 122 | return RT.intCast(f0.invoke(a)); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | public static int invokeOI(IFn f0, Object a) { |
| 127 | if(f0 instanceof IFn.OL) { |
nothing calls this directly
no test coverage detected