func Benchmark4(b *testing.B) { for n := 0; n < b.N; n++ { _ = lucy.StringWidth(long) } }
func Benchmark3(b *testing.B) { for n := 0; n < b.N; n++ { _ = lucy.StringWidth("あいうえおあいうえおえおおおおおおおおおおおおおおおおおおおおおおおおおおおおおお") } }
func BenchmarkEasyString(b *testing.B) { for n := 0; n < b.N; n++ { _ = lucy.StringWidth("abcdefgkljjsfkjn") } }
func Benchmark2(b *testing.B) { for n := 0; n < b.N; n++ { _ = lucy.StringWidth("■㈱の世界①") } }
func rsw(r rune) int { return runewidth.StringWidth(string(r)) }