(IFn f0)
| 72 | } |
| 73 | |
| 74 | public static float invokeF(IFn f0) { |
| 75 | if(f0 instanceof IFn.D) { |
| 76 | return RT.floatCast(((IFn.D)f0).invokePrim()); |
| 77 | } else { |
| 78 | return RT.floatCast(f0.invoke()); |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | public static Object invokeO(IFn f0) { |
| 83 | return f0.invoke(); |
nothing calls this directly
no test coverage detected