const regexp.startSize
9 uses
regexp (current package)
regexp.go#L1070: const startSize = 10 // The size at which to start a slice in the 'All' routines.
regexp.go#L1083: result = make([][]byte, 0, startSize)
regexp.go#L1101: result = make([][]int, 0, startSize)
regexp.go#L1119: result = make([]string, 0, startSize)
regexp.go#L1137: result = make([][]int, 0, startSize)
regexp.go#L1155: result = make([][][]byte, 0, startSize)
regexp.go#L1179: result = make([][]int, 0, startSize)
regexp.go#L1197: result = make([][]string, 0, startSize)
regexp.go#L1222: result = make([][]int, 0, startSize)
 |
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. |