OptionSetPredictTime will also attempt to predict the time remaining.
(predictTime bool)
| 308 | |
| 309 | // OptionSetPredictTime will also attempt to predict the time remaining. |
| 310 | func OptionSetPredictTime(predictTime bool) Option { |
| 311 | return func(p *ProgressBar) { |
| 312 | p.config.predictTime = predictTime |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | // OptionShowCount will also print current count out of total |
| 317 | func OptionShowCount() Option { |
no outgoing calls
searching dependent graphs…