func ToFloatSlice(i interface{}) []float64
ToFloatSlice casts an interface to a []float64 type.
func ToFloatSliceE(i interface{}) ([]float64, error)
ToFloatSliceE casts an interface to a []float64 type.
func ToStringSlice(i interface{}) []string
ToStringSlice casts an interface to a []string type and respects comma-separated values.
func ToStringSliceE(i interface{}) ([]string, error)
ToStringSliceE casts an interface to a []string type and respects comma-separated values.