(IFn f0, long a)
| 108 | } |
| 109 | |
| 110 | public static int invokeLI(IFn f0, long a) { |
| 111 | if(f0 instanceof IFn.LL) { |
| 112 | return RT.intCast(((IFn.LL)f0).invokePrim(a)); |
| 113 | } else { |
| 114 | return RT.intCast(f0.invoke(a)); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | public static int invokeDI(IFn f0, double a) { |
| 119 | if(f0 instanceof IFn.DL) { |
nothing calls this directly
no test coverage detected