()
| 27 | } |
| 28 | |
| 29 | func (d *DelayExp2) NextValue() int { |
| 30 | d.Value = math2.MinMaxInt(d.Value*2, d.Min, d.Max) |
| 31 | return d.Value |
| 32 | } |
| 33 | |
| 34 | func (d *DelayExp2) After() <-chan time.Time { |
| 35 | total := d.NextValue() |
no outgoing calls
no test coverage detected