(IFn f0, Object a, long b)
| 480 | } |
| 481 | |
| 482 | public static byte invokeOLB(IFn f0, Object a, long b) { |
| 483 | if(f0 instanceof IFn.OLL) { |
| 484 | return RT.byteCast(((IFn.OLL)f0).invokePrim(a, b)); |
| 485 | } else { |
| 486 | return RT.byteCast(f0.invoke(a, b)); |
| 487 | } |
| 488 | } |
| 489 | |
| 490 | public static byte invokeDDB(IFn f0, double a, double b) { |
| 491 | if(f0 instanceof IFn.DDL) { |
nothing calls this directly
no test coverage detected