mirror of
https://github.com/fumiama/gofastTEA.git
synced 2026-06-04 23:40:29 +08:00
12 lines
111 B
Go
12 lines
111 B
Go
//go:build go1.22
|
|
|
|
package tea
|
|
|
|
import (
|
|
"math/rand/v2"
|
|
)
|
|
|
|
func randuint32() uint32 {
|
|
return rand.Uint32()
|
|
}
|