reflect.Type.PkgPath (method)

6 uses

	reflect (current package)
		type.go#L86: 	PkgPath() string
		value.go#L2509: 		if dst.Kind() == Slice && dst.Elem().PkgPath() == "" {
		value.go#L2519: 		if dst.Kind() == String && src.Elem().PkgPath() == "" {

	encoding/gob
		type.go#L867: 		if rt.PkgPath() == "" {
		type.go#L870: 			name = star + rt.PkgPath() + "." + rt.Name()

	src.elv.sh/pkg/rpc
		server.go#L207: 	return token.IsExported(t.Name()) || t.PkgPath() == ""