(IFn f0, Object a, Object b)
| 656 | } |
| 657 | |
| 658 | public static float invokeOOF(IFn f0, Object a, Object b) { |
| 659 | if(f0 instanceof IFn.OOD) { |
| 660 | return RT.floatCast(((IFn.OOD)f0).invokePrim(a, b)); |
| 661 | } else { |
| 662 | return RT.floatCast(f0.invoke(a, b)); |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | public static float invokeODF(IFn f0, Object a, double b) { |
| 667 | if(f0 instanceof IFn.ODD) { |
nothing calls this directly
no test coverage detected