(IFn f0)
| 64 | } |
| 65 | |
| 66 | public static double invokeD(IFn f0) { |
| 67 | if(f0 instanceof IFn.D) { |
| 68 | return ((IFn.D)f0).invokePrim(); |
| 69 | } else { |
| 70 | return RT.doubleCast(f0.invoke()); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | public static float invokeF(IFn f0) { |
| 75 | if(f0 instanceof IFn.D) { |
nothing calls this directly
no test coverage detected