(IFn f0, long a, long b)
| 608 | } |
| 609 | |
| 610 | public static float invokeLLF(IFn f0, long a, long b) { |
| 611 | if(f0 instanceof IFn.LLD) { |
| 612 | return RT.floatCast(((IFn.LLD)f0).invokePrim(a, b)); |
| 613 | } else { |
| 614 | return RT.floatCast(f0.invoke(a, b)); |
| 615 | } |
| 616 | } |
| 617 | |
| 618 | public static float invokeLOF(IFn f0, long a, Object b) { |
| 619 | if(f0 instanceof IFn.LOD) { |
nothing calls this directly
no test coverage detected