(IFn f0, long a, double b)
| 640 | } |
| 641 | |
| 642 | public static float invokeLDF(IFn f0, long a, double b) { |
| 643 | if(f0 instanceof IFn.LDD) { |
| 644 | return RT.floatCast(((IFn.LDD)f0).invokePrim(a, b)); |
| 645 | } else { |
| 646 | return RT.floatCast(f0.invoke(a, b)); |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | public static float invokeDLF(IFn f0, double a, long b) { |
| 651 | if(f0 instanceof IFn.DLD) { |
nothing calls this directly
no test coverage detected