(Cell<R, C, V1> cell)
| 400 | Function<Cell<R, C, V1>, Cell<R, C, V2>> cellFunction() { |
| 401 | return new Function<Cell<R, C, V1>, Cell<R, C, V2>>() { |
| 402 | @Override |
| 403 | public Cell<R, C, V2> apply(Cell<R, C, V1> cell) { |
| 404 | return immutableCell(cell.getRowKey(), cell.getColumnKey(), function.apply(cell.getValue())); |
| 405 | } |
| 406 | }; |
| 407 | } |
| 408 |
nothing calls this directly
no test coverage detected