Dato lo scenario in cui hai una funzione che accetta t interface{}
. Se è determinato che t
è una fetta, come faccio a range
superare quella fetta?
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)
}
}
}
Vai ad esempio di Playground: http://play.golang.org/p/DNldAlNShB