Dada una función, ¿es posible obtener su nombre? Decir:
func foo() {
}
func GetFunctionName(i interface{}) string {
// ...
}
func main() {
// Will print "name: foo"
fmt.Println("name:", GetFunctionName(foo))
}
Me dijeron que runtime.FuncForPC ayudaría, pero no entendí cómo usarlo.