(v int)
| 38 | } |
| 39 | |
| 40 | func PrintMaxRows(v int) PrintOption { |
| 41 | return func(opts *PrintOptions) { |
| 42 | opts.MaxRows = v |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | // Print the tables with options |
| 47 | func (t *DataTable) Print(writer io.Writer, opt ...PrintOption) { |
no outgoing calls