Codebase list golang-github-vbauerster-mpb / 9de6211
minor: one line func Vladimir Bauer 3 years ago
1 changed file(s) with 1 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
384384 func (b *Bar) IsRunning() bool {
385385 result := make(chan bool)
386386 select {
387 case b.operateState <- func(s *bState) {
388 result <- !s.completed && !s.aborted
389 }:
387 case b.operateState <- func(s *bState) { result <- !s.completed && !s.aborted }:
390388 return <-result
391389 case <-b.done:
392390 return false