func bytes.Repeat

7 uses

	bytes (current package)
		bytes.go#L587: func Repeat(b []byte, count int) []byte {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L51: 		j.AddBytes(bytes.Repeat([]byte{';'}, startState.GeneratedLine))

	github.com/go-git/go-git/v5/plumbing/format/index
		encoder.go#L138: 	_, err := e.w.Write(bytes.Repeat([]byte{'\x00'}, padLen))

	github.com/google/go-cmp/cmp
		report_slices.go#L311: 	b := bytes.Repeat([]byte{'.'}, len(s))

	github.com/russross/blackfriday/v2
		node.go#L340: 	indent := bytes.Repeat([]byte("\t"), depth)

	github.com/yuin/goldmark/text
		segment.go#L47: 	result = append(result, bytes.Repeat(space, t.Padding)...)
		segment.go#L139: 		return append(v, bytes.Repeat(space, t.Padding)...)