SetTransformer specifies a string transformer to apply to the content of the given column in the specified table.
(columnIndex int, tr Transformer)
| 59 | // SetTransformer specifies a string transformer to apply to the |
| 60 | // content of the given column in the specified table. |
| 61 | func (t *Table) SetTransformer(columnIndex int, tr Transformer) { |
| 62 | t.transformer[columnIndex] = tr |
| 63 | } |
| 64 | |
| 65 | // Add extends the table by another row. |
| 66 | func (t *Table) Add(row ...string) { |