1
0
mirror of https://github.com/fumiama/gofastTEA.git synced 2026-06-04 23:40:29 +08:00
Files
gofastTEA/rand_1.22.go
2024-11-09 01:34:07 +09:00

12 lines
111 B
Go

//go:build go1.22
package tea
import (
"math/rand/v2"
)
func randuint32() uint32 {
return rand.Uint32()
}