Increment current value by one.
()
| 185 | |
| 186 | // Increment current value by one. |
| 187 | func (p *ProgressbarPrinter) Increment() *ProgressbarPrinter { |
| 188 | p.Add(1) |
| 189 | return p |
| 190 | } |
| 191 | |
| 192 | // UpdateTitle updates the title and re-renders the progressbar |
| 193 | func (p *ProgressbarPrinter) UpdateTitle(title string) *ProgressbarPrinter { |