Marker interface, marks functions as taking a box and something else as a parameter. Allows us to finesse the dispatch of functions stored in properties
| 763 | |
| 764 | /** |
| 765 | * Marker interface, marks functions as taking a box and something else as a parameter. Allows us to finesse the dispatch of functions stored in properties |
| 766 | */ |
| 767 | public interface TriFunctionOfBoxAnd<T1, T2, R> { |
| 768 | R apply(Box b, T1 t, T2 u); |
| 769 | } |
| 770 |
no outgoing calls
no test coverage detected