func BenchmarkEasyRune(b *testing.B) { for n := 0; n < b.N; n++ { _ = lucy.RuneWidth('a') } }
func Benchmark1(b *testing.B) { for n := 0; n < b.N; n++ { _ = lucy.RuneWidth('コ') } }