Dado o cenário em que você tem uma função que aceita t interface{}
. Se for determinado que t
é uma fatia, como faço para range
sobre essa fatia?
func main() {
data := []string{"one","two","three"}
test(data)
moredata := []int{1,2,3}
test(data)
}
func test(t interface{}) {
switch reflect.TypeOf(t).Kind() {
case reflect.Slice:
// how do I iterate here?
for _,value := range t {
fmt.Println(value)
}
}
}
Exemplo de Go Playground: http://play.golang.org/p/DNldAlNShB