If I view a package's documentation via the web at https://pkg.go.dev, the page includes Example test functions. The output of go doc -u -all for a package does not. Is it possible to have such information included?
Viewing Example functions with `go doc` command?
1k Views Asked by Colin Fraizer At
3
It is not possible to display examples using the
go doccommand.The command implementation ignores examples.