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