mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
10 lines
156 B
Plaintext
10 lines
156 B
Plaintext
# name: func BenchmarkName(b *testing.B) { for ... { ... } }
|
|
# key: bf
|
|
# --
|
|
func Benchmark${1:Name}(b *testing.B) {
|
|
$0
|
|
|
|
for n := 0; n < b.N; n++ {
|
|
|
|
}
|
|
} |