Marker interface, marks functions as taking a box as a parameter. Allows us to finesse the dispatch of functions stored in properties. Unlike FunctionOfBox this function is called before being returned
| 750 | /** |
| 751 | * Marker interface, marks functions as taking a box as a parameter. Allows us to finesse the dispatch of functions stored in properties. Unlike FunctionOfBox this function is called before |
| 752 | * being returned |
| 753 | */ |
| 754 | public interface FunctionOfBoxValued<T> extends Function<Box, T> { |
| 755 | } |
| 756 |