(IFn f0, Object a, Object b)
| 584 | } |
| 585 | |
| 586 | public static double invokeOOD(IFn f0, Object a, Object b) { |
| 587 | if(f0 instanceof IFn.OOD) { |
| 588 | return ((IFn.OOD)f0).invokePrim(a, b); |
| 589 | } else { |
| 590 | return RT.doubleCast(f0.invoke(a, b)); |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | public static double invokeODD(IFn f0, Object a, double b) { |
| 595 | if(f0 instanceof IFn.ODD) { |
nothing calls this directly
no test coverage detected