Add returns the Time t + d.
(d time.Duration)
| 83 | |
| 84 | // Add returns the Time t + d. |
| 85 | func (t Time) Add(d time.Duration) Time { |
| 86 | return t + Time(d/minimumTick) |
| 87 | } |
| 88 | |
| 89 | // Sub returns the Duration t - o. |
| 90 | func (t Time) Sub(o Time) time.Duration { |