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
| 757 | |
| 758 | /** |
| 759 | * 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 |
| 760 | */ |
| 761 | public interface BiFunctionOfBoxAnd<T, R> extends BiFunction<Box, T, R> { |
| 762 | } |
| 763 |