hrtime
hrtime copied to clipboard
High resolution timing and benchmarking for Go
Results
2
hrtime issues
Sort by
recently updated
recently updated
newest added
add tool similar to `go test -bench . .` This might be necessary to make #1 workable ``` func HRBenchmarkTimeSleep(b *hrtime.Benchmark) { for b.Next() { time.Sleep(time.Second) } } ``` ```...