Skip to content

Instantly share code, notes, and snippets.

@pthethanh
pthethanh / strings.go
Created April 14, 2023 07:15
Go string concatenation performance comparision
package main
import (
"bytes"
"strings"
"unsafe"
)
func concatStringBuilder(ss ...string) string {
length := len(ss)