func fmt.Sscanf
10 uses
fmt (current package)
scan.go#L113: func Sscanf(str string, format string, a ...interface{}) (n int, err error) {
github.com/go-git/gcfg/types
scan.go#L14: n, err := fmt.Sscanf(val, "%"+string(verb)+"%s", ptr, &b)
github.com/go-git/go-git/v5/plumbing
reference.go#L117: _, err := fmt.Sscanf(s, format, &res)
github.com/go-git/go-git/v5/plumbing/protocol/packp
updreq_decode.go#L214: if _, err := fmt.Sscanf(string(b), "%s %s %s", &os, &ns, &n); err != nil {
github.com/lib/pq
conn.go#L1620: _, err = fmt.Sscanf(r.string(), "%d.%d.%d", &major1, &major2, &minor)
github.com/prometheus/procfs
proc_io.go#L55: _, err = fmt.Sscanf(string(data), ioFormat, &pio.RChar, &pio.WChar, &pio.SyscR,
proc_psi.go#L79: _, err := fmt.Sscanf(l, fmt.Sprintf("some %s", lineFormat), &psi.Avg10, &psi.Avg60, &psi.Avg300, &psi.Total)
proc_psi.go#L86: _, err := fmt.Sscanf(l, fmt.Sprintf("full %s", lineFormat), &psi.Avg10, &psi.Avg60, &psi.Avg300, &psi.Total)
stat.go#L89: count, err := fmt.Sscanf(line, "%s %f %f %f %f %f %f %f %f %f %f",
stat.go#L131: _, err := fmt.Sscanf(line, "%s %d %d %d %d %d %d %d %d %d %d %d",
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |