WithRowSeparator returns a new TablePrinter with a specific RowSeparator.
(separator string)
| 88 | |
| 89 | // WithRowSeparator returns a new TablePrinter with a specific RowSeparator. |
| 90 | func (p TablePrinter) WithRowSeparator(separator string) *TablePrinter { |
| 91 | p.RowSeparator = separator |
| 92 | return &p |
| 93 | } |
| 94 | |
| 95 | // WithRowSeparatorStyle returns a new TablePrinter with a specific RowSeparatorStyle. |
| 96 | func (p TablePrinter) WithRowSeparatorStyle(style *Style) *TablePrinter { |
no outgoing calls