(IFn f0)
| 56 | } |
| 57 | |
| 58 | public static byte invokeB(IFn f0) { |
| 59 | if(f0 instanceof IFn.L) { |
| 60 | return RT.byteCast(((IFn.L)f0).invokePrim()); |
| 61 | } else { |
| 62 | return RT.byteCast(f0.invoke()); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | public static double invokeD(IFn f0) { |
| 67 | if(f0 instanceof IFn.D) { |
nothing calls this directly
no test coverage detected