Prints the error message as a string (if there is an error)
(opts ...*Opts)
| 110 | |
| 111 | // Prints the error message as a string (if there is an error) |
| 112 | func (t *Table) MustPrint(opts ...*Opts) { |
| 113 | fmt.Print(t.MustFormat(opts...)) |
| 114 | } |
| 115 | |
| 116 | // Return the error message as a string |
| 117 | func (t *Table) MustFormat(opts ...*Opts) string { |
no test coverage detected