go str 源码

  • 2022-07-15
  • 浏览 (765)

golang str 代码

文件路径:/src/cmd/vendor/golang.org/x/sys/plan9/str.go

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build plan9
// +build plan9

package plan9

func itoa(val int) string { // do it here rather than with fmt to avoid dependency
	if val < 0 {
		return "-" + itoa(-val)
	}
	var buf [32]byte // big enough for int64
	i := len(buf) - 1
	for val >= 10 {
		buf[i] = byte(val%10 + '0')
		i--
		val /= 10
	}
	buf[i] = byte(val + '0')
	return string(buf[i:])
}

相关信息

go 源码目录

相关文章

go const_plan9 源码

go dir_plan9 源码

go env_plan9 源码

go errors_plan9 源码

go pwd_go15_plan9 源码

go pwd_plan9 源码

go race 源码

go race0 源码

go syscall 源码

go syscall_plan9 源码

0  赞