This commit is contained in:
2026-03-29 17:03:48 +03:00
parent 7143e96ef3
commit 3880b353c1
20 changed files with 491 additions and 23 deletions

13
pkg/clock/clock_test.go Normal file
View File

@@ -0,0 +1,13 @@
//go:build ignore
package clock
import (
"io"
"testing"
)
func BenchmarkNumber(b *testing.B) {
for i := 0; i < b.N; i++ {
Numbers(io.Discard)
}
}