(column int, s string)
| 303 | // transform the strings of an entire row on a column-by-column basis. |
| 304 | type rowTransformer interface { |
| 305 | Transform(column int, s string) string |
| 306 | } |
| 307 | |
| 308 | // transformHeader is an implementation of rowTransformer which |
no outgoing calls
no test coverage detected