Или в чём разница между git pull и git fetch? Если совсем коротко, то:
git pull = git fetch + git merge
This is not an exhaustive list of all interfaces in Go's standard library.
I only list those I think are important.
Interfaces defined in frequently used packages (like io, fmt) are included.
Interfaces that have significant importance are also included.
All of the following information is based on go version go1.8.3 darwin/amd64.
| package main | |
| import ( | |
| "encoding/json" | |
| "flag" | |
| "io" | |
| "net/http" | |
| "github.com/golang/glog" | |
| "golang.org/x/net/websocket" |