mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
13 lines
216 B
Go
13 lines
216 B
Go
package random
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"math/big"
|
|
|
|
"golang.org/x/exp/constraints"
|
|
)
|
|
|
|
func Int64[T constraints.Integer](max T) int64 {
|
|
rnd, _ := rand.Int(rand.Reader, big.NewInt(int64(max)))
|
|
return rnd.Int64()
|
|
}
|