rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

benchmark (155B)


      1 # -*- mode: snippet -*-
      2 # name: benchmark
      3 # key: bench
      4 # contributor : @atotto
      5 # --
      6 func Benchmark$1(b *testing.B) {
      7 	for i := 0; i < b.N; i++ {
      8 		$0
      9 	}
     10 }