()
| 37 | } |
| 38 | |
| 39 | func New() *Table { |
| 40 | return &Table{ |
| 41 | // Show headers when using os.Stderr for grep |
| 42 | headerOut: os.Stderr, |
| 43 | lineOut: os.Stdout, |
| 44 | headers: []string{}, |
| 45 | lines: [][]string{}, |
| 46 | maxWidth: make(map[int]int), |
| 47 | colSize: -1, |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | const indent = 2 |
| 52 |
no outgoing calls