-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go/doc,x/pkgsite: rethink order for factory functions #39813
Comments
/cc @dmitshur |
Thanks for reporting. This behavior is a part of the The This is working as intended given the current implementation, see the relevant code in Note that this is a heuristic, so it is expected it may not produce absolutely ideal results in all cases. The heuristic was chosen with a goal of working as well as possible as often as possible. Based on your description, it sounds this is a case where it's not optimal. We could consider changing the heuristic to require associated type of factory functions to be the first result type, rather than the first visible result type. In order to gain confidence that it would be a net positive to make such a change, we could test it out on a large corpus of Go packages and evaluate whether it results in more changes that are more helpful than unhelpful. /cc @griesemer @julieqiu |
This is a design issue which breaks user expectations and has been reported for several times: #28006 and #38666 Personally, I would like to list such functions both in the function list and the method list of a type. (BTW, I have implemented this in an experimental project.) |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
The factory-function heuristics work great the vast majority of the time. It may be surprising initially, but once you understand the organization it's very valuable. Perhaps we need to work on the "surprising" aspect, but breaking them out from under their respective types is a grass-is-greener proposition, since we trade one use case for another and it's not clear it's an improvement.
I understand the sentiment, but I believe this has a couple of harmful effects:
My suggestion is, if your package has constructor methods that you expect to require regular usage, and you want to spotlight them, put some examples in the Overview section at the top. In #28006 you mention net/http but I have never wondered how to use that package because the first thing you see in the docs are examples of
This sounds like a change that could handle @pjebs specific issue without negative impacts. |
I've only just worked out why I keep failing to find things in the navigation on pkg.go.dev, and it's this problem. I'd been assuming the navigation is broken and using Ctrl-F. I would like to request that at least one of the navigation sections be useful for finding any function in the package, regardless of what type(s) it returns. This could be done by making Functions list all functions, or by arranging the index in alphabetical order by name. Both were things I expected to be the case already. In my case, I was looking up |
I also have a problem with the order in my gitlab.com/tozd/go/errors package. In there I have From my understanding, the following suggestion would help, no?
|
Golds avoids this problem (caused by unreasonable design) by creating two lists ( |
For my package: https://godoc.org/github.com/rocketlaunchr/dataframe-go/forecast
I have a function:
func Forecast(ctx context.Context, sdf interface{}, r *dataframe.Range, alg ForecastingAlgorithm, cfg interface{}, n uint, evalFunc EvaluationFunc) (interface{}, []Confidence, float64, error)
which returns aninterface{}
as the first return value.Unfortunately my function is categorized under
type Confidence
when it should not be.I assume this issue would also be present in
pkg.go.dev
, but my package has been banned from there (despite the person in charge saying it will be allowed many many months ago), so I can't check if this issue persists.The text was updated successfully, but these errors were encountered: