(IFn f0, double a, double b)
| 632 | } |
| 633 | |
| 634 | public static float invokeDDF(IFn f0, double a, double b) { |
| 635 | if(f0 instanceof IFn.DDD) { |
| 636 | return RT.floatCast(((IFn.DDD)f0).invokePrim(a, b)); |
| 637 | } else { |
| 638 | return RT.floatCast(f0.invoke(a, b)); |
| 639 | } |
| 640 | } |
| 641 | |
| 642 | public static float invokeLDF(IFn f0, long a, double b) { |
| 643 | if(f0 instanceof IFn.LDD) { |
nothing calls this directly
no test coverage detected