(v map[string]time.Time)
| 827 | } |
| 828 | |
| 829 | func NewMapTimeValue(v map[string]time.Time) MapTimeValue { |
| 830 | return MapTimeValue{v: v} |
| 831 | } |
| 832 | |
| 833 | func (m MapTimeValue) Nil() bool { return len(m.v) == 0 } |
| 834 | func (m MapTimeValue) Err() bool { return false } |
no outgoing calls