(IFn f0, double a, long b)
| 648 | } |
| 649 | |
| 650 | public static float invokeDLF(IFn f0, double a, long b) { |
| 651 | if(f0 instanceof IFn.DLD) { |
| 652 | return RT.floatCast(((IFn.DLD)f0).invokePrim(a, b)); |
| 653 | } else { |
| 654 | return RT.floatCast(f0.invoke(a, b)); |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | public static float invokeOOF(IFn f0, Object a, Object b) { |
| 659 | if(f0 instanceof IFn.OOD) { |
nothing calls this directly
no test coverage detected