type float64SliceValue …
func newFloat64SliceValue(val []float64, p *[]float64) *float64SliceValue { … }
func (s *float64SliceValue) Set(val string) error { … }
func (s *float64SliceValue) Type() string { … }
func (s *float64SliceValue) String() string { … }
func (s *float64SliceValue) fromString(val string) (float64, error) { … }
func (s *float64SliceValue) toString(val float64) string { … }
func (s *float64SliceValue) Append(val string) error { … }
func (s *float64SliceValue) Replace(val []string) error { … }
func (s *float64SliceValue) GetSlice() []string { … }
func float64SliceConv(val string) (interface{ … }
func (f *FlagSet) GetFloat64Slice(name string) ([]float64, error) { … }
func (f *FlagSet) Float64SliceVar(p *[]float64, name string, value []float64, usage string) { … }
func (f *FlagSet) Float64SliceVarP(p *[]float64, name, shorthand string, value []float64, usage string) { … }
func Float64SliceVar(p *[]float64, name string, value []float64, usage string) { … }
func Float64SliceVarP(p *[]float64, name, shorthand string, value []float64, usage string) { … }
func (f *FlagSet) Float64Slice(name string, value []float64, usage string) *[]float64 { … }
func (f *FlagSet) Float64SliceP(name, shorthand string, value []float64, usage string) *[]float64 { … }
func Float64Slice(name string, value []float64, usage string) *[]float64 { … }
func Float64SliceP(name, shorthand string, value []float64, usage string) *[]float64 { … }