(IFn f0, Object a, long b)
| 624 | } |
| 625 | |
| 626 | public static float invokeOLF(IFn f0, Object a, long b) { |
| 627 | if(f0 instanceof IFn.OLD) { |
| 628 | return RT.floatCast(((IFn.OLD)f0).invokePrim(a, b)); |
| 629 | } else { |
| 630 | return RT.floatCast(f0.invoke(a, b)); |
| 631 | } |
| 632 | } |
| 633 | |
| 634 | public static float invokeDDF(IFn f0, double a, double b) { |
| 635 | if(f0 instanceof IFn.DDD) { |
nothing calls this directly
no test coverage detected