2022-10-31 11:06:43 +01:00
|
|
|
# go doc
|
|
|
|
|
|
|
|
> Bir paket veya sembolün dokümentasyonunu göster.
|
2025-06-30 03:44:42 -07:00
|
|
|
> Daha fazla bilgi için: <https://pkg.go.dev/cmd/go#hdr-Show_documentation_for_package_or_symbol>.
|
2022-10-31 11:06:43 +01:00
|
|
|
|
|
|
|
- Mevcut paket için dokümentasyonu göster:
|
|
|
|
|
|
|
|
`go doc`
|
|
|
|
|
|
|
|
- Paket dokümentasyonunu ve dışa aktarılmış sembolleri göster:
|
|
|
|
|
|
|
|
`go doc {{encoding/json}}`
|
|
|
|
|
|
|
|
- Sembollerin de dokümentasyonunu göster:
|
|
|
|
|
|
|
|
`go doc -all {{encoding/json}}`
|
|
|
|
|
|
|
|
- Kaynakları da göster:
|
|
|
|
|
|
|
|
`go doc -all -src {{encoding/json}}`
|
|
|
|
|
|
|
|
- Belirtilen sembolü göster:
|
|
|
|
|
|
|
|
`go doc -all -src {{encoding/json.Number}}`
|