type int64SliceValue …
func newInt64SliceValue(val []int64, p *[]int64) *int64SliceValue { … }
func (s *int64SliceValue) Set(val string) error { … }
func (s *int64SliceValue) Type() string { … }
func (s *int64SliceValue) String() string { … }
func (s *int64SliceValue) fromString(val string) (int64, error) { … }
func (s *int64SliceValue) toString(val int64) string { … }
func (s *int64SliceValue) Append(val string) error { … }
func (s *int64SliceValue) Replace(val []string) error { … }
func (s *int64SliceValue) GetSlice() []string { … }
func int64SliceConv(val string) (interface{ … }
func (f *FlagSet) GetInt64Slice(name string) ([]int64, error) { … }
func (f *FlagSet) Int64SliceVar(p *[]int64, name string, value []int64, usage string) { … }
func (f *FlagSet) Int64SliceVarP(p *[]int64, name, shorthand string, value []int64, usage string) { … }
func Int64SliceVar(p *[]int64, name string, value []int64, usage string) { … }
func Int64SliceVarP(p *[]int64, name, shorthand string, value []int64, usage string) { … }
func (f *FlagSet) Int64Slice(name string, value []int64, usage string) *[]int64 { … }
func (f *FlagSet) Int64SliceP(name, shorthand string, value []int64, usage string) *[]int64 { … }
func Int64Slice(name string, value []int64, usage string) *[]int64 { … }
func Int64SliceP(name, shorthand string, value []int64, usage string) *[]int64 { … }