GetIntSlice returns the value associated with the key as a slice of int values.
(key string)
| 879 | |
| 880 | // GetIntSlice returns the value associated with the key as a slice of int values. |
| 881 | func GetIntSlice(key string) []int { return v.GetIntSlice(key) } |
| 882 | |
| 883 | func (v *Viper) GetIntSlice(key string) []int { |
| 884 | return cast.ToIntSlice(v.Get(key)) |
nothing calls this directly
no test coverage detected