-- durationSlice Value
| 8 | |
| 9 | // -- durationSlice Value |
| 10 | type durationSliceValue struct { |
| 11 | value *[]time.Duration |
| 12 | changed bool |
| 13 | } |
| 14 | |
| 15 | func newDurationSliceValue(val []time.Duration, p *[]time.Duration) *durationSliceValue { |
| 16 | dsv := new(durationSliceValue) |
nothing calls this directly
no outgoing calls
no test coverage detected