package
0.0.0-20220301134809-f78f1b81283a
Repository: https://github.com/oneleo/golang-cht.git
Documentation: pkg.go.dev
# Functions
BenchmarkFmtSprintf 使用 fmt.Sprintf 進行接續串接.
BenchmarkFmtSprintfOne 使用 fmt.Sprintf 進行單一串接.
BenchmarkStrAdd 使用 + 運算進行接續串接.
BenchmarkStrAddOne 使用 + 運算進行單一串接.
BenchmarkStrBuffer 使用 bytes.Buffer 進行接續串接.
BenchmarkStrBufferOne 使用 bytes.Buffer 進行單一串接.
BenchmarkStrJoin 使用 strings.Join 進行接續串接.
BenchmarkStrJoinOne 使用 strings.Join 進行單一串接.