func slices.Grow
9 uses
slices (current package)
slices.go#L420: func Grow[S ~[]E, E any](s S, n int) S {
slices.go#L500: newslice := Grow[S](nil, size)
encoding/base64
base64.go#L200: dst = slices.Grow(dst, n)
base64.go#L421: dst = slices.Grow(dst, n)
encoding/binary
binary.go#L1034: buf = slices.Grow(buf, n)[:l+n]
encoding/hex
hex.go#L59: dst = slices.Grow(dst, n)
hex.go#L120: dst = slices.Grow(dst, n)
math/big
nat.go#L321: s.w = slices.Grow(s.w, nr)
os
file.go#L922: data = slices.Grow(data, minBuf)
 |
The pages are generated with Golds v0.8.4. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |