type durationSliceValue …
func newDurationSliceValue(val []time.Duration, p *[]time.Duration) *durationSliceValue { … }
func (s *durationSliceValue) Set(val string) error { … }
func (s *durationSliceValue) Type() string { … }
func (s *durationSliceValue) String() string { … }
func (s *durationSliceValue) fromString(val string) (time.Duration, error) { … }
func (s *durationSliceValue) toString(val time.Duration) string { … }
func (s *durationSliceValue) Append(val string) error { … }
func (s *durationSliceValue) Replace(val []string) error { … }
func (s *durationSliceValue) GetSlice() []string { … }
func durationSliceConv(val string) (interface{ … }
func (f *FlagSet) GetDurationSlice(name string) ([]time.Duration, error) { … }
func (f *FlagSet) DurationSliceVar(p *[]time.Duration, name string, value []time.Duration, usage string) { … }
func (f *FlagSet) DurationSliceVarP(p *[]time.Duration, name, shorthand string, value []time.Duration, usage string) { … }
func DurationSliceVar(p *[]time.Duration, name string, value []time.Duration, usage string) { … }
func DurationSliceVarP(p *[]time.Duration, name, shorthand string, value []time.Duration, usage string) { … }
func (f *FlagSet) DurationSlice(name string, value []time.Duration, usage string) *[]time.Duration { … }
func (f *FlagSet) DurationSliceP(name, shorthand string, value []time.Duration, usage string) *[]time.Duration { … }
func DurationSlice(name string, value []time.Duration, usage string) *[]time.Duration { … }
func DurationSliceP(name, shorthand string, value []time.Duration, usage string) *[]time.Duration { … }