Kabul eden bir işleve sahip olduğunuz senaryo göz önüne alındığında t interface{}
. t
Bir dilim olduğu belirlenirse, o dilimi nasıl range
aşarım?
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)
}
}
}
Go Playground Örneği: http://play.golang.org/p/DNldAlNShB