2025-03-14 21:59:59 -06:00
|
|
|
# go doc
|
|
|
|
|
|
|
|
|
|
> View documentation for a package or symbol.
|
2025-07-24 22:27:13 -06:00
|
|
|
> More information: <https://pkg.go.dev/cmd/go#hdr-Show_documentation_for_package_or_symbol>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- View documentation for the current package:
|
|
|
|
|
|
|
|
|
|
`go doc`
|
|
|
|
|
|
|
|
|
|
- Show package documentation and exported symbols:
|
|
|
|
|
|
|
|
|
|
`go doc {{encoding/json}}`
|
|
|
|
|
|
|
|
|
|
- Show also documentation of symbols:
|
|
|
|
|
|
|
|
|
|
`go doc -all {{encoding/json}}`
|
|
|
|
|
|
|
|
|
|
- Show also sources:
|
|
|
|
|
|
|
|
|
|
`go doc -all -src {{encoding/json}}`
|
|
|
|
|
|
|
|
|
|
- Show a specific symbol:
|
|
|
|
|
|
|
|
|
|
`go doc -all -src {{encoding/json.Number}}`
|