(C columnKey)
| 393 | } |
| 394 | |
| 395 | @Override |
| 396 | public Map<R, V2> column(C columnKey) { |
| 397 | return Maps.transformValues(fromTable.column(columnKey), function); |
| 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>>() { |
nothing calls this directly
no test coverage detected