Created
Some checks failed
Go / build (push) Failing after 7s

This commit is contained in:
scheibling
2025-04-08 19:16:39 +02:00
commit b4eb50ab55
63 changed files with 7333 additions and 0 deletions

17
randx/rand_test.go Normal file
View File

@@ -0,0 +1,17 @@
package randx
import (
"testing"
)
func BenchmarkNumber(b *testing.B) {
for i := 0; i < b.N; i++ {
Number(10)
}
}
func BenchmarkAny(b *testing.B) {
for i := 0; i < b.N; i++ {
Any(10)
}
}