type int32SliceValue …
func newInt32SliceValue(val []int32, p *[]int32) *int32SliceValue { … }
func (s *int32SliceValue) Set(val string) error { … }
func (s *int32SliceValue) Type() string { … }
func (s *int32SliceValue) String() string { … }
func (s *int32SliceValue) fromString(val string) (int32, error) { … }
func (s *int32SliceValue) toString(val int32) string { … }
func (s *int32SliceValue) Append(val string) error { … }
func (s *int32SliceValue) Replace(val []string) error { … }
func (s *int32SliceValue) GetSlice() []string { … }
func int32SliceConv(val string) (interface{ … }
func (f *FlagSet) GetInt32Slice(name string) ([]int32, error) { … }
func (f *FlagSet) Int32SliceVar(p *[]int32, name string, value []int32, usage string) { … }
func (f *FlagSet) Int32SliceVarP(p *[]int32, name, shorthand string, value []int32, usage string) { … }
func Int32SliceVar(p *[]int32, name string, value []int32, usage string) { … }
func Int32SliceVarP(p *[]int32, name, shorthand string, value []int32, usage string) { … }
func (f *FlagSet) Int32Slice(name string, value []int32, usage string) *[]int32 { … }
func (f *FlagSet) Int32SliceP(name, shorthand string, value []int32, usage string) *[]int32 { … }
func Int32Slice(name string, value []int32, usage string) *[]int32 { … }
func Int32SliceP(name, shorthand string, value []int32, usage string) *[]int32 { … }