Читать книгу Practical Go - Amit Saha - Страница 23
Reference Documentation
ОглавлениеThe code listings in the book use various standard library packages and a few third-party packages. The descriptions of the various functions and types are limited to the contextual usage. Knowing where to look when you want to find out more about a package or function is important to get the most out of the book. The key reference documentation for all standard library packages is https://pkg.go.dev/std
. When I import a package as net/http
, the documentation for that package will be found at the path https://pkg.go.dev/net/http
. When I refer to a function such as io.ReadAll()
, the function reference is the package io
's documentation at https://pkg.go.dev/io
.
For third-party packages, the documentation is available by going to the address https://pkg.go.dev/<import path>
. For example, the Go gRPC package is imported as google.golang.grpc
. Its reference documentation is available at https://pkg.go.dev/google.golang.org/grpc
.