gitlab.com/evatix-go/core@v1.3.55/codestack/MethodNameOf.go (about) 1 package codestack 2 3 func MethodNameOf(fullName string) (packageName string) { 4 _, _, methodName := MethodNamePackageName( 5 fullName) 6 7 return methodName 8 }