func strconv.Itoa

88 uses

	strconv (current package)
		atoi.go#L45: 	return &NumError{fn, str, errors.New("invalid base " + Itoa(base))}
		atoi.go#L49: 	return &NumError{fn, str, errors.New("invalid bit size " + Itoa(bitSize))}
		itoa.go#L34: func Itoa(i int) string {

	crypto
		crypto.go#L64: 		return "unknown hash value " + strconv.Itoa(int(h))
		crypto.go#L134: 	panic("crypto: requested hash function #" + strconv.Itoa(int(h)) + " is unavailable")

	crypto/aes
		cipher.go#L25: 	return "crypto/aes: invalid key size " + strconv.Itoa(int(k))

	crypto/des
		cipher.go#L20: 	return "crypto/des: invalid key size " + strconv.Itoa(int(k))

	crypto/ed25519
		ed25519.go#L128: 		panic("ed25519: bad seed length: " + strconv.Itoa(l))
		ed25519.go#L159: 		panic("ed25519: bad private key length: " + strconv.Itoa(l))
		ed25519.go#L205: 		panic("ed25519: bad public key length: " + strconv.Itoa(l))

	crypto/rc4
		rc4.go#L26: 	return "crypto/rc4: invalid key size " + strconv.Itoa(int(k))

	crypto/tls
		alert.go#L94: 	return "tls: alert(" + strconv.Itoa(int(e)) + ")"

	crypto/x509
		x509.go#L219: 	return strconv.Itoa(int(algo))
		x509.go#L243: 	return strconv.Itoa(int(algo))
		x509.go#L1098: 				return errors.New("x509: cannot parse IP address of length " + strconv.Itoa(len(data)))

	crypto/x509/internal/macos
		security.go#L45: 	return s.call + " error: " + strconv.Itoa(int(s.status))

	encoding/asn1
		asn1.go#L245: 		s += strconv.Itoa(v)

	flag
		flag.go#L157: func (i *intValue) String() string { return strconv.Itoa(int(*i)) }

	go/token
		token.go#L242: 		s = "token(" + strconv.Itoa(int(tok)) + ")"

	io/ioutil
		tempfile.go#L37: 	return strconv.Itoa(int(1e9 + r%1e9))[1:]

	net/http
		h2_bundle.go#L2967: 		err = errors.New("invalid base " + strconv.Itoa(base))
		h2_bundle.go#L3276: 	return strconv.Itoa(code)
		h2_bundle.go#L5989: 			clen = strconv.Itoa(len(p))
		response.go#L252: 			text = "status code " + strconv.Itoa(r.StatusCode)
		response.go#L257: 		text = strings.TrimPrefix(text, strconv.Itoa(r.StatusCode)+" ")
		socks_bundle.go#L78: 		return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
		socks_bundle.go#L119: 		return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
		socks_bundle.go#L142: 		return nil, errors.New("unknown address type " + strconv.Itoa(int(b[3])))
		socks_bundle.go#L186: 		return "socks " + strconv.Itoa(int(cmd))
		socks_bundle.go#L217: 		return "unknown code: " + strconv.Itoa(int(code))
		socks_bundle.go#L253: 	port := strconv.Itoa(a.Port)
		socks_bundle.go#L472: 	return errors.New("unsupported authentication method " + strconv.Itoa(int(auth)))

	os/user
		user.go#L65: 	return "user: unknown userid " + strconv.Itoa(int(e))
		cgo_lookup_unix.go#L172: 		return nil, UnknownGroupIdError(strconv.Itoa(gid))
		cgo_lookup_unix.go#L179: 		Gid:  strconv.Itoa(int(grp.gr_gid)),
		listgroups_unix.go#L49: 		gids = append(gids, strconv.Itoa(int(g)))

	reflect
		type.go#L595: 	return "kind" + strconv.Itoa(int(k))
		type.go#L1049: 	return "ChanDir" + strconv.Itoa(int(d))
		type.go#L2388: 			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no name")
		type.go#L2391: 			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has invalid name")
		type.go#L2394: 			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no type")
		type.go#L2842: 	s := "[" + strconv.Itoa(count) + "]" + typ.String()

	regexp/syntax
		prog.go#L296: 		pc := strconv.Itoa(j)
		regexp.go#L119: 		b.WriteString("<invalid op" + strconv.Itoa(int(re.Op)) + ">")
		regexp.go#L214: 			b.WriteString(strconv.Itoa(re.Min))
		regexp.go#L218: 					b.WriteString(strconv.Itoa(re.Max))

	src.elv.sh/pkg/cli/mode
		lastcmd.go#L57: 		entries[i+1] = lastcmdEntry{strconv.Itoa(i), strconv.Itoa(i - len(words)), word}

	src.elv.sh/pkg/edit
		store_api.go#L39: 		ch <- vals.MakeMap("id", strconv.Itoa(cmd.Seq), "cmd", cmd.Text)

	src.elv.sh/pkg/eval
		builtin_fn_cmd_unix.go#L63: 	os.Setenv(env.SHLVL, strconv.Itoa(i-1))
		builtin_fn_cmd_unix.go#L108: 				"[pid "+strconv.Itoa(pid)+"]", ws, pid), nil}
		builtin_fn_container.go#L204: 				What: "step", Valid: "positive", Actual: strconv.Itoa(step)}
		builtin_fn_io.go#L337: 		sb.WriteString(strconv.Itoa(w))
		builtin_fn_io.go#L341: 		sb.WriteString(strconv.Itoa(p))
		builtin_ns.go#L83: 	"pid":   vars.NewReadOnly(strconv.Itoa(syscall.Getpid())),
		closure.go#L179: func (cf closureFields) RestArg() string     { return strconv.Itoa(cf.c.RestArg) }
		eval.go#L179: 			return strconv.Itoa(ev.getNumBgJobs())
		exception.go#L285: 		return quotedName + " exited with " + strconv.Itoa(ws.ExitStatus())
		exception.go#L323: func (f exitFieldsCommon) Pid() string     { return strconv.Itoa(f.e.Pid) }
		exception.go#L328: func (f exitFieldsExited) ExitStatus() string { return strconv.Itoa(f.e.ExitStatus()) }
		exception.go#L334: func (f exitFieldsSignaled) SignalNumber() string { return strconv.Itoa(int(f.e.Signal())) }
		exception.go#L341: func (f exitFieldsStopped) SignalNumber() string { return strconv.Itoa(int(f.e.StopSignal())) }

	src.elv.sh/pkg/eval/errs
		errs.go#L69: 	return strconv.Itoa(n) + " values"

	src.elv.sh/pkg/eval/mods/daemon
		daemon.go#L21: 		return string(strconv.Itoa(pid)), err

	src.elv.sh/pkg/eval/mods/str
		str.go#L122: 				ValidLow: "0", ValidHigh: strconv.Itoa(unicode.MaxRune),
		str.go#L169: 				Actual: strconv.Itoa(num)}

	src.elv.sh/pkg/eval/vals
		index_list.go#L38: 			return 0, negIndexOutOfRange(strconv.Itoa(i), n)
		index_list.go#L44: 			return 0, posIndexOutOfRange(strconv.Itoa(i), n+1)
		index_list.go#L48: 			return 0, posIndexOutOfRange(strconv.Itoa(i), n)
		index_list.go#L88: 						ValidLow: strconv.Itoa(i - n), ValidHigh: "-1",
		index_list.go#L89: 						Actual: strconv.Itoa(j0)}
		index_list.go#L93: 					ValidLow: strconv.Itoa(i), ValidHigh: strconv.Itoa(n),
		index_list.go#L94: 					Actual: strconv.Itoa(j0)}
		index_list.go#L170: 		ValidLow: "0", ValidHigh: strconv.Itoa(n - 1), Actual: index}
		index_list.go#L176: 		ValidLow: strconv.Itoa(-n), ValidHigh: "-1", Actual: index}
		repr.go#L48: 		return "(num " + strconv.Itoa(v) + ")"
		string.go#L21: 		return strconv.Itoa(v)

	src.elv.sh/pkg/fsutil
		claim.go#L57: 		name := filepath.Join(dir, prefix+strconv.Itoa(i)+suffix)

	src.elv.sh/pkg/shell
		shell.go#L83: 	os.Setenv(env.SHLVL, strconv.Itoa(i+1))

	src.elv.sh/pkg/ui
		color.go#L70: func (c ansiColor) fgSGR() string  { return strconv.Itoa(30 + int(c)) }
		color.go#L71: func (c ansiColor) bgSGR() string  { return strconv.Itoa(40 + int(c)) }
		color.go#L76: func (c ansiBrightColor) fgSGR() string  { return strconv.Itoa(90 + int(c)) }
		color.go#L77: func (c ansiBrightColor) bgSGR() string  { return strconv.Itoa(100 + int(c)) }
		color.go#L82: func (c xterm256Color) fgSGR() string  { return "38;5;" + strconv.Itoa(int(c)) }
		color.go#L83: func (c xterm256Color) bgSGR() string  { return "48;5;" + strconv.Itoa(int(c)) }
		color.go#L84: func (c xterm256Color) String() string { return "color" + strconv.Itoa(int(c)) }
		text.go#L47: 		if !fn(strconv.Itoa(i)) {