(IFn f0, long a, double b)
| 496 | } |
| 497 | |
| 498 | public static byte invokeLDB(IFn f0, long a, double b) { |
| 499 | if(f0 instanceof IFn.LDL) { |
| 500 | return RT.byteCast(((IFn.LDL)f0).invokePrim(a, b)); |
| 501 | } else { |
| 502 | return RT.byteCast(f0.invoke(a, b)); |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | public static byte invokeDLB(IFn f0, double a, long b) { |
| 507 | if(f0 instanceof IFn.DLL) { |
nothing calls this directly
no test coverage detected