strings.Builder.Len (method)
8 uses
strings (current package)
builder.go#L53: func (b *Builder) Len() int { return len(b.buf) }
strings.go#L587: for b.Len() < n {
strings.go#L588: chunk := n - b.Len()
strings.go#L589: if chunk > b.Len() {
strings.go#L590: chunk = b.Len()
flag
flag.go#L619: if b.Len() <= 4 { // space, space, '-', 'x'.
net/url
url.go#L837: if buf.Len() == 0 {
url.go#L979: if buf.Len() > 0 {
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |