(u Time)
| 83 | func (t Time) After(u Time) bool { return t.Time.After(u.Time) } |
| 84 | func (t Time) Before(u Time) bool { return t.Time.Before(u.Time) } |
| 85 | func (t Time) Equal(u Time) bool { return t.Time.Equal(u.Time) } |
| 86 | func (t Time) In(loc *time.Location) Time { return Time{Time: t.Time.In(loc)} } |
| 87 | func (t Time) Local() Time { return Time{Time: t.Time.Local()} } |
| 88 | func (t Time) Round(d time.Duration) Time { return Time{Time: t.Time.Round(d)} } |
no outgoing calls