(IFn f0, Object a)
| 100 | } |
| 101 | |
| 102 | public static long invokeOL(IFn f0, Object a) { |
| 103 | if(f0 instanceof IFn.OL) { |
| 104 | return ((IFn.OL)f0).invokePrim(a); |
| 105 | } else { |
| 106 | return RT.longCast(f0.invoke(a)); |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | public static int invokeLI(IFn f0, long a) { |
| 111 | if(f0 instanceof IFn.LL) { |
nothing calls this directly
no test coverage detected