func strings.Repeat

11 uses

	strings (current package)
		strings.go#L519: func Repeat(s string, count int) string {

	src.elv.sh/pkg/cli/term
		buffer.go#L154: 	sb.WriteString("┌" + strings.Repeat("─", b.Width) + "┐\n")
		buffer.go#L180: 			sb.WriteString("$" + strings.Repeat(" ", b.Width-usedWidth-1))
		buffer.go#L186: 	sb.WriteString("└" + strings.Repeat("─", b.Width) + "┘\n")
		buffer_builder.go#L120: 	return bb.Write(strings.Repeat(" ", w), ts...)

	src.elv.sh/pkg/cli/tk
		listbox.go#L220: 	leftSpacing := ui.T(strings.Repeat(" ", c.padding))
		listbox.go#L221: 	rightSpacing := ui.T(strings.Repeat(" ", width-c.padding))

	src.elv.sh/pkg/diag
		context.go#L99: 	descIndent := strings.Repeat(" ", wcwidth.Of(desc))

	src.elv.sh/pkg/eval/vals
		repr_helpers.go#L26: 		b.buf.WriteString("\n" + strings.Repeat(" ", b.indent+1))
		repr_helpers.go#L40: 		b.buf.WriteString("\n" + strings.Repeat(" ", b.indent))

	src.elv.sh/pkg/wcwidth
		wcwidth.go#L162: 	return s + strings.Repeat(" ", width-w)