This commit is contained in:
Ricardo Gerardi 2024-11-22 14:13:18 +00:00 committed by GitHub
commit 6bf6c09440
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -654,10 +654,12 @@ func TestToIntSliceE(t *testing.T) {
{[]interface{}{1.2, 3.2}, []int{1, 3}, false},
{[]string{"2", "3"}, []int{2, 3}, false},
{[2]string{"2", "3"}, []int{2, 3}, false},
{"2 3", []int{2, 3}, false},
// errors
{nil, nil, true},
{testing.T{}, nil, true},
{[]string{"foo", "bar"}, nil, true},
{"2 a", []int{}, true},
}
for i, test := range tests {

View File

@ -1335,6 +1335,8 @@ func ToIntSliceE(i interface{}) ([]int, error) {
switch v := i.(type) {
case []int:
return v, nil
case string:
return ToIntSliceE(strings.Fields(v))
}
kind := reflect.TypeOf(i).Kind()