Marker interface, marks functions as taking a box as a parameter. Allows us to finesse the dispatch of functions stored in properties
| 743 | |
| 744 | /** |
| 745 | * Marker interface, marks functions as taking a box as a parameter. Allows us to finesse the dispatch of functions stored in properties |
| 746 | */ |
| 747 | public interface FunctionOfBox<T> extends Function<Box, T> { |
| 748 | } |
| 749 |