(IFn f0, long a, Object b)
| 616 | } |
| 617 | |
| 618 | public static float invokeLOF(IFn f0, long a, Object b) { |
| 619 | if(f0 instanceof IFn.LOD) { |
| 620 | return RT.floatCast(((IFn.LOD)f0).invokePrim(a, b)); |
| 621 | } else { |
| 622 | return RT.floatCast(f0.invoke(a, b)); |
| 623 | } |
| 624 | } |
| 625 | |
| 626 | public static float invokeOLF(IFn f0, Object a, long b) { |
| 627 | if(f0 instanceof IFn.OLD) { |
nothing calls this directly
no test coverage detected