()
| 398 | } |
| 399 | |
| 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 | |
| 409 | @Override |
| 410 | Iterator<Cell<R, C, V2>> cellIterator() { |