Data una funzione, è possibile ricavarne il nome? Dire:
func foo() {
}
func GetFunctionName(i interface{}) string {
// ...
}
func main() {
// Will print "name: foo"
fmt.Println("name:", GetFunctionName(foo))
}
Mi è stato detto che runtime.FuncForPC sarebbe stato d'aiuto, ma non sono riuscito a capire come usarlo.